@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

:root {
    --andro-gold: #e5c05b;
    --andro-gold-dark: #634d1a;
    --andro-blue: #1e90ff;
    --andro-blue-dark: #0a2e52;
    --andro-bg-dark: #050505;
}

/* --- RESET Y BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--andro-bg-dark);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

/* --- VIDEO DE FONDO Y HERO SECTION --- */
.andro-hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Pantalla completa */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.andro-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.andro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: -1;
}

/* Contenido Central (Textos y Logo) */
.andro-content {
    text-align: center;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    margin-top: 60px; /* Espacio para el Navbar */
}

.andro-logo-main {
    max-width: 50%;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(0, 120, 255, 0.4));
    margin-bottom: 2rem;
}

.andro-title-highlight {
    width: 100%;
    font-family: "Vollkorn";
    font-weight: 600;
    color: #ff9d00;
    font-size: 40px;
    line-height: 40px;
    text-transform: uppercase;
    text-align: center;
}

.andro-desc-text {
    font-size: 1.1rem;
    color: #cbd5e0;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* --- NAVBAR (Tu código original) --- */
.nav-andro {
    background: linear-gradient(to bottom, #000 0%, rgba(17, 17, 17, 0.9) 100%) !important;
    border-bottom: 2px solid var(--andro-gold) !important;
    font-family: 'Cinzel', serif;
    position: fixed; /* Para que se vea sobre el video */
    width: 100%;
    top: 0;
    z-index: 1000;
}

.text-andro-gold { 
    color: var(--andro-gold) !important;
    text-shadow: 0 0 15px rgba(229, 192, 91, 0.5);
    letter-spacing: 2px;
}

.andro-link {
    color: #cbd5e0 !important;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s;
    padding: 0.5rem 1rem !important;
}

.andro-link:hover {
    color: var(--andro-gold) !important;
    transform: scale(1.05);
}

.andro-logo-main {
    max-width: 80%;
    height: auto;
    /* Esto hará que tu logo PNG brille suavemente */
    filter: drop-shadow(0 0 15px rgba(161, 208, 255, 0.6)) brightness(1.0);
    transition: transform 0.5s ease;
}

.andro-logo-main:hover {
    transform: scale(1.02); /* Pequeña reacción al pasar el mouse */
}

/* --- BOTONES (Tu código original + Aumento de tamaño) --- */
.btn-andro-gold, .btn-andro-blue {
    font-family: 'Cinzel', serif;
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.1) !important;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
    position: relative;
    overflow: hidden;
    padding: 8px 20px !important;
    transition: all 0.3s ease; /* Transición para el hover */
}

.btn-andro-gold {
    background: linear-gradient(135deg, var(--andro-gold-dark), var(--andro-gold)) !important;
    color: #000 !important;
}

.btn-andro-blue {
    background: linear-gradient(135deg, var(--andro-blue-dark), var(--andro-blue)) !important;
    color: #fff !important;
}

/* Animación de brillo */
.btn-andro-gold::after, .btn-andro-blue::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    animation: androShine 4s infinite;
}

@keyframes androShine {
    0% { left: -60%; }
    20% { left: 120%; }
    100% { left: 120%; }
}

/* Hover: Se agrandan y brillan */
.btn-andro-gold:hover, .btn-andro-blue:hover {
    filter: brightness(1.3);
    box-shadow: 0 0 15px var(--andro-gold-dark);
    transform: scale(1.1); /* Efecto de agrandar */
}

/* --- SECCIÓN DE SCROLL --- */
.andro-scroll-content {
    background-color: var(--andro-bg-dark);
    padding: 80px 20px;
    border-top: 2px solid var(--andro-gold);
    min-height: 100vh;
}



/* REGLOJ ----  Contenedor principal */
.andro-countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    font-family: 'Cinzel', serif; /* Usamos la fuente de L2 */
}

/* Los cuadros con transparencia */
.andro-timer-box {
    background: rgba(20, 20, 20, 0.7); /* Fondo oscuro transparente */
    backdrop-filter: blur(1px); /* Efecto de desenfoque de fondo */
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    width: 100px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
}

/* Los números grandes */
.andro-time-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

/* Las etiquetas (Días, Horas, etc.) */
.andro-time-label {
    font-size: 0.7rem;
    color: #a0a0a0;
    letter-spacing: 2px;
    font-weight: 400;
}

/* Responsivo para celulares */
@media (max-width: 480px) {
    .andro-timer-box {
        width: 75px;
        height: 85px;
    }
    .andro-time-num {
        font-size: 1.5rem;
    }
    .andro-time-label {
        font-size: 0.55rem;
    }
}