:root {
            --primary-color: #FF6B35;
            --secondary-color: #1A1A2E;
            --accent-color: #16213E;
            --text-color: #F9F9F9;
            --heading-color: #E94560;
        }
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--secondary-color);
            margin: 0;
            padding: 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: var(--accent-color);
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
        }
        .nav-menu {
            display: flex;
            list-style: none;
        }
        .nav-menu li {
            margin-left: 20px;
        }
        .nav-menu a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--primary-color);
            font-size: 1.5rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: #ccc;
        }
        .breadcrumb a {
            color: var(--primary-color);
            text-decoration: none;
        }
        h1 {
            color: var(--heading-color);
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
        }
        h2 {
            color: var(--primary-color);
            font-size: 2rem;
            margin: 30px 0 15px;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 5px;
        }
        h3 {
            color: #FF8C42;
            font-size: 1.5rem;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 15px;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            margin: 20px auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .highlight {
            background-color: rgba(255, 107, 53, 0.1);
            padding: 15px;
            border-left: 4px solid var(--primary-color);
            margin: 20px 0;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background-color: var(--accent-color);
        }
        .stats-table th, .stats-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #444;
        }
        .stats-table th {
            background-color: var(--primary-color);
            color: white;
        }
        .player-quote {
            font-style: italic;
            border-left: 3px solid var(--primary-color);
            padding-left: 15px;
            margin: 20px 0;
            font-size: 1.1rem;
        }
        footer {
            background-color: var(--accent-color);
            padding: 30px 0 10px;
            margin-top: 40px;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .footer-section {
            margin-bottom: 20px;
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.2rem;
            border-bottom: none;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: var(--text-color);
            text-decoration: none;
        }
        .copyright {
            text-align: center;
            padding: 15px 0;
            border-top: 1px solid #444;
            font-size: 0.8rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 80px;
                left: 0;
                background-color: var(--accent-color);
                padding: 20px 0;
            }
            .nav-menu.active {
                display: flex;
            }
            .nav-menu li {
                margin: 10px 0;
                text-align: center;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
        }
