body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f9f9f9;
        }
        header {
            background-color: #FF5722;
            color: white;
            padding: 15px 0;
            text-align: center;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 10px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            position: absolute;
            right: 20px;
            top: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                align-items: center;
                background-color: #E64A19;
                width: 100%;
                position: absolute;
                top: 70px;
                left: 0;
                padding: 10px 0;
            }
            nav.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
        }
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }
        h1, h2, h3 {
            color: #E64A19;
            margin-top: 30px;
        }
        h1 {
            font-size: 32px;
            border-bottom: 2px solid #FF5722;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 24px;
            margin-top: 40px;
        }
        h3 {
            font-size: 20px;
            margin-top: 30px;
        }
        .btn {
            display: inline-block;
            background-color: #FF5722;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            margin: 10px 0;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .btn:hover {
            background-color: #E64A19;
        }
        .download-btn {
            background-color: #4CAF50;
        }
        .download-btn:hover {
            background-color: #45a049;
        }
        .login-btn {
            background-color: #2196F3;
        }
        .login-btn:hover {
            background-color: #0b7dda;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 8px;
        }
        .game-stats {
            background-color: #f1f1f1;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        .player-review {
            border-left: 4px solid #FF5722;
            padding-left: 15px;
            margin: 20px 0;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px 0;
            margin-top: 40px;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: white;
            text-decoration: none;
        }
        .copyright {
            font-size: 14px;
            margin-top: 10px;
        }
