body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f5f5f5; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #FF4500; 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; font-weight: bold; }
        .mobile-menu-btn { display: none; position: absolute; right: 20px; top: 15px; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        h1 { font-size: 32px; margin-bottom: 20px; color: #FF4500; text-align: center; }
        h2 { font-size: 24px; margin: 30px 0 15px; color: #333; border-bottom: 2px solid #FF4500; padding-bottom: 5px; }
        h3 { font-size: 20px; margin: 25px 0 10px; color: #555; }
        p { margin-bottom: 15px; }
        .download-btn, .login-btn { display: inline-block; background-color: #FF4500; color: white; padding: 12px 25px; text-decoration: none; font-weight: bold; border-radius: 5px; margin: 10px 0; }
        .download-btn:hover, .login-btn:hover { background-color: #e03e00; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #ddd; padding: 5px 10px; margin-right: 5px; border-radius: 3px; text-decoration: none; color: #333; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 30px; }
        .game-types { margin: 20px 0; }
        .game-type { display: inline-block; margin-right: 15px; }
        .game-type a { color: #FF4500; text-decoration: none; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            nav.active { display: flex; }
            .mobile-menu-btn { display: block; }
            .container { padding: 10px; }
            h1 { font-size: 26px; }
            h2 { font-size: 20px; }
        }
