/* --- RESET Y BLOQUEO DE SCROLL --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    width: 100%;
    height: 100vh;
    overflow: hidden; /* Cero Scroll */
    font-family: 'Oswald', sans-serif;
    background: #000 url('../images/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.95) 100%);
    z-index: 1;
}

#main-viewport {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px;
}

/* --- TÍTULOS --- */
h1 {
    font-size: clamp(1.8rem, 6vw, 3.5rem);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}
.yellow { color: #ff9c00; font-weight: 300; text-shadow: 0 0 15px rgba(255,156,0,0.4); }
.subtitle { letter-spacing: 5px; text-transform: uppercase; opacity: 0.7; font-size: 0.9rem; margin-top: 10px; }

/* --- MARCO ORNAMENTAL (EL ARTE) --- */
.frame-outer {
    position: relative;
    padding: 15px;
    border: 1px solid rgba(255, 156, 0, 0.3);
    max-width: 95%;
}

.frame-inner {
    position: relative;
    padding: 40px 60px;
    border: 1px solid rgba(255, 156, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Esquinas Reforzadas */
.frame-outer::before, .frame-outer::after,
.frame-inner::before, .frame-inner::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border: 4px solid #ff9c00;
    z-index: 5;
}

.frame-outer::before { top: -6px; left: -6px; border-right: none; border-bottom: none; }
.frame-outer::after { top: -6px; right: -6px; border-left: none; border-bottom: none; }
.frame-inner::before { bottom: -6px; left: -6px; border-right: none; border-top: none; }
.frame-inner::after { bottom: -6px; right: -6px; border-left: none; border-top: none; }

/* Rombos Decorativos */
.diamond {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ff9c00;
    transform: rotate(45deg);
    left: calc(50% - 6px);
    box-shadow: 0 0 10px #ff9c00;
}
.diamond.top { top: -7px; }
.diamond.bottom { bottom: -7px; }

/* --- NÚMEROS IMPACTANTES --- */
#countdown { display: flex; gap: clamp(15px, 4vw, 50px); }

.box { display: flex; flex-direction: column; align-items: center; }

.box span {
    font-size: clamp(3rem, 14vw, 9rem);
    font-weight: 700;
    line-height: 0.85;
    text-shadow: 0 0 30px rgba(255,255,255,0.2);
}

.box small {
    color: #ff9c00;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 1vw, 5px);
    font-size: clamp(0.7rem, 2vw, 1.4rem);
    margin-top: 15px;
    font-weight: 300;
}

/* --- FOOTER --- */
.footer a { color: #fff; text-decoration: none; border-bottom: 1px solid #ff9c00; padding-bottom: 2px; }

/* AJUSTE MÓVIL */
@media (max-width: 600px) {
    .frame-inner { padding: 30px 15px; }
    .frame-outer::before, .frame-outer::after, .frame-inner::before, .frame-inner::after {
        width: 20px; height: 20px; border-width: 2px;
    }
}