body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at left, #0f172a, #020617);
    background: radial-gradient(circle at center, #0f172a, #020617);
    color: white;
}

h1 {
    margin: 30px 0;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 900;
    font-size: 36px;
    background: linear-gradient(90deg, #38bdf8, #1892b8, #3f9df4, #38bdf8);
    background-size: 300%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: gradientMove 4s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 300%;
    }
}

.link {
    display: block;
    background: #1e293b;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: 0.2s;
    height: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 17px;
    font-weight: 600;


    
    

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    position: relative;   /* NEU */
    overflow: hidden;     /* NEU */
}

h1, .bio {
    margin: 15px;
}

.links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}


.youtube {
    border: 1px solid rgba(255, 0, 0, 0.6);
    background: #a80d0d31;
}

.discord {
    border: 1px solid rgba(130, 41, 202, 0.6);
    background: rgba(198, 88, 242, 0.137);
}

.twitch {
    border: 1px solid rgba(145, 70, 255, 0.6);
    background:  rgba(144, 70, 255, 0.123);
}

.tiktok {
    border: 1px solid rgba(44, 170, 254, 0.6);
    background: rgba(44, 170, 254, 0.144);
}


.icon {
    width: 20px;
    height: 20px;
}

.link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%; /* startet links außerhalb */

    width: 50%;
    height: 100%;

    background: linear-gradient(
        100deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );

    transition: 0.5s;
}

/* Hover Effekt */
.link:hover::before {
    left: 100%; /* bewegt sich nach rechts */
}
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at left, #0f172a, #020617);
    background: radial-gradient(circle at center, #0f172a, #020617);
    color: white;
}


/* Zentrierung */
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Card */
.card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    padding-top: 40px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 25px;
    width: 500px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.5s;
}

/* Profilbild */
.profile {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #38bdf8;
    object-fit: cover;
    transition: 0.2s;
}

/* Gradient Name */
h1 {
    font-weight: 900;
    margin: 15px 0;

    background: linear-gradient(90deg, #38bdf8, #5596f7, #3681e4, #38bdf8);
    background-size: 300%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: move 4s linear infinite;
}

@keyframes move {
    0% { background-position: 0%; }
    100% { background-position: 300%; }
}

/* Beschreibung */
.bio {
    color: #94a3b8;
    font-weight: 900;
    margin: 30px 0;
    font-size: 17px;
}

.youtube:hover {
    transform: scale(1.05);
    background: rgba(255, 0, 0, 0.301);
}

.twitch:hover {
    transform: scale(1.05);
    background: rgba(144, 70, 255, 0.397);
}

.discord:hover {
    transform: scale(1.05);
    background: rgba(183, 37, 202, 0.37);
}

.tiktok:hover {
    transform: scale(1.05);
    background: rgba(44, 170, 254, 0.336);
}


.profile:hover {transform:   scale(1.05)}

.wim {
    font-weight: 600;
    transform: top;

}

.footer {
    position: fixed;
    bottom: 10px;   /* Abstand vom Rand */
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
}






