/* ==========================================================================
   MAIN LIVE DASHBOARD (THE CHYRON)
   ========================================================================== */
.scoreboard-wrapper {
    margin-top: -140px;
    position: relative;
    z-index: 10;
    margin-bottom: 24px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
}

.scoreboard-status-strip {
    background: linear-gradient(90deg, #0a0a0d, #1a1a20, #0a0a0d);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    padding: 8px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    flex-wrap: wrap;
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.scoreboard-status-strip .status-live {
    color: #ff4d4d;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 0 10px var(--primary-red-glow);
}

.status-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.broadcast-chyron {
    display: flex;
    background: rgba(10, 10, 14, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    box-shadow:
        0 0 30px rgba(0, 0, 0, 0.85),
        0 0 22px color-mix(in srgb, var(--team-a-color) 35%, transparent),
        0 0 18px color-mix(in srgb, var(--team-b-color) 30%, transparent);
}

@supports not (color: color-mix(in srgb, red 50%, transparent)) {
    .broadcast-chyron {
        box-shadow:
            0 0 30px rgba(0, 0, 0, 0.85),
            0 0 22px rgba(106, 13, 173, 0.28),
            0 0 18px rgba(255, 215, 0, 0.2);
    }
}

.broadcast-chyron::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.chyron-team {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 24px 40px;
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.chyron-team.home {
    flex-direction: row;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.chyron-team.away {
    flex-direction: row-reverse;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.chyron-color-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.home .chyron-color-bar {
    left: 0;
    background: var(--team-a-color);
}

.away .chyron-color-bar {
    right: 0;
    background: var(--team-b-color);
}

.team-identity {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    position: relative;
}

.away .team-identity {
    flex-direction: row-reverse;
    text-align: right;
}

/* Possession Indicator */
.possession-arrow {
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    opacity: 0;
    transition: opacity 0.3s;
    filter: drop-shadow(0 0 8px var(--accent-gold));
    display: none !important;
}

.possession-arrow.active {
    opacity: 1;
}

.home .possession-arrow {
    right: -35px;
    border-left: 12px solid var(--accent-gold);
}

.away .possession-arrow {
    left: -35px;
    border-right: 12px solid var(--accent-gold);
}

/* ==========================================================================
   LIVE SCOREBOARD — TEAM LOGOS
   ========================================================================== */
.team-logo {
    width: clamp(76px, 6vw, 100px);
    height: clamp(76px, 6vw, 100px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.08), transparent 46%),
        linear-gradient(135deg, #1f1f24, #0a0a0d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.3rem, 1.8vw, 1.9rem);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.6),
        inset 0 2px 5px rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    flex: 0 0 auto;
    position: relative;
}

.team-logo:has(img) {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.team-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 50%;
    padding: 4px;
}

.team-logo.aborigen {
    background: linear-gradient(135deg, #ffffff, #dcdcdc) !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    text-shadow: none !important;
}

@media (min-width: 900px) and (max-width: 1280px) {
    .team-logo {
        width: 84px;
        height: 84px;
    }
}

.team-details h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.2vw, 2.4rem);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
}

.team-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-score {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    padding: 0 20px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 4px 10px rgba(0, 0, 0, 0.8);
    font-variant-numeric: tabular-nums;
    letter-spacing: -2px;
    z-index: 1;
    transition: transform 0.2s ease, text-shadow 0.2s ease, color 0.2s ease;
}

.team-score.update {
    transform: scale(1.15);
    color: var(--accent-gold);
    text-shadow: 0 0 28px var(--accent-gold);
}

.chyron-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    background: linear-gradient(180deg, #15151a 0%, #0a0a0d 100%);
    min-width: 240px;
    position: relative;
    z-index: 1;
}

.chyron-center::before,
.chyron-center::after {
    content: '';
    position: absolute;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.chyron-center::before {
    left: 0;
}

.chyron-center::after {
    right: 0;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(230, 25, 43, 0.1);
    color: #ff4d4d;
    padding: 6px 16px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    border: 1px solid rgba(230, 25, 43, 0.4);
    animation: glow-live 1.5s infinite alternate;
}

.live-badge.off {
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.72);
    border-color: rgba(255, 255, 255, 0.14);
    animation: none;
    box-shadow: none;
}

.scoreboard-status-strip .status-live.off {
    color: rgba(255, 255, 255, 0.62);
    text-shadow: none;
}

@keyframes glow-live {
    from {
        box-shadow: 0 0 10px rgba(230, 25, 43, 0.35);
    }

    to {
        box-shadow: 0 0 25px rgba(230, 25, 43, 0.85);
    }
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: #ff4d4d;
    border-radius: 50%;
    animation: pulse-live 1.5s infinite;
}

.game-clock {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 1.5px;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.game-quarter {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 4px;
}

.chyron-footer {
    display: flex;
    background: #0a0a0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0;
    overflow: hidden;
}

.chyron-footer .btn {
    flex: 1;
    border-radius: 0;
    padding: 16px;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.btn-live-stats {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-live-stats:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.btn-stream {
    background: var(--primary-red-dim);
    color: #ff4d4d;
    font-weight: 700;
}

.btn-stream:hover {
    background: var(--primary-red);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-red-glow);
}

.momentum-bar {
    background: #0a0a0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 12px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.02);
}

.momentum-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    text-align: center;
    font-family: var(--font-heading);
}

.momentum-line {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    border-radius: 2px;
    overflow: hidden;
}

.momentum-fill {
    height: 100%;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.qa-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.qa-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* ==========================================================================
   GAME CENTER (TEAM COMPARISON)
   ========================================================================== */
.game-center-card {
    background: linear-gradient(180deg, var(--bg-surface-elevated) 0%, var(--bg-surface) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 32px 40px;
    margin-bottom: 80px;
    box-shadow: var(--shadow-soft);
}

.gc-header {
    text-align: center;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 16px;
}

.gc-teams-labels {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--text-main);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.gc-teams-labels span:first-child {
    color: var(--team-a-color);
    text-shadow: 0 0 10px rgba(106, 13, 173, 0.5);
}

.gc-teams-labels span:last-child {
    color: var(--team-b-color);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 24px;
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    width: 50px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.val-a {
    text-align: right;
}

.val-b {
    text-align: left;
}

.stat-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.stat-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.8);
}

.stat-bar {
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 4px;
    transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-bar.team-a {
    right: 50%;
    background-color: var(--team-a-color);
    border-radius: 4px 0 0 4px;
    transform-origin: right;
    box-shadow: 0 0 10px var(--team-a-color);
}

.stat-bar.team-b {
    left: 50%;
    background-color: var(--team-b-color);
    border-radius: 0 4px 4px 0;
    transform-origin: left;
    box-shadow: 0 0 10px var(--team-b-color);
}

.game-center-card:not(.animate-bars) .stat-bar {
    transform: scaleX(0) !important;
}

/* ==========================================================================
   MAIN LAYOUT GRID
   ========================================================================== */
.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

/* ==========================================================================
   LEFT COLUMN — LEADERS
   ========================================================================== */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.leader-card {
    text-align: center;
    padding: 24px 16px;
    border-top: 3px solid var(--border-subtle);
    justify-content: space-between;
}

.leader-card:hover {
    border-top-color: var(--accent-gold);
}

.leader-stat-type {
    color: var(--text-muted);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.95rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.leader-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2a2a30, #111);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-highlight);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.leader-avatar::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0px;
    width: 22px;
    height: 22px;
    background: var(--primary-red);
    border-radius: 50%;
    border: 3px solid var(--bg-surface);
    box-shadow: 0 0 8px var(--primary-red-glow);
}

.leader-avatar svg {
    width: 40px;
    height: 40px;
    fill: rgba(255, 255, 255, 0.4);
}

.leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.leader-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.leader-name a {
    color: inherit;
    text-decoration: none;
}

.leader-name a:hover {
    color: var(--accent-gold);
}

.leader-team {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}

.leader-value {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   PLAYER SEARCH
   ========================================================================== */
.search-section {
    background: linear-gradient(135deg, #1f1416 0%, var(--bg-surface-elevated) 100%);
    border: 1px solid rgba(230, 25, 43, 0.2);
    border-radius: 12px;
    padding: 48px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.search-section::after {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 25, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.search-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    opacity: 0.5;
}

.search-badge {
    display: inline-block;
    background: var(--primary-red);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.search-header {
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.search-header h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.search-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.search-bar {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.search-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-highlight);
    color: var(--text-main);
    padding: 18px 24px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    outline: none;
    transition: var(--transition-fast);
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.search-input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(230, 25, 43, 0.3), inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.search-btn {
    padding: 18px 32px;
    font-size: 1.1rem;
}

.search-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
}

.player-preview-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition-fast);
    backdrop-filter: blur(5px);
}

.player-preview-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.pp-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pp-avatar {
    width: 50px;
    height: 50px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pp-avatar svg {
    width: 24px;
    height: 24px;
    fill: #666;
}

.pp-info h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.pp-info span {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 600;
}

.pp-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    margin-top: auto;
}

.pp-stat {
    text-align: center;
}

.pp-stat strong {
    display: block;
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.3rem;
}

.pp-stat small {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.pp-action {
    font-size: 0.85rem;
    color: var(--primary-red);
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    display: block;
    margin-top: 12px;
    letter-spacing: 1px;
}

/* ==========================================================================
   VIDEO HIGHLIGHTS
   ========================================================================== */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.video-card {
    padding: 0;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: flex-end;
    border-radius: 8px;
    overflow: hidden;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.95) 100%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 24 24" fill="rgba(255,255,255,0.05)"><path d="M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03A3.003 3.003 0 0 1 11 18c-1.66 0-3-1.34-3-3z"/></svg>') center/30% no-repeat #111;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
}

.video-card:hover .video-thumbnail {
    background-color: #1a1a1a;
    transform: scale(1.03);
}

.video-card:hover {
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.22);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #fff;
    margin-left: 4px;
    transition: var(--transition-fast);
}

.video-card:hover .video-play-btn {
    background: #ff0000;
    border-color: #ff0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.5);
    transform: translate(-50%, -50%) scale(1.05);
}

.video-info {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, transparent 100%);
}

.video-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    margin-bottom: 8px;
    line-height: 1.2;
}

.video-actions {
    display: flex;
    gap: 10px;
}

.video-actions span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

/* ==========================================================================
   NEWS SECTION
   ========================================================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.news-card {
    padding: 0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.news-img {
    height: 220px;
    background: #1a1a20;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-img svg {
    width: 60px;
    height: 60px;
    fill: rgba(255, 255, 255, 0.05);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-img svg {
    transform: scale(1.1);
    fill: rgba(255, 255, 255, 0.08);
}

.news-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--bg-surface) 0%, transparent 100%);
    z-index: 1;
}

.news-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.news-cat {
    background: var(--primary-red);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px var(--primary-red-glow);
}

.news-date {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.news-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.news-card:hover .news-title {
    color: var(--accent-gold);
}

.news-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.news-read {
    margin-top: auto;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    letter-spacing: 1px;
}

.news-card:hover .news-read {
    gap: 12px;
    color: var(--primary-red);
}

/* ==========================================================================
   RIGHT COLUMN — SIDEBAR
   ========================================================================== */

/* Next Game */
.next-game-card {
    margin-bottom: 40px;
    border-top: 4px solid var(--accent-gold);
    background: linear-gradient(180deg, #1f1f24 0%, #101014 100%);
}

.next-game-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.next-game-date {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.next-game-venue {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 6px;
    font-weight: 500;
}

.next-game-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    margin-bottom: 24px;
}

.ng-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ng-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.ng-logo.a {
    background: linear-gradient(135deg, var(--color-aborigen), #e0e0e0);
    color: #000;
    text-shadow: none;
}

.ng-logo.b {
    background: linear-gradient(135deg, var(--color-toros), #4a0000);
    color: #fff;
}

.ng-logo.aborigen {
    background: linear-gradient(135deg, #ffffff, #dcdcdc) !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    text-shadow: none !important;
}

.ng-logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    padding: 6px;
}

.ng-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-transform: uppercase;
}

.ng-vs {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Player of the Game */
.potg-card {
    margin-bottom: 40px;
    background: linear-gradient(135deg, #18181c 0%, #300812 100%);
    border: 1px solid rgba(230, 25, 43, 0.4);
}

.potg-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: radial-gradient(circle at right, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.potg-content {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.potg-img {
    width: clamp(96px, 10vw, 128px);
    aspect-ratio: 4 / 5;
    height: auto;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 45%),
        linear-gradient(180deg, #1b1b20 0%, #050506 100%);
    border-radius: 12px;
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow:
        0 14px 24px rgba(0, 0, 0, 0.65),
        inset 0 0 24px rgba(212, 175, 55, 0.08);
}

.potg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.potg-img svg {
    width: 70px;
    height: 70px;
    fill: rgba(255, 255, 255, 0.2);
}

.potg-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-width: 0;
}

.potg-info h4 {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 0.95;
    color: var(--text-main);
    text-transform: uppercase;
    margin: 0 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.potg-info p {
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 !important;
    letter-spacing: 1.5px;
}

.potg-stats {
    display: flex;
    gap: 20px;
    margin-top: 2px;
}

.potg-stat span {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0 10px var(--primary-red-glow);
}

.potg-stat small {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   STANDINGS TABLE
   ========================================================================== */
.standings-card {
    margin-bottom: 40px;
    padding: 0;
}

.standings-card .heading-section {
    padding: 24px 24px 0;
    margin-bottom: 16px;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th,
td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-subtle);
}

th {
    font-family: var(--font-heading);
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.9rem;
    background-color: rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

td {
    font-weight: 500;
    font-size: 0.95rem;
}

tbody tr {
    transition: var(--transition-fast);
}

tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

tr:last-child td {
    border-bottom: none;
}

.team-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.team-cell a {
    color: inherit;
    text-decoration: none;
}

.team-cell a:hover {
    color: var(--accent-gold);
}

.team-cell-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    padding: 3px;
    flex: 0 0 32px;
}

.table-pos {
    color: var(--text-muted);
    width: 15px;
    font-family: var(--font-heading);
}

tbody tr:nth-child(1) .table-pos {
    color: var(--accent-gold);
    font-weight: 700;
}

tbody tr:nth-child(2) .table-pos {
    color: #C0C0C0;
    font-weight: 700;
}

tbody tr:nth-child(3) .table-pos {
    color: #cd7f32;
    font-weight: 700;
}

/* ==========================================================================
   RECENT RESULTS
   ========================================================================== */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.result-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-fast);
}

.result-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(4px);
    box-shadow: var(--shadow-soft);
}

.result-col {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.result-team {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 4px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.result-team-name {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 10px;
}

.result-score {
    flex: 0 0 auto;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* Winner / loser state
   front-page.php imprime .winner / .loser.
   También soporta .is-winner / .is-loser para futuras plantillas.
   -------------------------------------------------------------------------- */
.result-team.winner,
.result-team.is-winner {
    color: #ffffff;
    font-weight: 800;
}

.result-team.winner .result-score,
.result-team.is-winner .result-score {
    color: var(--accent-gold);
    font-weight: 900;
}

.result-team.loser,
.result-team.is-loser {
    color: rgba(255, 255, 255, 0.66);
    font-weight: 500;
}

.result-team.loser .result-score,
.result-team.is-loser .result-score {
    color: rgba(255, 255, 255, 0.66);
    font-weight: 700;
}

.result-team.draw,
.result-team.is-draw {
    color: var(--text-main);
}

/* Bolita de estado:
   ganador = verde
   perdedor = gris
   empate / sin estado = dorado suave
   -------------------------------------------------------------------------- */
.result-team .team-indicator {
    display: inline-block;
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.34);
    border: 1px solid rgba(148, 163, 184, 0.32);
    box-shadow: 0 0 8px rgba(148, 163, 184, 0.16);
}

.result-team.winner .team-indicator,
.result-team.is-winner .team-indicator {
    background: #22c55e;
    border-color: rgba(34, 197, 94, 0.82);
    box-shadow:
        0 0 0 4px rgba(34, 197, 94, 0.12),
        0 0 16px rgba(34, 197, 94, 0.52);
}

.result-team.loser .team-indicator,
.result-team.is-loser .team-indicator {
    background: rgba(100, 116, 139, 0.32);
    border-color: rgba(100, 116, 139, 0.24);
    box-shadow: none;
}

.result-team.draw .team-indicator,
.result-team.is-draw .team-indicator {
    background: var(--accent-gold);
    border-color: rgba(212, 175, 55, 0.72);
    box-shadow:
        0 0 0 4px rgba(212, 175, 55, 0.10),
        0 0 12px rgba(212, 175, 55, 0.34);
}

.result-col-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    min-width: 54px;
}

.result-status {
    padding-left: 16px;
    border-left: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: right;
    text-transform: uppercase;
}

.result-date {
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.result-link {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.result-link:hover {
    color: var(--text-main);
}

/* ==========================================================================
   SPONSORS
   ========================================================================== */
.sponsors-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-surface);
}

.sponsors-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.sponsor-placeholder {
    width: 220px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.sponsor-placeholder:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.1);
}

/* ==========================================================================
   SPORTSPRESS — HELPERS GENERALES
   ========================================================================== */
.goat-no-data {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
    padding: 18px 0;
    opacity: 0.78;
}

/* ==========================================================================
   SPORTSPRESS STANDINGS — TÍTULO PREMIUM
   ========================================================================== */
.goat-sp-standings-shortcode {
    overflow: hidden;
}

.goat-sp-standings-shortcode h1:first-child,
.goat-sp-standings-shortcode h2:first-child,
.goat-sp-standings-shortcode h3:first-child,
.goat-sp-standings-shortcode h4:first-child,
.goat-sp-standings-shortcode .sp-table-caption,
.goat-sp-standings-shortcode .sp-template-title,
.goat-sp-standings-shortcode .sp-data-table-caption {
    display: block;
    width: 100%;
    margin: 0;
    padding: 18px 22px;
    text-align: center;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.4vw, 1.35rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.01em;
    text-transform: none;
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--accent-gold) 12%, transparent), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
}

.goat-sp-standings-shortcode caption,
.goat-sp-standings-shortcode table caption {
    display: table-caption;
    caption-side: top;
    width: 100%;
    padding: 18px 22px;
    text-align: center;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.4vw, 1.35rem);
    font-weight: 900;
    line-height: 1.15;
    background:
        radial-gradient(circle at top left, color-mix(in srgb, var(--accent-gold) 12%, transparent), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
}

.goat-sp-standings-shortcode table {
    width: 100%;
    border-collapse: collapse;
}

/* ==========================================================================
   GOAT NATIVE STANDINGS — HOME
   ========================================================================== */

.goat-sp-standings-shortcode .home-native-standings {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.goat-sp-standings-shortcode .home-native-standings tbody tr {
    height: 64px;
}

.goat-sp-standings-shortcode .home-native-standings th,
.goat-sp-standings-shortcode .home-native-standings td {
    vertical-align: middle;
    text-align: center;
}

.goat-sp-standings-shortcode .home-native-standings th:first-child,
.goat-sp-standings-shortcode .home-native-standings td:first-child {
    width: 48px;
    min-width: 48px;
    padding: 0 8px;
    text-align: center;
}

.goat-sp-standings-shortcode .home-native-standings tbody td:first-child {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}

.goat-sp-standings-shortcode .home-native-standings tbody tr:nth-of-type(1) td:first-child {
    color: var(--accent-gold);
}

.goat-sp-standings-shortcode .home-native-standings tbody tr:nth-of-type(2) td:first-child {
    color: #c0c0c0;
}

.goat-sp-standings-shortcode .home-native-standings tbody tr:nth-of-type(3) td:first-child {
    color: #cd7f32;
}

.goat-sp-standings-shortcode .home-native-standings th:nth-child(2),
.goat-sp-standings-shortcode .home-native-standings td:nth-child(2) {
    text-align: left;
    padding: 8px 16px;
}

.goat-sp-standings-shortcode .home-native-standings th:nth-child(3),
.goat-sp-standings-shortcode .home-native-standings td:nth-child(3),
.goat-sp-standings-shortcode .home-native-standings th:nth-child(4),
.goat-sp-standings-shortcode .home-native-standings td:nth-child(4) {
    width: 52px;
    text-align: center;
}

.goat-sp-standings-shortcode .home-native-standings__team {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: inherit;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.goat-sp-standings-shortcode .home-native-standings__team:hover {
    color: var(--accent-gold);
}

.goat-sp-standings-shortcode .home-native-standings__team img {
    display: block;
    width: 44px;
    height: 44px;
    min-width: 44px;
    max-width: 44px;
    max-height: 44px;
    flex: 0 0 44px;
    object-fit: contain;
    object-position: center;
    border: 0;
    border-radius: 6px;
    background: transparent;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

.goat-sp-standings-shortcode .home-native-standings__team strong {
    color: inherit;
    font-weight: 700;
}

/* ==========================================================================
   SPORTSPRESS STANDINGS — TÍTULO OVERRIDE ESPECÍFICO
   (Por si SportsPress lo genera dentro de .sp-template)
   ========================================================================== */
.standings-card .goat-sp-standings-shortcode>h1,
.standings-card .goat-sp-standings-shortcode>h2,
.standings-card .goat-sp-standings-shortcode>h3,
.standings-card .goat-sp-standings-shortcode>h4,
.standings-card .goat-sp-standings-shortcode .sp-template-title,
.standings-card .goat-sp-standings-shortcode .sp-table-caption,
.standings-card .goat-sp-standings-shortcode .sp-data-table-caption,
.standings-card .goat-sp-standings-shortcode table caption,
.standings-card .goat-sp-standings-shortcode .sp-template>h1,
.standings-card .goat-sp-standings-shortcode .sp-template>h2,
.standings-card .goat-sp-standings-shortcode .sp-template>h3,
.standings-card .goat-sp-standings-shortcode .sp-template>h4 {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 20px 18px !important;
    text-align: center !important;
    color: var(--text-main) !important;
    font-family: var(--font-heading) !important;
    font-size: clamp(1rem, 1.5vw, 1.35rem) !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    text-transform: none !important;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-sizing: border-box !important;
}

/* ==========================================================================
   SPORTSPRESS — POTG SIDEBAR PREMIUM
   ========================================================================== */
.sidebar .potg-card {
    padding: 28px;
    border-radius: 14px;
    min-height: 130px;
}

.sidebar .potg-content,
.sidebar .potg-content-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    min-height: 130px;
}

.sidebar .potg-img {
    width: 100px;
    height: 100px;
    flex: 0 0 100px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 45%),
        linear-gradient(180deg, #1b1b20 0%, #050506 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar .potg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

.sidebar .potg-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.sidebar .potg-info p {
    margin: 0 0 10px;
    font-size: 0.88rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0.14em;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.sidebar .potg-info h4 {
    margin: 0;
    max-width: 310px;
    font-size: clamp(1.7rem, 2.1vw, 2.25rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.sidebar .potg-stats {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-top: 10px;
}

.sidebar .potg-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sidebar .potg-stat span {
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 900;
}

.sidebar .potg-stat small {
    margin-top: 4px;
    font-size: 0.68rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.sidebar .potg-content-link:hover h4 {
    color: var(--accent-gold);
}

/* ==========================================================================
   DASHBOARD RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
    .team-score {
        font-size: 4.5rem;
    }
}

@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .chyron-team {
        padding: 20px;
    }

    .team-details h2 {
        font-size: 1.8rem;
    }

    .chyron-center {
        padding: 0 20px;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .scoreboard-wrapper {
        margin-top: -40px;
        margin-bottom: 20px;
        position: relative !important;
        top: auto !important;
        z-index: 10 !important;
    }

    .scoreboard-status-strip {
        padding: 10px;
        font-size: 0.65rem;
        gap: 8px;
    }

    .broadcast-chyron {
        flex-direction: column;
    }

    .chyron-center {
        order: 1;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 12px 16px;
        flex-direction: row;
        justify-content: space-between;
        min-width: auto;
        background: var(--bg-surface-elevated);
    }

    .chyron-center::before,
    .chyron-center::after {
        display: none;
    }

    .chyron-team.home {
        order: 2;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 12px 16px;
    }

    /* Away en móvil: alineado igual que home, color bar a la izquierda */
    .chyron-team.away {
        order: 3;
        border-left: none;
        padding: 12px 16px;
        flex-direction: row;
        justify-content: flex-start;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    }

    .chyron-team.away .team-identity {
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
        flex: 1;
    }

    .chyron-team.away .team-logo {
        order: -1;
    }

    .chyron-team.away .team-score {
        margin-left: auto;
        padding-left: 8px;
    }

    .away .chyron-color-bar {
        right: auto;
        left: 0;
    }

    .team-logo {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.1rem;
        border-width: 1px;
    }

    .team-logo img {
        width: 96%;
        height: 96%;
    }

    .team-details h2 {
        font-size: 1.3rem;
        text-shadow: none;
        white-space: nowrap;
        max-width: 130px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .team-details p {
        font-size: 0.75rem;
        margin-top: 0;
    }

    .team-score {
        font-size: 2.8rem;
        padding: 0;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }

    .game-clock {
        font-size: 1.2rem;
    }

    .live-badge {
        font-size: 0.8rem;
        padding: 4px 8px;
        margin-bottom: 0;
        letter-spacing: 1px;
    }

    .game-quarter {
        margin-top: 0;
        font-size: 0.8rem;
    }

    .chyron-footer {
        flex-direction: column;
    }

    .btn-live-stats {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px;
        font-size: 0.85rem;
    }

    .btn-stream {
        padding: 12px;
        font-size: 0.85rem;
    }

    .momentum-bar {
        padding: 10px 16px;
    }

    .momentum-text {
        font-size: 0.65rem;
    }

    .quick-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 0 10px;
        margin-top: 16px;
        margin-bottom: 40px;
    }

    .qa-btn {
        padding: 12px 8px;
        font-size: 0.8rem;
        width: 100%;
        letter-spacing: 0.5px;
        border-radius: 10px;
        font-weight: 700;
    }

    .qa-btn:nth-child(3) {
        grid-column: span 2;
    }

    .dashboard-grid {
        gap: 14px;
        margin-bottom: 40px;
    }

    .game-center-card {
        padding: 20px 16px;
        margin-bottom: 30px;
    }

    .gc-header {
        margin-bottom: 20px;
        padding-bottom: 12px;
        font-size: 0.85rem;
    }

    .gc-teams-labels {
        font-size: 1rem;
        margin-bottom: 16px;
    }

    .stat-row {
        flex-direction: row;
        gap: 12px;
        align-items: center;
        margin-bottom: 12px;
    }

    .stat-val {
        width: auto;
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .leaders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 30px;
    }

    .leader-card {
        padding: 16px 10px;
    }

    .leader-avatar {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .leader-avatar svg {
        width: 24px;
        height: 24px;
    }

    .leader-value {
        font-size: 1.6rem;
    }

    .search-section {
        padding: 24px 16px;
        margin-bottom: 30px;
    }

    .search-header h3 {
        font-size: 1.5rem;
    }

    .search-bar {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 24px;
    }

    .search-input {
        padding: 14px 16px;
        font-size: 1rem;
    }

    .search-btn {
        padding: 14px;
        width: 100%;
    }

    .news-grid,
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 30px;
    }

    .news-img {
        height: 180px;
    }

    .news-content {
        padding: 16px;
    }

    .news-title {
        font-size: 1.25rem;
    }

    .table-wrapper {
        padding-bottom: 8px;
    }

    th,
    td {
        padding: 10px 12px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .sponsors-section {
        padding: 40px 0;
    }

    .sponsors-grid {
        gap: 12px;
        margin-top: 24px;
    }

    .sponsor-placeholder {
        width: calc(50% - 6px);
        height: 70px;
        font-size: 0.9rem;
    }

    .sidebar .potg-card {
        padding: 20px;
    }

    .sidebar .potg-content,
    .sidebar .potg-content-link {
        gap: 16px;
        min-height: 118px;
    }

    .sidebar .potg-img {
        width: 82px;
        height: 82px;
        flex: 0 0 82px;
    }

    .sidebar .potg-info p {
        font-size: 0.75rem;
        margin-bottom: 7px;
    }

    .sidebar .potg-info h4 {
        font-size: clamp(1.3rem, 5vw, 1.65rem);
        line-height: 1.02;
        max-width: 210px;
    }

    .sidebar .potg-stats {
        gap: 14px;
        margin-top: 8px;
    }

    .sidebar .potg-stat span {
        font-size: 1.15rem;
    }

    .sidebar .potg-stat small {
        font-size: 0.62rem;
    }

    /* Standings logos 768px */
    .goat-sp-standings-shortcode table tbody tr td:nth-child(2) img {
        width: 36px !important;
        height: 36px !important;
        max-width: 36px !important;
        max-height: 36px !important;
        flex: 0 0 36px !important;
    }

    .goat-sp-standings-shortcode table tbody tr {
        height: 52px;
    }
}

@media (max-width: 640px) {

    .goat-sp-standings-shortcode h1:first-child,
    .goat-sp-standings-shortcode h2:first-child,
    .goat-sp-standings-shortcode h3:first-child,
    .goat-sp-standings-shortcode h4:first-child,
    .goat-sp-standings-shortcode .sp-table-caption,
    .goat-sp-standings-shortcode .sp-template-title,
    .goat-sp-standings-shortcode .sp-data-table-caption,
    .goat-sp-standings-shortcode caption,
    .goat-sp-standings-shortcode table caption {
        min-height: 54px;
        padding: 14px 12px;
        font-size: clamp(0.86rem, 4vw, 1.05rem);
        line-height: 1.18;
    }
}

@media (max-width: 480px) {
    .team-score {
        font-size: 2.5rem;
    }

    .team-details h2 {
        font-size: 1.2rem;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .qa-btn:nth-child(3) {
        grid-column: span 1;
    }

    .gc-teams-labels {
        font-size: 0.9rem;
    }

    .stat-val {
        font-size: 1rem;
    }

    .sponsor-placeholder {
        width: 100%;
        height: 60px;
    }

    /* Standings logos 480px */
    .goat-sp-standings-shortcode table tbody tr td:nth-child(2) img {
        width: 30px !important;
        height: 30px !important;
        max-width: 30px !important;
        max-height: 30px !important;
        flex: 0 0 30px !important;
    }

    .goat-sp-standings-shortcode table tbody tr {
        height: 46px;
    }
}

@media (max-width: 390px) {

    .goat-sp-standings-shortcode h1:first-child,
    .goat-sp-standings-shortcode h2:first-child,
    .goat-sp-standings-shortcode h3:first-child,
    .goat-sp-standings-shortcode h4:first-child,
    .goat-sp-standings-shortcode .sp-table-caption,
    .goat-sp-standings-shortcode .sp-template-title,
    .goat-sp-standings-shortcode .sp-data-table-caption,
    .goat-sp-standings-shortcode caption,
    .goat-sp-standings-shortcode table caption {
        font-size: 0.82rem;
        padding-inline: 10px;
    }
}