﻿    /* Match Details Specific Styles - Common styles moved to common.css */

    .match-header-section {
        background: white;
        border-radius: 12px;
        padding: 32px;
        margin-bottom: 32px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .match-title-bar {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 24px;
        flex-wrap: wrap;
    }

    .btn-back-link svg {
        width: 16px;
        height: 16px;
    }

    /* Watch Live CTA button */
    .live-watch-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        color: #fff;
        padding: 8px 20px;
        border-radius: 100px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-decoration: none;
        text-transform: uppercase;
        box-shadow: 0 2px 12px rgba(239, 68, 68, 0.4);
        transition: box-shadow 0.2s, transform 0.15s;
        white-space: nowrap;
    }

    .live-watch-btn:hover {
        box-shadow: 0 4px 20px rgba(239, 68, 68, 0.55);
        transform: translateY(-1px);
        color: #fff;
        text-decoration: none;
    }

    .live-watch-btn:active {
        transform: translateY(0);
    }

    .live-watch-btn .live-dot {
        width: 8px;
        height: 8px;
        background: #fff;
        border-radius: 50%;
        flex-shrink: 0;
        animation: matchLivePulse 1.5s ease-in-out infinite;
    }

    @keyframes matchLivePulse {
        0%, 100% { opacity: 1; transform: scale(1); }
        50%       { opacity: 0.4; transform: scale(0.75); }
    }

    /* Watch-live icon (broadcast svg) */
    .live-watch-btn svg {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
    }

    .match-title-bar h1 {
        flex: 1;
        font-size: 32px;
        font-weight: 700;
        color: #2d3748;
        margin: 0;
    }

    .match-title-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .match-meta-info {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        margin-bottom: 32px;
        padding-bottom: 24px;
        border-bottom: 1px solid #e2e8f0;
    }

    .meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #4a5568;
        font-size: 14px;
    }

    .meta-item svg {
        width: 18px;
        height: 18px;
        color: #718096;
    }

    .match-score-summary {
        display: flex;
        align-items: center;
        gap: 24px;
        justify-content: center;
    }

    .team-score-card {
        flex: 1;
        max-width: 400px;
        background: #f7fafc;
        border-radius: 12px;
        padding: 24px;
        text-align: center;
        border: 3px solid transparent;
        transition: all 0.2s;
    }

    .team-score-card.winner {
        background: linear-gradient(135deg, #c6f6d5 0%, #9ae6b4 100%);
        border-color: #48bb78;
    }

    .team-name {
        font-size: 20px;
        font-weight: 600;
        color: #2d3748;
        margin-bottom: 12px;
    }

    .team-score {
        font-size: 48px;
        font-weight: 700;
        color: #2d3748;
        margin-bottom: 8px;
    }

    .team-points {
        font-size: 14px;
        color: #4a5568;
    }

    .versus-separator {
        font-size: 24px;
        font-weight: 700;
        color: #a0aec0;
    }

    .bye-indicator {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 24px;
        color: #718096;
    }

    .bye-indicator svg {
        width: 48px;
        height: 48px;
    }

    .games-section {
        margin-top: 32px;
    }

    .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
    }

    .section-header h2 {
        font-size: 24px;
        font-weight: 600;
        color: #2d3748;
        margin: 0;
    }

    .view-options {
        display: flex;
        gap: 16px;
    }

    .toggle-label {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        user-select: none;
    }

    .toggle-label input[type="checkbox"] {
        cursor: pointer;
    }

    .empty-state {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 40px;
        background: #f7fafc;
        border-radius: 12px;
        border: 2px dashed #e2e8f0;
    }

    .empty-state svg {
        width: 48px;
        height: 48px;
        color: #cbd5e0;
        margin-bottom: 16px;
    }

    .empty-state p {
        font-size: 16px;
        color: #718096;
        margin: 0;
    }

    @media (max-width: 768px) {
        .match-header-section {
            padding: 20px;
        }

        .match-title-bar h1 {
            font-size: 24px;
        }

        .match-score-summary {
            flex-direction: row;
            gap:0px;
        }

        .team-score-card {
            max-width: 100%;
        }

        .section-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
    }

