.hero {
    position: relative;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    
    background-size: cover;
    background-position: center 25%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
            rgba(8, 34, 18, .92) 0%,
            rgba(12, 50, 26, .85) 45%,
            rgba(12, 50, 26, .55) 70%,
            rgba(8, 24, 14, .28) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 70px 0 60px;
}

.hero-eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 14px;
}

.hero-h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -.025em;
}

.hero-h1 em { font-style: normal; color: #ffeb3b; }

.hero-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .85);
    max-width: 600px;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ffeb3b;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .2s;
    margin-bottom: 28px;
}

.back-link:hover { color: #fff; }
.back-link svg { transition: transform .2s; }
.back-link:hover svg { transform: translateX(-3px); }

.support-link { color: #fff; font-weight: bold; text-decoration: underline; }

/* ── ESTILOS DEL TEMPORIZADOR ── */
.countdown-container {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.countdown-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 235, 59, 0.3);
    border-radius: 8px;
    padding: 15px;
    min-width: 80px;
    text-align: center;
    backdrop-filter: blur(4px);
}

.countdown-time {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffeb3b;
    line-height: 1;
    font-family: monospace;
}

.countdown-label {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}