body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Arial, sans-serif;
    overflow: hidden;
    background: radial-gradient(circle at 50% 40%, #ffb6d5 0%, #ff5fa2 100%);
}

#stars {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background: transparent;
}
main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-bottom: 32px;
    box-shadow: 0 0 40px 10px #fff3;
    background: #222;
    object-fit: cover;
}
.avatar:hover {
    box-shadow: 0 0 60px 20px #fff6;
    transform: scale(0.9);
    transition: transform 0.3s, box-shadow 0.3s;
}
.links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 340px;
    max-width: 90vw;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 18px 0;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 2px 8px #0005;
    transition: transform 0.1s, box-shadow 0.1s;
}
.btn i {
    margin-right: 12px;
    font-size: 1.5em;
}
.twitch { background: #9147ff; }
.instagram { background: linear-gradient(90deg,#fd1d1d,#833ab4); }
.discord { background: #5865f2; }
.historia { background: #ff5fa2; }
.btn:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 16px #0007;
}
footer {
    position: fixed;
    bottom: 10px;
    width: 100vw;
    text-align: center;
    color: #ff5fa2;
    z-index: 2;
    font-size: 1rem;
    text-shadow: 0 1px 4px #000;
}

footer p {
    animation: soft-glow 2.5s ease-in-out infinite alternate;
    text-shadow:
        0 0 6px rgb(255, 0, 0),
        0 1px 4px #000;
}

@keyframes soft-glow {
    from {
        text-shadow:
            0 0 6px rgba(255, 0, 0, 0.861),
            0 1px 4px #000;
    }
    to {
        text-shadow:
            0 0 14px rgb(255, 0, 0),
            0 1px 4px #000;
    }
}