body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1450a3, #191d88, #ffc436);
    background-size: 400% 400%;
    animation: gradientBackground 15s ease infinite;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

@keyframes gradientBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    text-align: center;
    width: 90%;
    max-width: 400px;
    background-color: #191d88;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.profile-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffc436;
}

.links {
    margin-top: 20px;
}

.link {
    display: block;
    margin: 10px 0;
    text-decoration: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.link.youtube {
    background-color: #FF0000;
    color: white;
}

.link.twitch {
    background-color: #9146FF;
    color: white;
}

.link.instagram {
    background: linear-gradient(45deg, #FFC837, #FF1E56);
    color: white;
}

.link.tiktok {
    background-color: #000000;
    color: #25F4EE;
}
.link.twitter {
    background-color: #1DA1F2;
    color: white;
}
.link.coffee {
    background-color: #FFDD00;
    color: #6f4e37;
}

.link:hover {
    opacity: 0.8;
}

.counter {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ffc436;
}
