* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.container {
    width: 100%;
    max-width: 420px;
    padding: 30px;
    text-align: center;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ffffff22;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
}

h1 {
    font-size: 24px;
    margin-bottom: 8px;
}

p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 25px;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    background: #ffffff;
    color: #000;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.youtube {
    background: #ff0000;
    color: #fff;
}

.twitch {
    background: #9146ff;
    color: #fff;
}

.tiktok {
    background: #0f0f0f;
    color: #fff;
}

footer {
    margin-top: 25px;
    font-size: 12px;
    opacity: 0.6;
}