body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; background-color: #f9f9f9; margin: 0; padding: 0; }
        header { background-color: #1a237e; color: white; padding: 15px 0; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; }
        .mobile-toggle { display: none; position: absolute; top: 15px; right: 15px; cursor: pointer; }
        @media (max-width: 768px) {
            nav { display: none; flex-direction: column; align-items: center; }
            nav.active { display: flex; }
            .mobile-toggle { display: block; }
        }
        .container { max-width: 1200px; margin: 20px auto; padding: 0 20px; }
        h1, h2, h3 { color: #1a237e; }
        h1 { font-size: 2.5em; margin-bottom: 20px; }
        h2 { font-size: 2em; margin: 30px 0 15px; }
        h3 { font-size: 1.5em; margin: 25px 0 10px; }
        .download-btn, .login-btn { display: inline-block; background-color: #ff5722; color: white; padding: 10px 20px; margin: 10px 0; text-decoration: none; border-radius: 5px; font-weight: bold; }
        .download-btn:hover, .login-btn:hover { background-color: #e64a19; }
        img { max-width: 100%; height: auto; margin: 20px 0; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #e3f2fd; color: #1a237e; padding: 5px 10px; margin-right: 5px; border-radius: 3px; text-decoration: none; }
        footer { background-color: #1a237e; color: white; text-align: center; padding: 20px 0; margin-top: 30px; }
        .game-types { margin: 20px 0; }
        .game-type { display: inline-block; margin-right: 10px; }
        .game-type a { color: #ff5722; text-decoration: none; }
