/* Schriftart direkt via Google Fonts laden */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg-color: #212638;
    --text-color: #ffffff;
    --button-radius: 50px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 30px 15px;
}

.title {
    text-align: center;
    margin-bottom: 40px;
}

.name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
}

img, .img {
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;

    transition: transform 0.1s;
}

img:active {
    transform: scale(0.9);
}

h1 {
    font-size: 50px;
    line-height: 1.1;
}

.halfname {
    display: none;
}

h2 {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 5px;
}

#nyaa {
    position: absolute;
    top: -25px;
    color: #ffb6c1;
    font-weight: bold;
    display: none; 
}


.outerBox {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

a {
    display: block;
    width: 100%;
    padding: 18px 0;
    font-size: 20px;
    font-weight: bold;
    color: var(--text-color);
    text-decoration: none;
    text-align: center;
    border: 2px solid transparent;
    border-radius: var(--button-radius);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
}

a:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}


.discord { background-color: #5865F2; }
.git     { background-color: #24292e; }
.mal     { background-color: #2e51a2; }
.arw     { background-color: #0f172a; }
.twitter { background-color: #1DA1F2; }
.twitch  { background-color: #9146FF; }
.yt      { background-color: #FF0000; }


#copy {
    display: none; 
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 100;
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 40px;
    }
    .halfname {
        display: block;
    }
    .fullname {
        display: none;
    }
}