/* ============================================
   LIVE GAME PAGE - GAME DAY EXPERIENCE
   ============================================ */

:root {
    --predators-gold: #FFB81C;
    --predators-navy: #041E42;
    --win-green: #10b981;
    --loss-red: #ef4444;
    --live-red: #dc2626;
}

.page-live {
    background: #EDEEF0;
    min-height: 100vh;
}

/* ============================================
   GAME HEADER
   ============================================ */

.live-game-header {
    background: var(--predators-navy);
    color: white;
    padding: var(--space-4) var(--space-6);
    text-align: center;
}

.live-header-content {
    max-width: var(--container-2xl);
    margin: 0 auto;
}

.game-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.game-status-badge.live {
    background: var(--live-red);
    animation: pulse-live 2s infinite;
}

.game-status-badge.live::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes pulse-live {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.game-status-badge.upcoming {
    background: var(--predators-gold);
    color: var(--predators-navy);
}

.game-status-badge.final {
    background: rgba(255, 255, 255, 0.2);
}

.game-status-badge.win {
    background: var(--win-green);
}

.game-status-badge.loss {
    background: var(--loss-red);
}

/* ============================================
   GAME SECTION
   ============================================ */

.live-game-section {
    max-width: 900px;  /* Tighter width for better visual balance */
    margin: 0 auto;
    padding: var(--space-4);
}

@media (min-width: 768px) {
    .live-game-section {
        padding: var(--space-6);
    }
}

.live-game-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Loading State */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 16px;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--predators-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    color: #6b7280;
    font-size: 14px;
}

/* ============================================
   SCORE DISPLAY
   ============================================ */

.game-content {
    padding: var(--space-6);
}

.score-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    padding: var(--space-6) var(--space-4);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    margin-bottom: var(--space-6);
}

.team-score {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.team-score .team-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.team-score .team-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.team-score .team-abbrev {
    font-size: 24px;
    font-weight: 800;
    color: var(--predators-navy);
}

.team-score .team-record {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.team-score .score {
    font-size: 56px;
    font-weight: 900;
    color: var(--predators-navy);
    line-height: 1;
    min-width: 60px;
    text-align: center;
}

.team-score.away-team {
    flex-direction: row;
}

.team-score.home-team {
    flex-direction: row-reverse;
}

.team-score.home-team .team-info {
    text-align: right;
}

/* Game Center */
.game-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: 0 var(--space-6);
    min-width: 120px;
}

.period-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.period-time .period {
    font-size: 16px;
    font-weight: 700;
    color: var(--predators-navy);
    text-transform: uppercase;
}

.period-time .time {
    font-size: 28px;
    font-weight: 800;
    color: var(--predators-navy);
    font-variant-numeric: tabular-nums;
}

.venue-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
}

.venue-info .venue {
    font-size: 12px;
    color: #6b7280;
}

.venue-info .broadcast {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
}

/* ============================================
   COUNTDOWN TIMER
   ============================================ */

.game-countdown {
    text-align: center;
    padding: var(--space-6);
    background: linear-gradient(135deg, var(--predators-navy) 0%, #0a2d5a 100%);
    border-radius: 12px;
    margin-bottom: var(--space-6);
}

.game-countdown h3 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-4);
    opacity: 0.8;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.time-unit .value {
    font-size: 48px;
    font-weight: 900;
    color: var(--predators-gold);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.time-unit .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ============================================
   GAME STATS
   ============================================ */

.game-stats {
    padding: var(--space-6);
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: var(--space-6);
}

.game-stats h3 {
    color: var(--predators-navy);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.stat-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-3) 0;
    border-bottom: 1px solid #e5e7eb;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row .away-stat,
.stat-row .home-stat {
    font-size: 18px;
    font-weight: 700;
    color: var(--predators-navy);
}

.stat-row .away-stat {
    text-align: left;
}

.stat-row .home-stat {
    text-align: right;
}

.stat-row .stat-label {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   GOAL FEED
   ============================================ */

.goal-feed {
    padding: var(--space-6);
    background: white;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    margin-bottom: var(--space-6);
}

.goal-feed h3 {
    color: var(--predators-navy);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.goals-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3);
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #6b7280;
}

.goal-item.nsh {
    border-left-color: var(--predators-gold);
    background: rgba(255, 184, 28, 0.1);
}

.goal-item .goal-team-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.goal-item .goal-info {
    flex: 1;
}

.goal-item .goal-scorer {
    font-size: 14px;
    font-weight: 700;
    color: var(--predators-navy);
    margin-bottom: 2px;
}

.goal-item .goal-assists {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
}

.goal-item .goal-time {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
}

.no-goals-message {
    text-align: center;
    padding: var(--space-6);
    color: #6b7280;
    font-style: italic;
}

/* Period Header */
.period-header {
    font-size: 12px;
    font-weight: 700;
    color: var(--predators-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: var(--space-2) 0;
    border-bottom: 2px solid var(--predators-navy);
    margin-top: var(--space-4);
    margin-bottom: var(--space-3);
}

.period-header:first-child {
    margin-top: 0;
}

/* ============================================
   GAME PREVIEW (UPCOMING)
   ============================================ */

.game-preview {
    padding: var(--space-6);
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: var(--space-6);
}

.game-preview h3 {
    color: var(--predators-navy);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3);
    background: white;
    border-radius: 8px;
}

.preview-item .label {
    font-size: 13px;
    color: #6b7280;
}

.preview-item .value {
    font-size: 14px;
    font-weight: 600;
    color: var(--predators-navy);
}

/* ============================================
   NO GAME MESSAGE
   ============================================ */

.no-game-message {
    text-align: center;
    padding: var(--space-10) var(--space-6);
}

.no-game-icon {
    color: #9ca3af;
    margin-bottom: var(--space-4);
}

.no-game-message h2 {
    color: var(--predators-navy);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.no-game-message p {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: var(--space-6);
}

.view-schedule-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--predators-gold);
    color: var(--predators-navy);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.view-schedule-btn:hover {
    background: #ffcc4d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 184, 28, 0.4);
}

/* ============================================
   FINAL SUMMARY
   ============================================ */

.final-summary {
    padding: var(--space-6);
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: var(--space-6);
}

.final-summary h3 {
    color: var(--predators-navy);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.final-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3);
    background: white;
    border-radius: 8px;
}

.final-stat-row .label {
    font-size: 13px;
    color: #6b7280;
}

.final-stat-row .value {
    font-size: 14px;
    font-weight: 600;
    color: var(--predators-navy);
}

.recap-link {
    margin-top: var(--space-4);
    text-align: center;
}

.read-recap-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--predators-navy);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.read-recap-btn:hover {
    background: #0a2d5a;
    transform: translateY(-2px);
}

/* ============================================
   QUICK LINKS
   ============================================ */

.quick-links-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-4) var(--space-6);
}

@media (min-width: 768px) {
    .quick-links-section {
        padding: 0 var(--space-6) var(--space-8);
    }
}

.quick-links-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-5);
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: all 0.2s ease;
}

.quick-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.quick-link svg {
    color: var(--predators-gold);
    stroke: currentColor;
}

.quick-link span {
    font-size: 13px;
    font-weight: 600;
    color: var(--predators-navy);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .live-game-section {
        padding: var(--space-4);
    }

    .game-content {
        padding: var(--space-4);
    }

    .score-display {
        flex-direction: column;
        gap: var(--space-4);
        padding: var(--space-4);
    }

    .team-score {
        width: 100%;
        justify-content: space-between;
    }

    .team-score.away-team,
    .team-score.home-team {
        flex-direction: row;
    }

    .team-score.home-team .team-info {
        text-align: left;
    }

    .team-score .team-logo {
        width: 60px;
        height: 60px;
    }

    .team-score .team-abbrev {
        font-size: 20px;
    }

    .team-score .score {
        font-size: 42px;
    }

    .game-center {
        padding: var(--space-4) 0;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
        width: 100%;
    }

    .period-time .time {
        font-size: 24px;
    }

    .countdown-timer {
        gap: var(--space-2);
    }

    .time-unit {
        min-width: 60px;
    }

    .time-unit .value {
        font-size: 36px;
    }

    .quick-links-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-row {
        gap: var(--space-2);
    }

    .stat-row .away-stat,
    .stat-row .home-stat {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .live-game-section {
        padding: var(--space-3);
    }

    .game-content {
        padding: var(--space-3);
    }

    .team-score .team-logo {
        width: 48px;
        height: 48px;
    }

    .team-score .team-abbrev {
        font-size: 18px;
    }

    .team-score .score {
        font-size: 36px;
        min-width: 45px;
    }

    .time-unit .value {
        font-size: 28px;
    }

    .time-unit .label {
        font-size: 10px;
    }

    .quick-links-section {
        padding: 0 var(--space-3) var(--space-6);
    }

    .quick-link {
        padding: var(--space-4);
    }

    .quick-link span {
        font-size: 12px;
    }
}

/* ============================================
   NEXT GAME CARD (for no game state)
   ============================================ */

.next-game-card {
    background: white;
    border-radius: 12px;
    padding: var(--space-6);
    margin-top: var(--space-6);
    border: 2px solid #e5e7eb;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.next-game-card h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--predators-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-3);
}

.next-game-matchup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.next-game-matchup .team-logo {
    width: 48px;
    height: 48px;
}

.next-game-matchup .vs {
    font-size: 14px;
    font-weight: 700;
    color: #6b7280;
}

.next-game-details {
    text-align: center;
}

.next-game-details .date {
    font-size: 16px;
    font-weight: 700;
    color: var(--predators-navy);
    margin-bottom: 4px;
}

.next-game-details .time {
    font-size: 14px;
    color: #6b7280;
}

.next-game-details .venue {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
}

/* ============================================
   COLLAPSIBLE SECTIONS
   ============================================ */

.collapsible-section {
    margin-bottom: var(--space-6);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    border: 2px solid #e5e7eb;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) var(--space-5);
    background: var(--predators-navy);
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}

.section-header:hover {
    background: #0a2d5a;
}

.section-header h3 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.toggle-icon {
    color: var(--predators-gold);
    font-size: 12px;
    transition: transform 0.2s ease;
}

.section-content {
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.section-content.collapsed {
    max-height: 0;
}

/* ============================================
   TEAM TABS
   ============================================ */

.team-tabs {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: #f0f1f3;
    border-bottom: none;
}

.team-tab {
    flex: 1;
    padding: 12px 20px;
    background: white;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.team-tab:hover {
    background: #f8f9fa;
    border-color: var(--predators-navy);
    color: var(--predators-navy);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.team-tab.active {
    background: linear-gradient(135deg, var(--predators-navy) 0%, #0a3a6e 100%);
    border-color: var(--predators-navy);
    color: var(--predators-gold);
    box-shadow: 0 2px 8px rgba(4, 30, 66, 0.3);
}

/* ============================================
   PLAYER STATS CARDS
   ============================================ */

.player-stats-team-header,
.lineups-team-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.team-logo-small {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.player-stats-team-header span,
.lineups-team-header span {
    font-size: 14px;
    font-weight: 700;
    color: var(--predators-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.player-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-3);
    padding: var(--space-4);
}

.player-card {
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.player-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.player-card.goalie {
    border-left: 4px solid var(--predators-gold);
}

.player-header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3);
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.player-number {
    font-size: 14px;
    font-weight: 800;
    color: var(--predators-gold);
    min-width: 36px;
}

.player-name {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: var(--predators-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-position {
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    background: #e5e7eb;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.player-stats-row {
    display: flex;
    justify-content: space-around;
    padding: var(--space-3);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 40px;
}

.stat-item .stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--predators-navy);
}

.stat-item .stat-label {
    font-size: 10px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
}

.goalies-section {
    padding: 0 var(--space-4) var(--space-4);
}

.goalies-section h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--predators-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-3);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid var(--predators-gold);
}

.goalies-section .player-cards-grid {
    padding: 0;
}

.no-data {
    text-align: center;
    padding: var(--space-6);
    color: #6b7280;
    font-style: italic;
}

/* ============================================
   LINEUPS GRID
   ============================================ */

.lineup-position-group {
    padding: var(--space-4);
    border-bottom: 1px solid #e5e7eb;
}

.lineup-position-group:last-child {
    border-bottom: none;
}

.lineup-position-group h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--predators-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-3);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid var(--predators-gold);
}

.lineup-players-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.lineup-player {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.lineup-player:hover {
    background: white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.lineup-number {
    font-size: 13px;
    font-weight: 800;
    color: var(--predators-gold);
}

.lineup-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--predators-navy);
}

/* ============================================
   RESPONSIVE - PLAYER STATS & LINEUPS
   ============================================ */

@media (max-width: 768px) {
    .player-cards-grid {
        grid-template-columns: 1fr;
    }

    .player-stats-row {
        gap: var(--space-2);
    }

    .stat-item {
        min-width: 32px;
    }

    .stat-item .stat-value {
        font-size: 14px;
    }

    .lineup-players-grid {
        gap: var(--space-1);
    }

    .lineup-player {
        padding: 6px 10px;
    }

    .lineup-number,
    .lineup-name {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .section-header {
        padding: var(--space-3) var(--space-4);
    }

    .section-header h3 {
        font-size: 13px;
    }

    .team-tab {
        padding: var(--space-2) var(--space-3);
        font-size: 12px;
    }

    .player-header {
        padding: var(--space-2);
    }

    .player-number {
        font-size: 12px;
        min-width: 30px;
    }

    .player-name {
        font-size: 12px;
    }

    .stat-item .stat-value {
        font-size: 13px;
    }

    .stat-item .stat-label {
        font-size: 9px;
    }
}

/* ============================================
   GAME CHAT CTA BUTTON (TOP)
   ============================================ */

.game-chat-cta {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-3) var(--space-4);
}

.game-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--predators-gold) 0%, #e5a618 100%);
    color: var(--predators-navy);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 184, 28, 0.35);
    transition: all 0.2s ease;
}

.game-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 28, 0.45);
    background: linear-gradient(135deg, #e5a618 0%, var(--predators-gold) 100%);
}

.game-chat-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.game-chat-btn .chat-count {
    background: var(--predators-navy);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    min-width: 28px;
    text-align: center;
}

@media (min-width: 768px) {
    .game-chat-cta {
        padding: var(--space-4) var(--space-6);
    }

    .game-chat-btn {
        padding: 18px 32px;
        font-size: 18px;
        border-radius: 16px;
    }
}

/* ============================================
   GAME CHAT / COMMENTS SECTION (BOTTOM)
   ============================================ */

.page-live .comments-section {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-4);
}

@media (min-width: 768px) {
    .page-live .comments-section {
        padding: var(--space-6);
    }
}

.page-live .comments-header .section-heading {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--predators-navy);
    margin: 0 0 var(--space-5) 0;
    padding-bottom: var(--space-3);
    border-bottom: 3px solid var(--predators-gold);
}

.page-live .comments-list {
    max-height: 500px;
    overflow-y: auto;
    margin-bottom: var(--space-4);
}

.page-live .comment-form-container {
    background: white;
    border-radius: 16px;
    padding: var(--space-5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.page-live .form-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--predators-navy);
    margin: 0 0 var(--space-4) 0;
}

/* Responsive adjustments for game chat */
@media (max-width: 767px) {
    .page-live .comments-list {
        max-height: 400px;
    }
}
