/* =========================================
   STEELERS NATION — DESIGN SYSTEM
   Fuentes: Bebas Neue (display) + Barlow Condensed (UI) + Barlow (body)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@400;500&display=swap');

:root {
    --black:     #0A0C0F;
    --black-2:   #12161B;
    --black-3:   #1C2129;
    --gold:      #FFB612;
    --gold-dark: #D99800;
    --white:     #F4F4F0;
    --muted:     rgba(244,244,240,0.45);
    --border:    rgba(255,255,255,0.07);
    --shadow:    0 24px 64px rgba(0,0,0,0.7);
    --radius:    18px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Barlow', sans-serif;
    background: var(--black);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── NOISE TEXTURE ── */
.noise-overlay {
    pointer-events: none;
    position: fixed; inset: 0; z-index: 999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
}

/* =========================================
   INDEX PAGE
   ========================================= */
.index-page {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Diagonal split background --- */
.diagonal-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
}
.diagonal-bg .bg-black {
    position: absolute;
    inset: 0;
    background: var(--black);
}
.diagonal-divider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* --- Decorative vertical lines --- */
.deco-lines {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: space-evenly;
}
.deco-lines span {
    display: block;
    width: 1px;
    height: 100%;
    background: rgba(255,182,18,0.07);
}

/* --- Center content --- */
.center-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
    padding: 2rem;
}

/* Season badge */
.season-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}
.badge-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(0.7); }
}

/* Logo ring */
.logo-ring {
    position: relative;
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
.ring-outer {
    width: 240px; height: 240px;
    border-radius: 50%;
    background: conic-gradient(
        var(--gold) 0deg 90deg,
        var(--black) 90deg 180deg,
        var(--gold) 180deg 270deg,
        var(--black) 270deg 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 80px rgba(255,182,18,0.25), var(--shadow);
    animation: spin-ring 12s linear infinite;
}
@keyframes spin-ring {
    to { transform: rotate(360deg); }
}
.ring-inner {
    width: 210px; height: 210px;
    border-radius: 50%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: counter-spin 12s linear infinite; /* counter-rotates so logo stays still */
}
@keyframes counter-spin {
    to { transform: rotate(-360deg); }
}
.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

/* Team name */
.team-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0;
}
.city {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
}
.name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 9vw, 6rem);
    letter-spacing: 0.04em;
    color: var(--white);
}

/* Gold bar */
.gold-bar {
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

/* Enter button */
.enter-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 100px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 32px rgba(255,182,18,0.35);
}
.enter-btn:hover {
    background: #ffc72c;
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(255,182,18,0.5);
}
.btn-arrow {
    transition: transform 0.2s;
}
.enter-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Tagline */
.tagline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,182,18,0.5);
}

/* Brand strip */
.brand-strip {
    position: fixed;
    bottom: 0;
    left: 0; right: 0;
    z-index: 20;
    background: var(--gold);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
}
.strip-dot { font-size: 0.5rem; opacity: 0.6; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 68px;
    background: rgba(10,12,15,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.nav-wordmark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.05em;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 4px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.2s;
    border-radius: 1px;
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-exit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 100px;
    transition: color 0.2s, border-color 0.2s;
}
.nav-exit:hover { color: var(--white); border-color: rgba(255,255,255,0.25); }

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    padding: 5rem 5% 3rem;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    min-height: 38vh;
}
.hero-bg-text {
    position: absolute;
    left: -0.05em;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(12rem, 28vw, 22rem);
    color: rgba(255,182,18,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.pulse-dot {
    width: 7px; height: 7px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255,182,18,0.4);
    animation: pulse-live 2s infinite;
}
@keyframes pulse-live {
    0%   { box-shadow: 0 0 0 0 rgba(255,182,18,0.5); }
    70%  { box-shadow: 0 0 0 10px rgba(255,182,18,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,182,18,0); }
}
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 1rem;
}
.hero-title em {
    font-style: normal;
    color: var(--gold);
}
.hero-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}
.record-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}
.record-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--gold);
    line-height: 1;
}
.record-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
}

/* =========================================
   BENTO GRID
   ========================================= */
.bento-wrapper {
    padding: 0 5% 5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 1.2rem;
}

/* Base card */
.bento-card {
    background: var(--black-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
}
.bento-card:hover {
    border-color: rgba(255,182,18,0.3);
    transform: translateY(-3px);
}

/* Card tag */
.card-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-tag::before {
    content: '';
    display: inline-block;
    width: 20px; height: 2px;
    background: var(--muted);
    border-radius: 1px;
    flex-shrink: 0;
}
.gold-tag { color: var(--gold); }
.gold-tag::before { background: var(--gold); }

/* ── NEXT GAME CARD ── */
.card-next-game {
    grid-column: span 2;
    background: linear-gradient(135deg, #1a1f28 0%, var(--black-3) 100%);
}
.matchup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.8rem;
}
.team-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.matchup-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
.ravens { filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)) brightness(0.85); }
.team-abbr {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
}
.vs-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.vs-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1;
}
.match-date, .match-time {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}
.ticket-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 100px;
    transition: background 0.2s, transform 0.2s;
}
.ticket-btn:hover {
    background: #ffc72c;
    transform: translateY(-1px);
}

/* ── STATS CARD ── */
.card-stats { grid-column: span 2; }
.stat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.stat-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.2rem;
}
.stat-list li:last-child { border-bottom: none; padding-bottom: 0; }
.stat-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
}
.stat-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.stat-name small {
    display: block;
    font-size: 0.7rem;
    color: var(--gold);
    opacity: 0.7;
    letter-spacing: 0.1em;
}

/* ── NEWS CARD ── */
.card-news { grid-column: span 2; }
.news-list { display: flex; flex-direction: column; gap: 1rem; }
.news-item {
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}
.news-item:last-child { border-bottom: none; padding-bottom: 0; }
.news-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--black);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 6px;
}
.news-item p {
    font-size: 0.88rem;
    color: rgba(244,244,240,0.75);
    line-height: 1.5;
    margin-bottom: 4px;
}
.news-time {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}

/* ── SHOP CARD ── */
.card-shop {
    grid-column: span 2;
    background: linear-gradient(140deg, #181208 0%, #2b1e00 50%, #1a1300 100%);
    border-color: rgba(255,182,18,0.15);
}
.shop-deco-logo {
    position: absolute;
    right: -20px; bottom: -20px;
    width: 160px;
    opacity: 0.06;
    pointer-events: none;
}
.shop-deco-logo img { width: 100%; }
.shop-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.shop-title strong {
    font-weight: 900;
    color: var(--gold);
}
.shop-sub {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.06em;
    margin-bottom: 1.4rem;
}
.shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 9px 20px;
    border-radius: 100px;
    transition: background 0.2s, color 0.2s;
}
.shop-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* ── STANDINGS CARD ── */
.card-standings { grid-column: span 2; }
.standings-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Barlow Condensed', sans-serif;
}
.standings-table th {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: left;
    padding: 0 0 10px;
    border-bottom: 1px solid var(--border);
}
.standings-table th:not(:first-child),
.standings-table td:not(:first-child) { text-align: center; }
.standings-table td {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: rgba(244,244,240,0.7);
}
.standings-table tbody tr:last-child td { border-bottom: none; }
.highlight-row td {
    color: var(--white);
    font-weight: 900;
}
.highlight-row td:first-child { color: var(--gold); }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 1.5rem 5%;
}
.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}
.footer-logo { opacity: 0.35; }
.footer-links {
    margin-left: auto;
    display: flex;
    gap: 1.5rem;
}
.footer-links a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .card-next-game,
    .card-stats,
    .card-news,
    .card-shop,
    .card-standings { grid-column: span 2; }
    .hero-bg-text { display: none; }
    .record-badge { display: none; }
}

@media (max-width: 600px) {
    .bento-grid { grid-template-columns: 1fr; }
    .card-next-game,
    .card-stats,
    .card-news,
    .card-shop,
    .card-standings { grid-column: span 1; }
    .nav-links { display: none; }
    .ring-outer { width: 180px; height: 180px; }
    .ring-inner { width: 156px; height: 156px; }
    .brand-strip { font-size: 0.6rem; gap: 10px; flex-wrap: wrap; }
}

/* ── SECCIÓN: GALERÍA ── */
    .section-gallery {
        padding: 4rem 5%;
        max-width: 1300px;
        margin: 0 auto;
    }
    .section-header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 2rem;
        gap: 1rem;
    }
    .section-title {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(2.2rem, 5vw, 3.5rem);
        color: var(--white);
        line-height: 1;
    }
    .section-title span { color: var(--gold); }
    .section-link {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--gold);
        text-decoration: none;
        border-bottom: 1px solid rgba(255,182,18,0.3);
        padding-bottom: 2px;
        white-space: nowrap;
        transition: border-color 0.2s;
    }
    .section-link:hover { border-color: var(--gold); }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 220px 220px;
        gap: 0.8rem;
    }
    .gallery-item {
        border-radius: 14px;
        overflow: hidden;
        position: relative;
        background: var(--black-3);
        border: 1px solid var(--border);
        cursor: pointer;
        transition: transform 0.25s, border-color 0.25s;
    }
    .gallery-item:hover { transform: scale(1.02); border-color: rgba(255,182,18,0.4); }
    .gallery-item.tall { grid-row: span 2; }
    .gallery-item.wide { grid-column: span 2; }
    .gallery-placeholder {
        width: 100%; height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: rgba(255,255,255,0.15);
    }
    .gallery-placeholder span {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.15em;
        text-transform: uppercase;
    }
    .gallery-overlay {
        position: absolute; inset: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
        opacity: 0;
        transition: opacity 0.25s;
        display: flex;
        align-items: flex-end;
        padding: 1rem;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay span {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gold);
    }

    /* ── SECCIÓN: MEDIA ── */
    .section-media {
        padding: 4rem 5%;
        max-width: 1300px;
        margin: 0 auto;
        border-top: 1px solid var(--border);
    }
    .media-tabs {
        display: flex;
        gap: 0;
        margin-bottom: 2rem;
        background: var(--black-2);
        border: 1px solid var(--border);
        border-radius: 100px;
        padding: 5px;
        width: fit-content;
    }
    .media-tab {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--muted);
        padding: 8px 22px;
        border-radius: 100px;
        cursor: pointer;
        transition: color 0.2s, background 0.2s;
        border: none;
        background: none;
        user-select: none;
    }
    .media-tab.active { background: var(--gold); color: var(--black); }
    .media-tab:not(.active):hover { color: var(--white); }
    .media-panel { display: none; }
    .media-panel.active { display: grid; }

    /* Podcast */
    .podcast-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .podcast-card {
        background: var(--black-2);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 1.4rem;
        display: flex;
        gap: 1rem;
        align-items: center;
        cursor: pointer;
        transition: border-color 0.25s, transform 0.2s;
    }
    .podcast-card:hover { border-color: rgba(255,182,18,0.35); transform: translateY(-2px); }
    .podcast-thumb {
        width: 64px; height: 64px;
        border-radius: 10px;
        background: linear-gradient(135deg, #2b1e00, #1a1300);
        border: 1px solid rgba(255,182,18,0.2);
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
    }
    .podcast-info { flex: 1; min-width: 0; }
    .podcast-ep {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.62rem; font-weight: 700;
        letter-spacing: 0.18em; text-transform: uppercase;
        color: var(--gold); margin-bottom: 4px;
    }
    .podcast-title {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1rem; font-weight: 700;
        color: var(--white); line-height: 1.25; margin-bottom: 6px;
        white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .podcast-meta { font-size: 0.75rem; color: var(--muted); }
    .podcast-play {
        width: 36px; height: 36px; border-radius: 50%;
        background: var(--gold);
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0; transition: transform 0.2s;
    }
    .podcast-card:hover .podcast-play { transform: scale(1.1); }

    /* Videos */
    .videos-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .video-card {
        background: var(--black-2);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        overflow: hidden; cursor: pointer;
        transition: border-color 0.25s, transform 0.2s;
    }
    .video-card:hover { border-color: rgba(255,182,18,0.35); transform: translateY(-2px); }
    .video-thumb {
        height: 150px; background: var(--black-3);
        display: flex; align-items: center; justify-content: center;
        border-bottom: 1px solid var(--border);
    }
    .video-play-icon {
        width: 48px; height: 48px; border-radius: 50%;
        background: rgba(255,182,18,0.15);
        border: 2px solid var(--gold);
        display: flex; align-items: center; justify-content: center;
        transition: background 0.2s;
    }
    .video-card:hover .video-play-icon { background: var(--gold); }
    .video-card:hover .video-play-icon svg { color: var(--black); }
    .video-play-icon svg { color: var(--gold); transition: color 0.2s; }
    .video-info { padding: 1rem; }
    .video-label {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.62rem; font-weight: 700;
        letter-spacing: 0.18em; text-transform: uppercase;
        color: var(--gold); margin-bottom: 4px;
    }
    .video-title {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.95rem; font-weight: 700;
        color: var(--white); line-height: 1.3; margin-bottom: 4px;
    }
    .video-meta { font-size: 0.72rem; color: var(--muted); }

    /* Noticias */
    .noticias-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .noticia-card {
        background: var(--black-2);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 1.4rem;
        display: flex; flex-direction: column; gap: 0.6rem;
        cursor: pointer; transition: border-color 0.25s, transform 0.2s;
    }
    .noticia-card:hover { border-color: rgba(255,182,18,0.35); transform: translateY(-2px); }
    .noticia-cat {
        display: inline-block;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.6rem; font-weight: 900;
        letter-spacing: 0.2em; text-transform: uppercase;
        background: var(--gold); color: var(--black);
        padding: 2px 8px; border-radius: 4px; width: fit-content;
    }
    .noticia-title {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.1rem; font-weight: 700;
        color: var(--white); line-height: 1.3;
    }
    .noticia-excerpt { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }
    .noticia-footer {
        display: flex; align-items: center; justify-content: space-between;
        margin-top: auto; padding-top: 0.8rem;
        border-top: 1px solid var(--border);
    }
    .noticia-time {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.65rem; font-weight: 600;
        letter-spacing: 0.1em; text-transform: uppercase;
        color: rgba(255,255,255,0.2);
    }
    .noticia-arrow { color: var(--gold); }

    /* ── RESULTADOS ── */
    .section-results {
        padding: 4rem 5%;
        max-width: 1300px;
        margin: 0 auto;
        border-top: 1px solid var(--border);
    }
    .results-list { display: flex; flex-direction: column; gap: 0.6rem; }
    .result-row {
        display: grid;
        grid-template-columns: 110px 1fr auto auto 110px;
        align-items: center; gap: 1rem;
        background: var(--black-2);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 1rem 1.5rem;
        transition: border-color 0.2s;
    }
    .result-row:hover { border-color: rgba(255,182,18,0.25); }
    .result-date {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.72rem; font-weight: 700;
        letter-spacing: 0.1em; text-transform: uppercase;
        color: var(--muted);
    }
    .result-teams {
        display: flex; align-items: center; gap: 10px;
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 700; font-size: 0.95rem;
    }
    .result-teams .vs { color: var(--muted); font-size: 0.75rem; }
    .result-score {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.8rem; line-height: 1;
        color: var(--white); letter-spacing: 0.05em; text-align: center;
    }
    .result-score .dash { color: var(--muted); margin: 0 4px; }
    .result-type {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.65rem; font-weight: 700;
        letter-spacing: 0.12em; text-transform: uppercase;
        color: var(--muted); text-align: center;
    }
    .result-badge {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.72rem; font-weight: 900;
        letter-spacing: 0.12em; text-transform: uppercase;
        padding: 4px 14px; border-radius: 100px; text-align: center;
    }
    .result-w { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
    .result-l { background: rgba(239,68,68,0.12); color: #f87171; border: 1px solid rgba(239,68,68,0.15); }

    /* ── REDES SOCIALES ── */
    .section-social {
        padding: 4rem 5%;
        max-width: 1300px;
        margin: 0 auto;
        border-top: 1px solid var(--border);
    }
    .social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
    .social-card {
        background: var(--black-2);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 2rem 1.5rem;
        display: flex; flex-direction: column; align-items: center; gap: 1rem;
        text-decoration: none;
        transition: border-color 0.25s, transform 0.25s;
        position: relative; overflow: hidden;
    }
    .social-card::before {
        content: ''; position: absolute; inset: 0;
        opacity: 0; transition: opacity 0.3s;
    }
    .social-card:hover { transform: translateY(-4px); }
    .social-card:hover::before { opacity: 1; }
    .social-card.fb::before  { background: linear-gradient(135deg, rgba(24,119,242,0.12), transparent); }
    .social-card.ig::before  { background: linear-gradient(135deg, rgba(225,48,108,0.12), transparent); }
    .social-card.tt::before  { background: linear-gradient(135deg, rgba(105,201,208,0.1), transparent); }
    .social-card.yt::before  { background: linear-gradient(135deg, rgba(255,0,0,0.1), transparent); }
    .social-card.fb:hover { border-color: rgba(24,119,242,0.4); }
    .social-card.ig:hover { border-color: rgba(225,48,108,0.4); }
    .social-card.tt:hover { border-color: rgba(105,201,208,0.35); }
    .social-card.yt:hover { border-color: rgba(255,0,0,0.35); }
    .social-icon {
        width: 56px; height: 56px; border-radius: 16px;
        display: flex; align-items: center; justify-content: center;
        position: relative; z-index: 1;
    }
    .social-icon.fb { background: rgba(24,119,242,0.15); }
    .social-icon.ig { background: rgba(225,48,108,0.15); }
    .social-icon.tt { background: rgba(105,201,208,0.12); }
    .social-icon.yt { background: rgba(255,0,0,0.12); }
    .social-name {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1rem; font-weight: 900;
        letter-spacing: 0.05em; text-transform: uppercase;
        color: var(--white); position: relative; z-index: 1;
    }
    .social-handle {
        font-size: 0.78rem; color: var(--muted);
        position: relative; z-index: 1; text-align: center;
    }
    .social-cta {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.72rem; font-weight: 700;
        letter-spacing: 0.12em; text-transform: uppercase;
        padding: 6px 18px; border-radius: 100px;
        border: 1px solid var(--border);
        color: var(--muted); position: relative; z-index: 1;
        transition: border-color 0.2s, color 0.2s; margin-top: auto;
    }
    .social-card:hover .social-cta { color: var(--white); border-color: rgba(255,255,255,0.25); }

    /* RESPONSIVE */
    @media (max-width: 900px) {
        .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
        .gallery-item.tall, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }
        .podcast-grid, .videos-grid, .noticias-grid { grid-template-columns: 1fr; }
        .social-grid { grid-template-columns: repeat(2, 1fr); }
        .result-row { grid-template-columns: 1fr auto auto; }
        .result-date, .result-type { display: none; }
    }
    @media (max-width: 600px) {
        .gallery-grid { grid-template-columns: 1fr; }
        .social-grid { grid-template-columns: 1fr 1fr; }
        .media-tabs { width: 100%; justify-content: center; }
    }