body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: linear-gradient(135deg, #FF6B35, #FF8E53); color: white; padding: 20px; border-radius: 10px; margin-bottom: 30px; }
        .logo { font-size: 2.5em; 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 { display: none; }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-nav { display: block; background: #333; color: white; padding: 10px; text-align: center; }
            body { padding: 10px; }
        }
        h1 { color: #FF6B35; margin-bottom: 20px; }
        h2 { color: #FF8E53; border-bottom: 2px solid #FF6B35; padding-bottom: 5px; margin-top: 30px; }
        h3 { color: #555; }
        .download-btn { background: #4CAF50; color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; display: inline-block; margin: 15px 0; }
        .login-btn { background: #2196F3; color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; display: inline-block; margin: 15px 0; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { background: #333; color: white; padding: 20px; margin-top: 40px; border-radius: 5px; }
        .tag { background: #555; color: white; padding: 5px 10px; border-radius: 15px; margin: 5px; display: inline-block; }
