:root {
    --bg: #0C1A2E;
    --metric: #00E493;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --text-muted: rgba(255, 255, 255, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    background-image: radial-gradient(circle at 50% 0%, #142b4d 0%, var(--bg) 70%);
    color: white;
    font-family: 'Inter', sans-serif;
    /* CAMBIO: Usamos min-height en lugar de height fijo para permitir scroll en móviles pequeños */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* CAMBIO: Padding pequeño en el body para que el contenedor no toque los bordes en móvil */
    padding: 20px;
}

/* Canvas for background animation */
#canvas-bg {
    position: fixed;
    /* CAMBIO: Fixed para que cubra todo aunque hagas scroll */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
    /* Para que no interfiera con el touch */
}

/* Main Container */
.container {
    position: relative;
    z-index: 10;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    padding: 3.5rem 3rem;
    border-radius: 24px;
    max-width: 650px;
    width: 100%;
    /* Ocupa el ancho disponible hasta el max-width */
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: floatUp 1s ease-out;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo / Brand Container */
.brand-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    /* Permite que baje si la pantalla es minúscula */
}

.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 228, 147, 0.3));
}

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    color: white;
    white-space: nowrap;
    /* Evita que el texto se parta */
}

.brand-text span {
    color: var(--metric);
    text-shadow: 0 0 15px rgba(0, 228, 147, 0.4);
}

/* Typography */
h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p.lead {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* SOCIAL MEDIA SECTION */
.social-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: white;
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    /* Crucial para móviles: si no caben, bajan de línea */
    margin-bottom: 1.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
    /* Evita que los iconos se aplasten */
}

.social-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Hover Effects */
.social-btn:hover {
    background: var(--metric);
    color: #0C1A2E;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 228, 147, 0.4);
    border-color: var(--metric);
}

.handle {
    font-family: 'JetBrains Mono', monospace;
    color: var(--metric);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.9;
    word-break: break-all;
    /* Evita desbordamiento si el nombre es muy largo */
}

/* Footer */
.footer {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

/* --- OPTIMIZACIÓN MÓVIL --- */
@media (max-width: 600px) {

    /* Reducimos el padding para aprovechar el espacio */
    .container {
        padding: 2.5rem 1.5rem;
    }

    /* Ajustamos tamaños de fuente para que no ocupen toda la pantalla */
    .brand-text {
        font-size: 1.5rem;
    }

    .brand-logo {
        height: 40px;
    }

    h1 {
        font-size: 1.8rem;
        /* Título más pequeño */
        margin-bottom: 1rem;
    }

    p.lead {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Ajuste de iconos para pantallas estrechas */
    .social-links {
        gap: 12px;
    }

    .social-btn {
        width: 45px;
        height: 45px;
    }

    .social-btn svg {
        width: 20px;
        height: 20px;
    }

    .handle {
        font-size: 1rem;
    }
}

/* Pantallas muy pequeñas (iPhone SE, antiguos) */
@media (max-width: 360px) {
    .social-links {
        gap: 8px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
    }
}