/* =============================================
   LANDING PAGE - FUTMANIA
   ============================================= */

/* ── RESET & BASE ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --g: #0A0E18;
    --g2: #0F1525;
    --g3: #16202E;
    --border: #1E2D42;
    --lime: #C8F000;
    --lime-dim: #8AAA00;
    --white: #F0F4FF;
    --muted: #5A6A85;
    --mid: #8899BB;
    --green: #4ade80;
    --yellow: #fbbf24;
    --red: #f87171;
    --blue: #60a5fa;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Barlow', sans-serif;
    background: var(--g);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--g2); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* ── LOADER ── */
#loader {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--g);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity .5s ease;
}
#loader.done { opacity: 0; pointer-events: none; }
.loader-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 6px;
    color: var(--white);
}
.loader-bar {
    width: 120px;
    height: 2px;
    background: var(--border);
    border-radius: 100px;
    overflow: hidden;
}
.loader-fill {
    height: 100%;
    background: var(--lime);
    animation: load 1.4s ease forwards;
}
@keyframes load { from { width: 0; } to { width: 100%; } }

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 60px;
    background: rgba(10, 14, 24, .85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-dot {
    width: 8px;
    height: 8px;
    background: var(--lime);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav-links a {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}
.nav-links a:hover { color: var(--lime); }
.nav-links a.cta-link {
    color: var(--lime);
    font-weight: 500;
    padding: 6px 16px;
    border: 1px solid var(--lime-dim);
    border-radius: 100px;
}
.nav-links a.cta-link:hover {
    background: rgba(200, 240, 0, 0.1);
    border-color: var(--lime);
}

@media (max-width: 600px) {
    nav { padding: 0 16px; }
    .nav-links { display: none; }
}

/* ── HERO ── */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 40px 64px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(200, 240, 0, .07) 0%, transparent 60%),
                radial-gradient(ellipse 80% 60% at 20% 80%, rgba(59, 130, 246, .06) 0%, transparent 60%);
}
.hero-pitch {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 560px;
    opacity: .04;
    pointer-events: none;
}
.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 20px;
    animation: fadeUp .6s ease both;
}
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(70px, 11vw, 136px);
    line-height: .88;
    letter-spacing: 2px;
    color: var(--white);
    animation: fadeUp .6s .08s ease both;
}
.hero-title em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1px rgba(200, 240, 0, .55);
}
.hero-desc {
    max-width: 480px;
    font-size: 15px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.7;
    margin-top: 24px;
    animation: fadeUp .6s .16s ease both;
    min-height: 22px;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    animation: fadeUp .6s .24s ease both;
    flex-wrap: wrap;
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
.hero-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    line-height: 1;
    color: var(--white);
}
.hero-stat-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}
.hero-sep {
    width: 1px;
    background: var(--border);
}
.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    animation: fadeUp .6s .32s ease both;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all .2s;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: var(--lime);
    color: var(--g);
}
.btn-primary:hover { background: #d8ff00; transform: translateY(-1px); }
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background: var(--g2);
    border-color: var(--muted);
}
.btn-disabled {
    background: var(--g3);
    color: var(--muted);
    cursor: not-allowed;
    pointer-events: none;
}
.btn-sm { padding: 8px 16px; font-size: 13px; }

.inscripcion-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    animation: fadeUp .6s .28s ease both;
}
.inscripcion-badge.abierta {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--green);
}
.inscripcion-badge.cerrada {
    background: rgba(248, 113, 113, 0.15);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: var(--red);
}
.inscripcion-badge.proximamente {
    background: rgba(234, 179, 8, 0.15);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: var(--yellow);
}
.inscripcion-badge.sin {
    background: rgba(107, 122, 153, 0.15);
    border: 1px solid rgba(107, 122, 153, 0.3);
    color: var(--muted);
}
.inscripcion-badge .cupo {
    background: rgba(255, 255, 255, 0.1);
    padding: 1px 10px;
    border-radius: 100px;
    font-size: 11px;
    margin-left: 6px;
}

@media (max-width: 600px) {
    .hero { padding: 0 16px 48px; }
    .hero-stats { gap: 20px; }
    .hero-stat-num { font-size: 36px; }
    .hero-actions { flex-direction: column; }
    .btn { justify-content: center; }
}

/* ── SECTION COMMON ── */
section { position: relative; z-index: 1; }
.inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.sec-hd {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 16px;
}
.sec-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 8px;
}
.sec-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    letter-spacing: 2px;
    color: var(--white);
}
.sec-link {
    font-size: 13px;
    color: var(--lime);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity .2s;
}
.sec-link:hover { opacity: .7; }
.sec-link svg { width: 14px; height: 14px; }

@media (max-width: 600px) {
    .inner { padding: 0 16px; }
    .sec-hd { flex-direction: column; align-items: flex-start; }
    .sec-title { font-size: 28px; }
}

/* ── TORNEOS GRID ── */
.torneos-section { padding: 80px 0 40px; }
.torneo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.torneo-card {
    background: var(--g2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color .2s, transform .2s;
    animation: fadeUp .5s ease both;
    display: flex;
    flex-direction: column;
}
.torneo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
}
.torneo-card.abierta::before { background: linear-gradient(90deg, transparent, var(--green), transparent); }
.torneo-card.proximamente::before { background: linear-gradient(90deg, transparent, var(--yellow), transparent); }
.torneo-card.cerrada::before { background: linear-gradient(90deg, transparent, var(--red), transparent); }
.torneo-card.sin::before { background: linear-gradient(90deg, transparent, var(--muted), transparent); }

.torneo-card:hover {
    border-color: var(--lime-dim);
    transform: translateY(-2px);
}
.torneo-card .t-arrow {
    opacity: 0;
    transition: opacity .2s, transform .2s;
    transform: translateX(-4px);
}
.torneo-card:hover .t-arrow { opacity: 1; transform: translateX(0); }

.t-edition {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}
.t-edition.on {
    background: rgba(200, 240, 0, .1);
    border: 1px solid rgba(200, 240, 0, .2);
    color: var(--lime);
}
.t-edition.off {
    background: rgba(248, 113, 113, .1);
    border: 1px solid rgba(248, 113, 113, .2);
    color: var(--red);
}

.t-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 4px;
}
.t-ente {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 12px;
}
.t-desc {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.6;
    flex: 1;
}
.t-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 8px;
}
.t-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 100px;
}
.t-status.abierta { background: rgba(34, 197, 94, .1); color: var(--green); }
.t-status.proximamente { background: rgba(234, 179, 8, .1); color: var(--yellow); }
.t-status.cerrada { background: rgba(248, 113, 113, .1); color: var(--red); }
.t-status.sin { background: rgba(107, 122, 153, .1); color: var(--muted); }

.t-status .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}
.t-status.abierta .dot { background: var(--green); }
.t-status.proximamente .dot { background: var(--yellow); }
.t-status.cerrada .dot { background: var(--red); }
.t-status.sin .dot { background: var(--muted); }

.t-cupo {
    font-size: 11px;
    color: var(--muted);
}
.t-cupo strong { color: var(--white); }

.t-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}
.t-actions .btn { width: 100%; justify-content: center; }

/* ── CLASIFICACIONES ── */
.clasificacion-section { padding: 40px 0; }
.clasificacion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.clasificacion-card {
    background: var(--g2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    animation: fadeUp .5s ease both;
}
.clasificacion-card .c-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 16px;
}
.clasificacion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}
.clasificacion-item:last-child { border-bottom: none; }
.clasificacion-item .pos {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    width: 28px;
    text-align: center;
}
.clasificacion-item .pos.oro { color: #D4A843; }
.clasificacion-item .pos.plata { color: #9CA3AF; }
.clasificacion-item .pos.bronce { color: #92613A; }

.clasificacion-item .equipo {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}
.clasificacion-item .pts {
    font-size: 14px;
    font-weight: bold;
    color: var(--lime);
}

/* ── NOTICIAS ── */
.noticias-section { padding: 40px 0 60px; }
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.news-card {
    background: var(--g2);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .2s, transform .2s;
    animation: fadeUp .5s ease both;
    cursor: pointer;
}
.news-card:hover {
    border-color: var(--lime-dim);
    transform: translateY(-2px);
}
.news-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    background: var(--g3);
}
.news-ph {
    width: 100%;
    height: 160px;
    background: var(--g3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-ph svg { width: 32px; height: 32px; color: var(--border); }
.news-body { padding: 18px 22px 20px; }
.news-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1.1;
}
.news-hint {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--lime);
    margin-top: 8px;
    opacity: .7;
}
@media (max-width: 700px) { .news-grid { grid-template-columns: 1fr; } }

/* ── PARTIDOS ── */
.partidos-section { padding: 40px 0 80px; }
.partido-card {
    background: var(--g2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 24px;
    margin-bottom: 12px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    animation: fadeUp .4s ease both;
    transition: border-color .15s;
}
.partido-card:hover { border-color: #2a3d57; }
.p-equipo { display: flex; align-items: center; gap: 12px; }
.p-equipo.visit { flex-direction: row-reverse; text-align: right; }
.p-eq-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
}
.p-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    min-width: 100px;
}
.p-marcador { display: flex; align-items: center; gap: 8px; }
.p-gol {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    line-height: 1;
    color: var(--white);
}
.p-sep {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--border);
}
.p-vs {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: var(--muted);
}
.p-estado {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid;
}
.p-final { background: rgba(34, 197, 94, .08); border-color: rgba(34, 197, 94, .2); color: var(--green); }
.p-pendiente { background: rgba(234, 179, 8, .08); border-color: rgba(234, 179, 8, .2); color: var(--yellow); }
.p-curso { background: rgba(59, 130, 246, .08); border-color: rgba(59, 130, 246, .2); color: var(--blue); }
.p-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--muted);
    flex-wrap: wrap;
    justify-content: center;
}
.p-meta svg { width: 11px; height: 11px; flex-shrink: 0; }

@media (max-width: 600px) {
    .partido-card {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px;
    }
    .p-equipo.visit { flex-direction: row; text-align: left; }
    .p-center { flex-direction: row; min-width: unset; }
    .p-gol { font-size: 24px; }
}

/* ── EMPTY ── */
.empty-box {
    text-align: center;
    padding: 40px 0;
    border: 1px dashed var(--border);
    border-radius: 16px;
}
.empty-icon { width: 48px; height: 48px; margin: 0 auto 16px; color: var(--border); }
.empty-text { font-size: 14px; color: var(--muted); }

/* ── NOTICIA MODAL ── */
.nmod-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(4, 8, 18, .88);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.nmod-overlay.open { display: flex; }
.nmod-box {
    background: var(--g2);
    border: 1px solid var(--border);
    border-radius: 20px;
    width: 100%;
    max-width: 620px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeUp .25s ease both;
}
.nmod-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, transparent, var(--lime), transparent);
}
.nmod-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    display: block;
    background: var(--g3);
    flex-shrink: 0;
}
.nmod-img-ph {
    width: 100%;
    height: 200px;
    background: var(--g3);
    border-radius: 18px 18px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nmod-img-ph svg { width: 36px; height: 36px; color: var(--border); }
.nmod-body {
    overflow-y: auto;
    padding: 24px 28px 28px;
    flex: 1;
}
.nmod-body::-webkit-scrollbar { width: 4px; }
.nmod-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.nmod-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    background: var(--g3);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background .15s;
}
.nmod-close:hover { background: #1f2d45; }
.nmod-close svg { width: 14px; height: 14px; color: var(--muted); }
.nmod-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.nmod-autor {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--lime);
}
.nmod-fecha { font-size: 11px; color: var(--muted); }
.nmod-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 16px;
}
.nmod-text {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.7;
}
.nmod-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.nmod-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--muted);
}
.nmod-stat svg { width: 14px; height: 14px; }

/* ── FOOTER ── */
footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.ft-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    color: var(--white);
}
.ft-text { font-size: 12px; color: var(--muted); }
@media (max-width: 600px) {
    footer { flex-direction: column; text-align: center; padding: 16px; }
}

/* ── SKELETON ── */
.sk {
    background: linear-gradient(90deg, var(--g2) 25%, var(--g3) 50%, var(--g2) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: 8px;
}
@keyframes shimmer {
    from { background-position: 200% 0; }
    to { background-position: -200% 0; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── HERO ── */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 80px 32px 64px;  /* ✅ Ajustado padding superior */
    overflow: hidden;
    max-width: 1100px;         /* ✅ Mismo ancho que las secciones */
    margin: 0 auto;            /* ✅ Centrado */
    width: 100%;
}

.hero-inner {
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 40%, rgba(200, 240, 0, .07) 0%, transparent 60%),
                radial-gradient(ellipse 80% 60% at 20% 80%, rgba(59, 130, 246, .06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-pitch {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 560px;
    opacity: .04;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 20px;
    animation: fadeUp .6s ease both;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(70px, 11vw, 136px);
    line-height: .88;
    letter-spacing: 2px;
    color: var(--white);
    animation: fadeUp .6s .08s ease both;
}

.hero-title em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1px rgba(200, 240, 0, .55);
}

.hero-desc {
    max-width: 480px;
    font-size: 15px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.7;
    margin-top: 24px;
    animation: fadeUp .6s .16s ease both;
    min-height: 22px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    animation: fadeUp .6s .24s ease both;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    line-height: 1;
    color: var(--white);
}

.hero-stat-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

.hero-sep {
    width: 1px;
    background: var(--border);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    animation: fadeUp .6s .32s ease both;
    flex-wrap: wrap;
}

/* Badge de inscripciones en el hero */
.inscripcion-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    animation: fadeUp .6s .28s ease both;
}

.inscripcion-badge.abierta {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--green);
}

.inscripcion-badge.cerrada {
    background: rgba(248, 113, 113, 0.15);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: var(--red);
}

.inscripcion-badge.proximamente {
    background: rgba(234, 179, 8, 0.15);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: var(--yellow);
}

.inscripcion-badge.sin {
    background: rgba(107, 122, 153, 0.15);
    border: 1px solid rgba(107, 122, 153, 0.3);
    color: var(--muted);
}

.inscripcion-badge .cupo {
    background: rgba(255, 255, 255, 0.1);
    padding: 1px 10px;
    border-radius: 100px;
    font-size: 11px;
    margin-left: 6px;
}

.hero-inscripciones {
    margin-top: 4px;
    animation: fadeUp .6s .28s ease both;
}

/* Responsive */
@media (max-width: 600px) {
    .hero {
        padding: 80px 16px 48px;
    }
    .hero-stats { gap: 20px; }
    .hero-stat-num { font-size: 36px; }
    .hero-actions { flex-direction: column; }
    .btn { justify-content: center; }
    .hero-pitch {
        right: -120px;
        width: 400px;
    }
}

@media (max-width: 400px) {
    .hero-pitch {
        right: -160px;
        width: 300px;
    }
}

/* ── BOTÓN VER DETALLE TORNEO ── */
.btn-ver-detalle {
    display: inline-block;
    padding: 8px 16px;
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Barlow', sans-serif;
}

.btn-ver-detalle:hover {
    color: var(--lime);
    border-color: var(--lime-dim);
    background: rgba(200, 240, 0, 0.05);
    transform: translateY(-1px);
}

.btn-ver-detalle i {
    margin-right: 4px;
}

/* ── ACCIONES EN TARJETA DE TORNEO ── */
.t-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
}

.t-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.t-actions .btn-ver-detalle {
    flex: 0 0 auto;
}