body { font-family: 'Arial', sans-serif; line-height: 1.6; margin: 0; padding: 0; color: #333; background-color: #f5f5f5; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #ff6b00; color: white; padding: 15px 0; text-align: center; position: relative; }
        .logo { font-size: 2.5em; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        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; position: absolute; top: 15px; right: 15px; background: none; border: none; color: white; font-size: 1.5em; }
        h1 { font-size: 2.2em; margin-top: 0; color: #ff6b00; }
        h2 { font-size: 1.8em; color: #e74c3c; margin-top: 30px; }
        h3 { font-size: 1.4em; color: #2980b9; margin-top: 25px; }
        .btn { display: inline-block; padding: 10px 20px; background-color: #ff6b00; color: white; text-decoration: none; border-radius: 5px; margin: 10px 0; font-weight: bold; }
        .download-section, .login-section { text-align: center; margin: 30px 0; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 30px; }
        .game-types, .tags { margin: 20px 0; }
        .game-types a, .tags a { color: #ff6b00; text-decoration: none; margin: 0 5px; }
        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            nav { display: none; flex-direction: column; align-items: center; }
            nav.active { display: flex; }
            .container { padding: 10px; }
            h1 { font-size: 1.8em; }
            h2 { font-size: 1.5em; }
        }
