body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f5f5f5;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            background-color: #ff6b35;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }
        nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        nav ul li {
            margin-left: 20px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        h1 {
            color: #ff6b35;
            margin-top: 30px;
        }
        h2 {
            color: #4a4a4a;
            margin-top: 25px;
        }
        h3 {
            color: #6b6b6b;
            margin-top: 20px;
        }
        .game-buttons {
            margin: 20px 0;
        }
        .game-buttons a {
            display: inline-block;
            background-color: #ff6b35;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            margin-right: 15px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .game-buttons a:hover {
            background-color: #e05520;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 8px;
        }
        .game-stats {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .player-review {
            background-color: #f9f9f9;
            padding: 15px;
            border-left: 4px solid #ff6b35;
            margin: 15px 0;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 30px 0;
            margin-top: 40px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .footer-links div {
            flex: 1;
            min-width: 200px;
            margin-bottom: 15px;
        }
        .footer-links h3 {
            color: white;
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            display: block;
            margin-bottom: 5px;
        }
        .footer-links a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                padding: 10px 20px;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 15px;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
                text-align: center;
            }
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .game-buttons a {
                display: block;
                margin-bottom: 10px;
                text-align: center;
            }
        }
