body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f5f5f5; }
        header { background-color: #FF9933; color: white; padding: 10px 0; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-shadow: 2px 2px 4px #000000; }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-menu-btn { display: none; background: #000; color: white; border: none; padding: 5px 10px; position: absolute; right: 10px; top: 10px; }
        .container { max-width: 1200px; margin: 20px auto; padding: 0 20px; background: white; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
        h1, h2, h3 { color: #FF9933; }
        h1 { font-size: 2.5em; margin-bottom: 20px; }
        h2 { font-size: 1.8em; margin: 30px 0 15px; }
        h3 { font-size: 1.4em; margin: 20px 0 10px; }
        p { margin-bottom: 15px; }
        .download-btn, .login-btn { display: inline-block; background: #FF9933; color: white; padding: 10px 20px; text-decoration: none; font-weight: bold; border-radius: 5px; margin: 10px 0; }
        .image-container { text-align: center; margin: 20px 0; }
        .image-container img { max-width: 100%; height: auto; border-radius: 8px; }
        footer { background: #333; color: white; text-align: center; padding: 20px 0; margin-top: 30px; }
        .game-types, .tags { margin: 20px 0; }
        .game-types a, .tags a { color: #FF9933; text-decoration: none; margin: 0 5px; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            .mobile-menu-btn { display: block; }
            .show-nav { display: flex; }
            h1 { font-size: 2em; }
            h2 { font-size: 1.5em; }
        }
