/* ======================================= */
/* ESTILOS GLOBALES Y CONFIGURACIÓN BASE */
/* ======================================= */
body {
    background-color: #3b3b3b; /* Tu color de fondo */
    color: #fff;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Configuración para centrado vertical: */
    min-height: 100vh;
    display: flex;
    flex-direction: column; 
}

/* Clave para ocultar la vista inactiva */
.hidden {
    display: none !important;
}

/* Contenedor principal para el centrado del contenido de las pestañas */
#main-content {
    flex-grow: 1; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
}

/* Estilo para las secciones de contenido */
.content-section {
    max-width: 600px; /* Limita el ancho del contenido */
    width: 100%;
}

.main-header {
    /* ... otros estilos ... */
    position: fixed; /* O position: sticky; */
    top: 0;
    width: 100%;
    /* ... otros estilos ... */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* LOGO EN CABECERA (64x64) */
.logo-link { text-decoration: none; display: inline-block; }
.menu-toggle { width: 64px; height: 64px; background: none; border: none; padding: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.menu-logo-pixelart { 
    width: 64px; height: auto; 
    image-rendering: pixelated; 
    image-rendering: crisp-edges;
    display: block;
}

/* ENLACES DE NAVEGACIÓN (Pestañas) */
.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    font-weight: 700;
}
.nav-menu li {
    margin-left: 25px;
    cursor: pointer;
}
.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding-bottom: 5px;
    transition: color 0.3s;
}

/* ESTILO ACTIVO (Línea amarilla/dorada) */
.nav-menu .active a {
    border-bottom: 3px solid #ffcc00; 
}
.nav-menu a:hover {
    color: #ffcc00; 
}


/* ======================================= */
/* 2. ESTILOS DE LA SECCIÓN "PRÓXIMAMENTE" (INICIO) */
/* ======================================= */
.coming-soon-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* LOGO PIXEL ART GRANDE (400px) */
.large-pixel-logo {
    width: 400px; /* Tu tamaño */
    height: auto;
    margin-bottom: 40px;
    image-rendering: pixelated; 
    image-rendering: crisp-edges;
}

.coming-soon-text {
    font-size: 3em;
    font-weight: 700;
    margin: 0 0 30px 0;
    color: #fff;
}

/* ICONOS DE REDES SOCIALES (GRANDES - 62px) */
.social-links {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    margin-top: 20px;
    max-width: 450px; 
}

.social-links a {
    margin: 10px 15px; 
    display: block;
    transition: transform 0.2s;
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links img {
    width: 62px; /* Tu tamaño */
    height: 62px; /* Tu tamaño */
}


/* ======================================= */
/* 3. ESTILOS DE LA SECCIÓN LINKS (Linktree) */
/* ======================================= */
.profile-section {
    text-align: center;
}
.profile-avatar {
    width: 400px; 
    height: auto;
    border-radius: 50%;
    margin-bottom: -35px;
}
.profile-name { font-size: 2.5em; margin: 10px 0 5px 0; }
.profile-description {
    font-size: 1em; 
    color: #ccc; 
    /* REDUCE ESTE VALOR: 10px acercará el texto a los videos. */
    margin-bottom: -5px; 
}
.link-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}
.link-button {
    text-decoration: none;
    background-color: #555;
    color: #fff;
    /* AUMENTAMOS EL PADDING PARA HACER EL BOTÓN MÁS GRANDE */
    /* El primer valor (20px) es arriba/abajo. El segundo (40px) es izquierda/derecha. */
    padding: 20px 40px; 
    border-radius: 8px;
    border: 1px solid #777;
    font-weight: 700;
    transition: background-color 0.2s, transform 0.2s;
    display: block;
    font-size: 1.1em; /* Opcional: Aumenta un poco el tamaño de la letra */
}
.link-button:hover {
    background-color: #777;
    transform: translateY(-2px);
}
/* ======================================= */
/* 4. ESTILOS PARA LA CUADRÍCULA DE VIDEOS */
/* ======================================= */

/* Contenedor principal para YouTube y Twitch */
.video-grid-container {
    display: flex;
    gap: 20px; /* Espacio entre las dos columnas */
    width: 100%;
    margin-top: 20px;
    margin-bottom: 30px;
}

/* Columna individual (YouTube o Twitch) */
.video-column {
    flex: 1; /* Hace que ambas columnas ocupen el mismo ancho */
    min-width: 0; 
    text-align: center;
}

/* Título pequeño sobre el video */
.video-label {
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.embed-box {
    position: relative;
    /* REESTABLECEMOS EL VALOR ESTÁNDAR 16:9 (Rectangular) */
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 8px; 
}

/* Esto asegura que el contenido pueda expandirse más en el centro de la pantalla */
.content-section {
    max-width: 1000px; /* Aumentamos el ancho máximo a 1000px */
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Y asegurémonos de que el contenedor de los links no tenga un ancho estricto si lo tiene */
.profile-section {
    text-align: center;
    /* REDUCE ESTE VALOR: 10px lo subirá mucho. */
    margin-top: 10px; 
}
.embed-box iframe {
    position: absolute;
    width: 102%;  /* Ligeramente más grande */
    height: 102%; 
    top: -1%;     /* Centrar */
    left: -1%;    
    display: block; 
}

/* MEDIA QUERY: En pantallas pequeñas (Máximo 768px de ancho) */
@media (max-width: 768px) {
    /* ESTILOS DE CENTRADO Y ALTURA (QUE YA HABÍAMOS HECHO): */
    .video-grid-container {
        flex-direction: column; 
        gap: 30px; 
        align-items: center; 
    }
    .video-column {
        width: 95%;
        max-width: 400px;
    }

    /* ************************************************* */
    /* COMPENSACIÓN DEL ENCABEZADO FIJO (SOLUCIÓN AL LOGO PEGADO) */
    /* ************************************************* */
    .content-section {
        /* BAJA EL CONTENIDO para que no se oculte detrás del encabezado fijo */
        padding-top: 80px; 
        padding-left: 10px; 
        padding-right: 10px; 
        width: 100%; 
        box-sizing: border-box;
    }
    
    /* Le damos espacio al avatar para que se vea bien */
    .profile-avatar {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}