body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #FFF9E6;
        }
        header {
            background-color: #FF6B35;
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }
        .game-info {
            background-color: #FFF;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .download-btn {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 12px 24px;
            text-align: center;
            border-radius: 5px;
            margin: 10px 0;
            text-decoration: none;
            font-weight: bold;
        }
        .login-btn {
            display: inline-block;
            background-color: #2196F3;
            color: white;
            padding: 12px 24px;
            text-align: center;
            border-radius: 5px;
            margin: 10px 0;
            text-decoration: none;
            font-weight: bold;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            margin-top: 30px;
        }
        @media (max-width: 768px) {
            .mobile-nav-toggle {
                display: block;
            }
            nav ul {
                display: none;
            }
            nav.active ul {
                display: block;
            }
        }
