body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        .logo { font-size: 2.5em; font-weight: bold; color: #FF9900; text-align: center; margin: 20px 0; }
        nav { background: #333; padding: 10px; }
        nav ul { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; }
        nav ul li { margin: 0 15px; }
        nav ul li a { color: white; text-decoration: none; }
        .mobile-nav-toggle { display: none; }
        @media (max-width: 768px) {
            .mobile-nav-toggle { display: block; background: #FF9900; color: white; border: none; padding: 10px; cursor: pointer; }
            nav ul { display: none; flex-direction: column; }
            nav ul.active { display: flex; }
        }
        .download-btn { display: inline-block; background: #4CAF50; color: white; padding: 12px 24px; margin: 15px 0; border-radius: 5px; text-decoration: none; }
        .login-btn { display: inline-block; background: #2196F3; color: white; padding: 12px 24px; margin: 15px 0; border-radius: 5px; text-decoration: none; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; }
        footer { background: #333; color: white; padding: 20px; text-align: center; margin-top: 30px; }
        .tags { margin: 20px 0; }
        .tag { background: #666; color: white; padding: 5px 10px; margin: 5px; display: inline-block; border-radius: 3px; }
