
        /* CSS Variables for Brand Theme */
        :root {
            --primary: #d20a11;
            --primary-dark: #930006;
            --background: #000000;
            --surface: #121212;
            --surface-variant: #1a1a1a;
            --outline: #333333;
            --on-surface: #ffffff;
            --on-surface-variant: #a0a0a0;
            --margin-desktop: 64px;
            --margin-mobile: 20px;
            --gutter: 16px;
        }

        .sting-page-schedule, .sting-page-schedule * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .sting-page-schedule {
            background-color: var(--background);
            color: var(--on-surface);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        /* Utility Classes */
        .sting-page-schedule .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
            vertical-align: middle;
        }

        .sting-page-schedule .container {
            max-width: 1440px;
            margin: 0 auto;
            padding-left: var(--margin-desktop);
            padding-right: var(--margin-desktop);
        }

        @media (max-width: 768px) {
            .sting-page-schedule .container {
                padding-left: var(--margin-mobile);
                padding-right: var(--margin-mobile);
            }
        }

        .sting-page-schedule .uppercase { text-transform: uppercase; }
        .sting-page-schedule .italic { font-style: italic; }
        .sting-page-schedule .text-primary { color: var(--primary); }
        .sting-page-schedule .bg-primary { background-color: var(--primary); }
        .sting-page-schedule .border-outline { border: 1px solid var(--outline); }

        /* Navigation */
        .sting-page-schedule header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 50;
            background-color: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--outline);
        }

        .sting-page-schedule nav {
            display: flex;
            justify-content: space-between;
            items-center: center;
            height: 80px;
            align-items: center;
        }

        .sting-page-schedule .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .sting-page-schedule .nav-logo img {
            height: 40px;
            width: auto;
        }

        .sting-page-schedule .brand-name {
            font-size: 24px;
            font-weight: 900;
            letter-spacing: -0.02em;
        }

        .sting-page-schedule .nav-links {
            display: flex;
            gap: 32px;
        }

        @media (max-width: 1024px) {
            .sting-page-schedule .nav-links { display: none; }
        }

        .sting-page-schedule .nav-links a {
            color: var(--on-surface);
            text-decoration: none;
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.1em;
            transition: color 0.2s;
        }

        .sting-page-schedule .nav-links a.active {
            color: var(--primary);
            border-bottom: 2px solid var(--primary);
            padding-bottom: 4px;
        }

        .sting-page-schedule .btn-support {
            background-color: var(--primary);
            color: white;
            padding: 12px 24px;
            border: none;
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
        }

        .sting-page-schedule .btn-support:hover {
            background-color: var(--primary-dark);
        }

        .sting-page-schedule .btn-support:active {
            transform: scale(0.95);
        }

        /* Hero */
        .sting-page-schedule main { padding-top: 80px; }

        .sting-page-schedule .hero {
            position: relative;
            height: 35vh;
            display: flex;
            align-items: flex-end;
            padding-bottom: 48px;
            margin-bottom: 48px;
            border-bottom: 1px solid var(--outline);
        }

        .sting-page-schedule .hero h1 {
            font-size: 72px;
            font-weight: 900;
            letter-spacing: -0.04em;
            line-height: 1.0;
        }

        .sting-page-schedule .hero p {
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            color: var(--on-surface-variant);
            margin-top: 8px;
        }

        @media (max-width: 768px) {
            .sting-page-schedule .hero h1 { font-size: 48px; }
        }

        /* Controls */
        .sting-page-schedule .controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .sting-page-schedule .filter-buttons {
            display: flex;
            gap: 16px;
        }

        .sting-page-schedule .btn-filter {
            padding: 8px 24px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            cursor: pointer;
            border: 1px solid var(--outline);
            background: transparent;
            color: var(--on-surface-variant);
            transition: all 0.2s;
        }

        .sting-page-schedule .btn-filter.active {
            background-color: var(--primary);
            border-color: var(--primary);
            color: white;
        }

        .sting-page-schedule .legend {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            color: var(--on-surface-variant);
        }

        .sting-page-schedule .dot {
            width: 12px;
            height: 12px;
            background-color: var(--primary);
        }

        /* Table Grid */
        .sting-page-schedule .schedule-table {
            width: 100%;
            border-top: 1px solid var(--outline);
        }

        .sting-page-schedule .table-header {
            display: grid;
            grid-template-columns: 2fr 1fr 4fr 3fr 2fr;
            background-color: var(--surface);
            padding: 24px;
            border-bottom: 1px solid var(--outline);
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            color: var(--on-surface-variant);
        }

        @media (max-width: 768px) {
            .sting-page-schedule .table-header { display: none; }
        }

        .sting-page-schedule .game-row {
            display: grid;
            grid-template-columns: 2fr 1fr 4fr 3fr 2fr;
            padding: 24px;
            border-bottom: 1px solid var(--outline);
            align-items: center;
            transition: background-color 0.2s;
            position: relative;
        }

        .sting-page-schedule .game-row:hover {
            background-color: var(--surface-variant);
        }

        .sting-page-schedule .game-row.rivalry {
            border-bottom-color: rgba(210, 10, 17, 0.3);
        }

        .sting-page-schedule .game-row.rivalry::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background-color: var(--primary);
        }

        @media (max-width: 768px) {
            .sting-page-schedule .game-row {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        .sting-page-schedule .date-time .date {
            font-size: 24px;
            font-weight: 700;
        }

        .sting-page-schedule .date-time .time {
            color: var(--primary);
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            margin-top: 4px;
        }

        .sting-page-schedule .tag {
            padding: 4px 12px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            font-weight: 700;
            width: fit-content;
        }

        .sting-page-schedule .tag-home { background-color: white; color: black; }
        .sting-page-schedule .tag-away { border: 1px solid var(--outline); color: var(--on-surface-variant); }

        .sting-page-schedule .opponent {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .sting-page-schedule .opp-logo {
            width: 48px;
            height: 48px;
            background-color: var(--surface);
            border: 1px solid var(--outline);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px;
        }

        .sting-page-schedule .opp-logo img { max-width: 100%; max-height: 100%; }

        .sting-page-schedule .opp-name { font-size: 20px; font-weight: 700; }
        .sting-page-schedule .opp-type { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--on-surface-variant); }

        .sting-page-schedule .venue {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--on-surface);
        }

        .sting-page-schedule .actions {
            display: flex;
            justify-content: flex-end;
            gap: 12px;
        }

        @media (max-width: 768px) {
            .sting-page-schedule .actions { justify-content: flex-start; }
        }

        .sting-page-schedule .btn-action {
            border: 1px solid var(--outline);
            background: transparent;
            color: white;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            transition: all 0.2s;
        }

        .sting-page-schedule .btn-action:hover {
            background-color: white;
            color: black;
        }

        .sting-page-schedule .btn-action.primary-action {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .sting-page-schedule .btn-action.primary-action:hover {
            background-color: var(--primary-dark);
            color: white;
        }

        /* Impact Stats */
        .sting-page-schedule .stats-section {
            margin-top: 96px;
        }

        .sting-page-schedule .section-title {
            font-size: 48px;
            font-weight: 800;
            border-left: 8px solid var(--primary);
            padding-left: 24px;
            margin-bottom: 32px;
        }

        .sting-page-schedule .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border: 1px solid var(--outline);
        }

        @media (max-width: 768px) {
            .sting-page-schedule .stats-grid { grid-template-columns: 1fr 1fr; }
        }

        .sting-page-schedule .stat-card {
            aspect-ratio: 1/1;
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-right: 1px solid var(--outline);
        }

        .sting-page-schedule .stat-card:last-child { border-right: none; }

        .sting-page-schedule .stat-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 12px;
            color: var(--on-surface-variant);
        }

        .sting-page-schedule .stat-value {
            font-size: 32px;
            font-weight: 900;
        }

        .sting-page-schedule .bg-card-alt { background-color: var(--surface); }
        .sting-page-schedule .bg-card-black { background-color: black; }
        .sting-page-schedule .bg-card-primary { background-color: var(--primary); }

        .sting-page-schedule .stat-card.bg-card-primary .stat-label { color: rgba(255, 255, 255, 0.7); }
        .sting-page-schedule .stat-card.bg-card-primary .stat-value { font-size: 64px; }

        /* Tactical Section */
        .sting-page-schedule .tactical-section {
            background-color: var(--surface);
            padding: 96px 0;
            border-top: 1px solid var(--outline);
            margin-top: 96px;
        }

        .sting-page-schedule .tactical-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 96px;
            align-items: center;
        }

        @media (max-width: 1024px) {
            .sting-page-schedule .tactical-grid { grid-template-columns: 1fr; gap: 48px; }
        }

        .sting-page-schedule .tactical-content h3 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 24px;
        }

        .sting-page-schedule .tactical-content p {
            font-size: 18px;
            color: var(--on-surface-variant);
            margin-bottom: 32px;
        }

        .sting-page-schedule .info-item {
            display: flex;
            gap: 16px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--outline);
            margin-bottom: 24px;
        }

        .sting-page-schedule .info-item .icon { color: var(--primary); margin-top: 4px; }

        .sting-page-schedule .info-title { font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700; }
        .sting-page-schedule .info-desc { font-size: 16px; color: var(--on-surface-variant); margin-top: 4px; }

        .sting-page-schedule .arena-visual {
            position: relative;
            height: 400px;
            border: 1px solid var(--outline);
            overflow: hidden;
        }

        .sting-page-schedule .arena-img {
            width: 100%;
            height: 100%;
            background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuB2balWVd3j0GLmoc8qJ6LyIfVFCvi8QbeCGXZLZJMinidXuG2XCyQnuUFZkszn0XqFMYubTLbzY-XcRsfnla4uumSkiReQDbzIyGUxfTPn081Jwve8CL6l7XEEuaN_xgoUC0wb2RROOAslrw9YF0vTRzO6-G3sWKFMbg1yLCM4QdEjV5jsudqjkCVSwtcFUBfQFWHKnHFAblSSdneb9Rg5FVh8dNxAlztSQ8LGGSv9zn8s2I2WPlRNH6N_4TSOaVmHPL03vwoTNqpY');
            background-size: cover;
            background-position: center;
            filter: grayscale(1);
            transition: filter 0.7s;
        }

        .sting-page-schedule .arena-visual:hover .arena-img { filter: grayscale(0); }

        .sting-page-schedule .arena-overlay {
            position: absolute;
            inset: 0;
            background-color: rgba(210, 10, 17, 0.2);
            pointer-events: none;
        }

        .sting-page-schedule .arena-label {
            position: absolute;
            bottom: 24px;
            left: 24px;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(4px);
            padding: 16px 24px;
            border: 1px solid var(--outline);
        }

        /* Footer */
        .sting-page-schedule footer {
            padding: 64px 0;
            border-top: 1px solid var(--outline);
        }

        .sting-page-schedule .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        @media (max-width: 768px) {
            .sting-page-schedule .footer-content { flex-direction: column; gap: 32px; }
        }

        .sting-page-schedule .footer-left { display: flex; align-items: center; gap: 40px; }
        @media (max-width: 768px) { .sting-page-schedule .footer-left { flex-direction: column; text-align: center; gap: 24px; } }

        .sting-page-schedule .footer-left img { height: 48px; opacity: 0.8; transition: opacity 0.2s; }
        .sting-page-schedule .footer-left img:hover { opacity: 1; }

        .sting-page-schedule .copyright {
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            color: var(--on-surface-variant);
            letter-spacing: 0.1em;
            text-align: right;
        }
        @media (max-width: 768px) { .sting-page-schedule .copyright { text-align: center; } }
    