:root {
            --primary-color: #2c3e50;
            --secondary-color: #e74c3c;
            --accent-color: #f1c40f;
            --text-color: #333;
            --bg-color: #f9f9f9;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-color);
            margin: 0;
            padding: 0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            text-decoration: none;
            color: white;
        }
        .nav-links {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--primary-color);
            flex-direction: column;
            padding: 10px 0;
        }
        .mobile-menu a {
            color: white;
            padding: 10px 20px;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: #666;
        }
        .breadcrumb a {
            color: var(--secondary-color);
            text-decoration: none;
        }
        h1 {
            color: var(--primary-color);
            margin-top: 30px;
        }
        h2 {
            color: var(--secondary-color);
            margin-top: 25px;
        }
        h3 {
            color: var(--accent-color);
            margin-top: 20px;
        }
        .content-section {
            margin-bottom: 40px;
        }
        .game-image {
            width: 100%;
            max-width: 800px;
            margin: 20px auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .strategy-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background-color: white;
        }
        .strategy-table th, .strategy-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        .strategy-table th {
            background-color: var(--primary-color);
            color: white;
        }
        .strategy-table tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        .player-quote {
            background-color: #f8f9fa;
            border-left: 4px solid var(--secondary-color);
            padding: 15px 20px;
            margin: 20px 0;
            font-style: italic;
        }
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 30px 0 10px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .footer-section {
            flex: 1;
            min-width: 200px;
            margin-bottom: 20px;
        }
        .footer-section h3 {
            color: white;
            margin-bottom: 15px;
        }
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.8rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .nav-links {
                flex-direction: column;
                align-items: flex-start;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .desktop-menu {
                display: none;
            }
            .mobile-menu.active {
                display: flex;
            }
            .content-section {
                margin-bottom: 30px;
            }
        }
