body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: linear-gradient(135deg, #1e3c72, #2a5298); color: white; padding: 20px; border-radius: 10px; margin-bottom: 30px; }
        .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
        nav { display: flex; justify-content: space-between; align-items: center; }
        .mobile-menu-btn { display: none; background: #fff; color: #1e3c72; border: none; padding: 8px 15px; border-radius: 5px; cursor: pointer; }
        .nav-links { display: flex; gap: 20px; }
        .nav-links a { color: white; text-decoration: none; font-weight: 500; }
        h1 { color: #1e3c72; margin-bottom: 20px; }
        h2 { color: #2a5298; margin: 25px 0 15px; }
        h3 { color: #4a6fa5; margin: 20px 0 10px; }
        .btn { display: inline-block; background: #ff6b35; color: white; padding: 12px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; margin: 10px 0; }
        .download-btn { background: #4CAF50; }
        .login-btn { background: #2196F3; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; border-radius: 10px; }
        footer { background: #f5f5f5; padding: 20px; margin-top: 40px; border-radius: 10px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background: #e0e0e0; padding: 5px 10px; border-radius: 20px; margin-right: 10px; margin-bottom: 10px; text-decoration: none; color: #333; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; width: 100%; }
            .nav-links.active { display: flex; }
            .mobile-menu-btn { display: block; }
            header { padding: 15px; }
            .logo { font-size: 24px; }
        }
