:root {
  --uth-nav-top: max(16px, env(safe-area-inset-top, 0px) + 8px)
}

/* Hide Skip Link visually */
.uth-skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Base Nav Elements */
.uth-menu-btn {
  position: fixed;
  top: var(--uth-nav-top);
  left: 16px;
  z-index: 1100;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(219, 231, 251, .95);
  border-radius: 16px;
  background: #ffffff !important;
  /* Keep white as requested */
  color: #1e3a8a !important;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px)
}

.brand-badge {
  background: #ffffff !important;
  /* Keep white as requested */
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1) !important;
}

.brand-badge i {
  color: #2563eb !important;
}

.uth-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
  z-index: 1190;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.uth-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(280px, 75vw);
  overflow-x: hidden;
  background: #ffffff;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0 32px 32px 0;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .22);
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.2, 1),
    opacity 0.25s ease;
  z-index: 1200;
  display: flex;
  flex-direction: column
}

.uth-nav-open .uth-backdrop {
  opacity: 1;
  pointer-events: auto
}

.uth-nav-open .uth-drawer {
  transform: translateX(0);
  opacity: 1;
}

.uth-nav-open {
  overflow: hidden
}

.uth-drawer-header {
  padding: 14px 16px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.uth-brand strong {
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.uth-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.uth-close-btn {
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #f1f5f9;
  color: #0f172a;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.uth-close-btn:hover {
  background: #e2e8f0;
  transform: rotate(90deg);
}

.uth-drawer-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1
}

/* Menu Cards (History, etc.) */
.uth-menu-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.uth-menu-card:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.uth-menu-card:active {
  transform: translateY(0) scale(0.98);
}

.uth-theme-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.uth-theme-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #1e293b;
  font-size: 0.92rem;
}

.uth-theme-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.uth-theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.uth-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #e2e8f0;
  transition: .4s;
  border-radius: 34px;
  display: flex;
  align-items: center;
  padding: 0 4px;
}

.uth-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.uth-theme-switch input:checked+.uth-slider {
  background-color: #334155;
}

.uth-theme-switch input:checked+.uth-slider:before {
  transform: translateX(24px);
}

.uth-slider .sun-icon,
.uth-slider .moon-icon {
  font-size: 0.8rem;
  z-index: 1;
  width: 50%;
  text-align: center;
  color: #64748b;
}

/* Global Dark Mode Engine */
body.pth-dark {
  --bg-1: #020617;
  --bg-2: #0f172a;
  --surface: #0f172a;
  --surface-soft: #1e293b;
  --text: #f8fafc;
  --soft: #94a3b8;
  --line: rgba(255, 255, 255, 0.08);

  background: #020617 !important;
  color: var(--text) !important;

  /* Custom Scrollbar for Dark Mode */
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

body.pth-dark ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

body.pth-dark ::-webkit-scrollbar-track {
  background: transparent;
}

body.pth-dark ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  border: 2px solid transparent;
  background-clip: content-box;
}

body.pth-dark ::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
  background-clip: content-box;
}

/* Horizontal Scrollbar Overrides (Quick Tools, etc.) */
body.pth-dark .quick-services-scroll {
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent !important;
}

body.pth-dark .quick-services-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.15) !important;
}

body.pth-dark .quick-services-scroll::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.25) !important;
}

/* Navigation & Header in Dark Mode */
body.pth-dark .main-header,
body.pth-dark .app-top-header,
body.pth-dark .tab-slider {
  background: rgba(2, 6, 23, 0.8) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
}

body.pth-dark .mobile-bottom-nav {
  background: rgba(2, 6, 23, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(28px) !important;
  -webkit-backdrop-filter: blur(28px) !important;
}

body.pth-dark .brand-title {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #818cf8 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Search Bar Area Fixing */
body.pth-dark .home-search-box {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 99px !important;
  padding: 0 4px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

body.pth-dark #searchInput {
  background: transparent !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 500 !important;
  height: 52px !important;
}

body.pth-dark #searchInput::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

body.pth-dark .search-active .home-search-box,
body.pth-dark .home-search-box:focus-within {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: #3b82f6 !important;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.15) !important;
}

/* Search Icon Contrast Fix */
.search-icon-left {
  color: #64748b !important;
  opacity: 0.8;
}

body.pth-dark .search-icon-left {
  color: #94a3b8 !important;
  opacity: 1;
}

/* Search Suggestions Dark Mode */
body.pth-dark .search-suggest {
  background: rgba(15, 23, 42, 0.9) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
}

body.pth-dark .search-suggest .s-item {
  border-top-color: rgba(255, 255, 255, 0.05) !important;
  background: transparent !important;
}

body.pth-dark .search-suggest .s-item:hover {
  background: rgba(255, 255, 255, 0.05) !important;
}

body.pth-dark .search-suggest .s-text {
  color: #ffffff !important;
}

body.pth-dark .search-suggest .s-sub {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Global Card & List Overrides */
body.pth-dark .hero-card,
body.pth-dark .tool-card,
body.pth-dark .category-card,
body.pth-dark .panel,
body.pth-dark .card,
body.pth-dark .fav-item-row,
body.pth-dark .quick-services-section,
body.pth-dark .category-section {
  background: var(--surface) !important;
  border-color: var(--line) !important;
  color: var(--text) !important;
}

body.pth-dark h1,
body.pth-dark h2,
body.pth-dark h3,
body.pth-dark .logo-text,
body.pth-dark .qs-label {
  color: #f8fafc !important;
}

.uth-drawer.pth-dark {
  background: #0f172a;
  color: #fff;
}

.pth-dark .uth-theme-card,
.pth-dark .uth-menu-card {
  background: #1e293b !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}

.pth-dark .uth-close-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

.pth-dark .uth-theme-info {
  color: #fff;
}

.pth-dark .uth-menu-link {
  color: #cbd5e1;
}

/* Back to Top */
.uth-back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 1000;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  border: none;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.4s cubic-bezier(0.2, 1, 0.2, 1);
}

.uth-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Trending Tools Dark Mode Overrides */
body.pth-dark .trending-header-wrap h2,
body.pth-dark .podium-title,
body.pth-dark .list-title {
  color: #ffffff !important;
}

body.pth-dark .trending-filters {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
}

body.pth-dark .trend-filter {
  color: #94a3b8;
}

body.pth-dark .trend-filter.active {
  background: #1e293b;
  color: #60a5fa;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

body.pth-dark .podium-item,
body.pth-dark .trend-list-item {
  background: var(--surface);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

body.pth-dark .podium-rank {
  background: #1e293b;
  border-color: var(--surface);
  color: #ffffff;
}

body.pth-dark .podium-rank.rank-1 {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-color: var(--surface);
  color: #ffffff;
}

body.pth-dark .podium-item.rank-1-card {
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.15);
}

body.pth-dark .list-rank {
  color: #94a3b8;
}

/* Sidebar (Drawer) Dark Mode Fixes */
.uth-drawer.pth-dark {
  background: #0f172a !important;
  border-right-color: rgba(255, 255, 255, 0.1) !important;
}

.uth-drawer.pth-dark .uth-drawer-header {
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

.uth-drawer.pth-dark .uth-brand strong {
  background: linear-gradient(135deg, #ffffff 0%, #60a5fa 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.uth-drawer.pth-dark .uth-close-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.uth-drawer.pth-dark .uth-close-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.uth-drawer.pth-dark .uth-menu-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
}

.uth-drawer.pth-dark .uth-menu-card:hover {
  background: rgba(255, 255, 255, 0.06) !important;
}

.uth-drawer.pth-dark .uth-theme-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
}

.uth-drawer.pth-dark .uth-theme-info span {
  color: #ffffff !important;
}

.uth-drawer.pth-dark .uth-home-info {
  color: #ffffff !important;
}

/* Universal Modal System */
.uth-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.uth-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.uth-modal {
  background: #ffffff;
  width: 100%;
  max-width: 400px;
  border-radius: 32px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.9);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.uth-modal-overlay.active .uth-modal {
  transform: scale(1);
}

.uth-modal-icon {
  width: 68px;
  height: 68px;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.uth-modal h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 10px;
  font-family: 'Outfit', sans-serif;
}

.uth-modal p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 20px;
}

.uth-modal textarea {
  width: 100%;
  height: 120px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-family: inherit;
  font-size: 0.95rem;
  color: #0f172a;
  outline: none;
  resize: none;
  margin-bottom: 24px;
  transition: border-color 0.2s ease;
}

.uth-modal textarea:focus {
  border-color: #3b82f6;
  background: #ffffff;
}

.uth-modal-actions {
  display: flex;
  gap: 12px;
}

.uth-modal-btn {
  flex: 1;
  padding: 14px;
  border-radius: 18px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.uth-btn-cancel {
  background: #f1f5f9;
  color: #475569;
}

.uth-btn-confirm {
  background: #3b82f6;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.uth-btn-confirm:active {
  background: #2563eb;
  transform: scale(0.96);
}

/* Dark Mode Modal */
body.pth-dark .uth-modal,
.uth-drawer.pth-dark~.uth-modal-overlay .uth-modal {
  background: #1e293b;
}

body.pth-dark .uth-modal h3,
.uth-drawer.pth-dark~.uth-modal-overlay .uth-modal h3 {
  color: #f1f5f9;
}

body.pth-dark .uth-modal p,
.uth-drawer.pth-dark~.uth-modal-overlay .uth-modal p {
  color: #94a3b8;
}

body.pth-dark .uth-modal textarea,
.uth-drawer.pth-dark~.uth-modal-overlay .uth-modal textarea {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

body.pth-dark .uth-btn-cancel,
.uth-drawer.pth-dark~.uth-modal-overlay .uth-modal .uth-btn-cancel {
  background: #334155;
  color: #cbd5e1;
}

body.pth-dark .uth-modal-icon,
.uth-drawer.pth-dark~.uth-modal-overlay .uth-modal .uth-modal-icon {
  background: rgba(59, 130, 246, 0.1);
}

/* Success Modal Specifics */
.uth-icon-success {
  background: #f0fdf4 !important;
  color: #22c55e !important;
}

body.pth-dark .uth-icon-success,
.uth-drawer.pth-dark~.uth-modal-overlay .uth-modal .uth-icon-success {
  background: rgba(34, 197, 94, 0.1) !important;
  color: #4ade80 !important;
}

.uth-modal-success h3 {
  color: #166534 !important;
}

body.pth-dark .uth-modal-success h3,
.uth-drawer.pth-dark~.uth-modal-overlay .uth-modal.uth-modal-success h3 {
  color: #4ade80 !important;
}

/* Quick Links Section in Sidebar */
.uth-quick-links {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.uth-quick-links-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #94a3b8;
  padding: 0 4px;
  margin-bottom: 14px;
}

.uth-quick-links-row {
  display: flex;
  justify-content: space-between;
  gap: 4px;
}

.uth-ql-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  flex: 1;
  padding: 10px 4px;
  border-radius: 16px;
  transition: all 0.2s ease;
}

.uth-ql-item:hover {
  background: rgba(59, 130, 246, 0.06);
  transform: translateY(-2px);
}

.uth-ql-item:active {
  transform: scale(0.95);
}

.uth-ql-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: linear-gradient(135deg, #eff6ff, #eef2ff);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.1);
  transition: all 0.2s ease;
}

.uth-ql-item:hover .uth-ql-icon {
  background: linear-gradient(135deg, #dbeafe, #e0e7ff);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.uth-ql-item span {
  font-size: 0.68rem;
  font-weight: 700;
  color: #475569;
  text-align: center;
  line-height: 1.2;
}

/* Individual Icon Colors */
.uth-ql-item:nth-child(1) .uth-ql-icon {
  color: #3b82f6;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-color: rgba(59, 130, 246, 0.12);
}

.uth-ql-item:nth-child(2) .uth-ql-icon {
  color: #22c55e;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-color: rgba(34, 197, 94, 0.12);
}

.uth-ql-item:nth-child(3) .uth-ql-icon {
  color: #8b5cf6;
  background: linear-gradient(135deg, #f5f3ff, #ede9fe);
  border-color: rgba(139, 92, 246, 0.12);
}

.uth-ql-item:nth-child(4) .uth-ql-icon {
  color: #f59e0b;
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border-color: rgba(245, 158, 11, 0.12);
}

.uth-ql-item:nth-child(5) .uth-ql-icon {
  color: #ef4444;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border-color: rgba(239, 68, 68, 0.12);
}

/* Dark Mode Quick Links */
.uth-drawer.pth-dark .uth-quick-links {
  border-top-color: rgba(255, 255, 255, 0.06);
}

.uth-drawer.pth-dark .uth-quick-links-label {
  color: #64748b;
}

.uth-drawer.pth-dark .uth-ql-item span {
  color: #94a3b8;
}

.uth-drawer.pth-dark .uth-ql-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.uth-drawer.pth-dark .uth-ql-item:nth-child(1) .uth-ql-icon {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.uth-drawer.pth-dark .uth-ql-item:nth-child(2) .uth-ql-icon {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.uth-drawer.pth-dark .uth-ql-item:nth-child(3) .uth-ql-icon {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
}

.uth-drawer.pth-dark .uth-ql-item:nth-child(4) .uth-ql-icon {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.uth-drawer.pth-dark .uth-ql-item:nth-child(5) .uth-ql-icon {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

/* ===== Install Our App Button (Sidebar) ===== */
.pth-install-wrap {
  margin-top: 20px;
  padding: 0 4px;
}

.pth-install-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 50%, #6366f1 100%);
  background-size: 200% 200%;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: pthInstallShimmer 3s ease infinite;
}

@keyframes pthInstallShimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.pth-install-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.45);
}

.pth-install-btn:active {
  transform: translateY(0) scale(0.97);
}

.pth-install-btn i {
  font-size: 1.1rem;
}

/* Dark mode install button */
.uth-drawer.pth-dark .pth-install-btn {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
  background-size: 200% 200%;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
  animation: pthInstallShimmer 3s ease infinite;
}

.uth-drawer.pth-dark .pth-install-btn:hover {
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.45);
}

/* ===== Install Modal ===== */

.pth-install-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pth-install-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Floating bounce container */
.pth-install-modal {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  width: 90%;
  max-width: 380px;
  border-radius: 36px;
  padding: 32px 28px 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 30px 70px rgba(15, 23, 42, 0.12),
    0 0 30px rgba(59, 130, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: translateY(40px) scale(0.85) rotate(-1.5deg);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: pthFloating 6s ease-in-out infinite;
}

.pth-install-modal-overlay.active .pth-install-modal {
  transform: translateY(0) scale(1) rotate(0deg);
}

/* Gentle floating animation */
@keyframes pthFloating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Redesigned 3D-Like App Icon Container */
.pth-install-icon-wrapper {
  position: relative;
  width: 92px;
  height: 92px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbit Ring */
.pth-install-icon-orbit {
  position: absolute;
  inset: -6px;
  border-radius: 30px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
  animation: pthRotateOrbit 6s linear infinite;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 3px;
  opacity: 0.9;
}

@keyframes pthRotateOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Rich Icon Shield */
.pth-install-icon-bg {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f0f4ff, #e0e7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 
    0 10px 25px rgba(99, 102, 241, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  overflow: visible;
}

/* Floating Device */
.pth-device-icon {
  font-size: 2.3rem;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pthDeviceFloat 2.5s ease-in-out infinite;
}

@keyframes pthDeviceFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
}

/* Sparkle stars */
.pth-sparkle-1, .pth-sparkle-2 {
  position: absolute;
  color: #fbbf24;
  font-size: 0.8rem;
  animation: pthSparkleBlink 2s ease-in-out infinite;
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
}

.pth-sparkle-1 {
  top: 10px;
  right: 10px;
  animation-delay: 0.3s;
}

.pth-sparkle-2 {
  bottom: 12px;
  left: 10px;
  animation-delay: 1s;
}

@keyframes pthSparkleBlink {
  0%, 100% {
    opacity: 0.2;
    transform: scale(0.8) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) rotate(45deg);
  }
}

/* Content Headings */
.pth-install-modal h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0 0 8px;
  background: linear-gradient(135deg, #1e293b, #3b82f6, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.pth-install-modal-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0 0 24px;
  font-weight: 500;
}

/* Features checklist container */
.pth-install-features {
  background: rgba(99, 102, 241, 0.03);
  border: 1px solid rgba(99, 102, 241, 0.08);
  border-radius: 24px;
  padding: 16px 20px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  transition: all 0.3s ease;
}

.pth-install-modal:hover .pth-install-features {
  background: rgba(99, 102, 241, 0.05);
  border-color: rgba(99, 102, 241, 0.15);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.04);
}

.pth-install-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  transition: transform 0.2s ease;
}

.pth-install-feature:hover {
  transform: translateX(3px);
}

/* Micro badge checkbox */
.pth-feature-icon-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.pth-install-feature:hover .pth-feature-icon-badge {
  background: rgba(34, 197, 94, 0.2);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

/* Actions grid */
.pth-install-actions {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 12px;
}

/* Later Button */
.pth-install-cancel {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid transparent;
  padding: 14px 20px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.pth-install-cancel:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

.pth-install-cancel:active {
  transform: translateY(0) scale(0.97);
}

/* Install Button */
.pth-install-confirm {
  background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 50%, #ec4899 100%);
  background-size: 200% auto;
  color: #ffffff;
  border: none;
  padding: 14px 20px;
  border-radius: 18px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

/* Button sweep shine */
.pth-install-confirm::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  animation: pthBtnShine 3.5s ease-in-out infinite;
}

@keyframes pthBtnShine {
  0%, 100% { left: -60%; }
  50% { left: 120%; }
}

.pth-install-confirm:hover {
  background-position: right center;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.5);
  transform: translateY(-2px);
}

.pth-install-confirm:active {
  transform: translateY(0) scale(0.97);
}

.pth-install-btn-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.pth-install-confirm:hover .pth-install-btn-icon {
  transform: translateY(2px) scale(1.1);
}

/* Install steps browser guides styles */
.pth-install-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  text-align: left;
}

.pth-install-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #334155;
  line-height: 1.5;
  transition: all 0.2s ease;
}

.pth-install-step:hover {
  background: #f1f5f9;
  transform: translateX(2px);
}

.pth-step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.25);
}

.pth-install-step strong {
  color: #6366f1;
  font-weight: 700;
}

/* ===== Dark Mode Engine Support ===== */

body.pth-dark .pth-install-modal {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(99, 102, 241, 0.18),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

body.pth-dark .pth-install-icon-bg {
  background: linear-gradient(135deg, #12102e, #1a0f30);
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.06);
}

body.pth-dark .pth-device-icon {
  background: linear-gradient(135deg, #60a5fa, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.pth-dark .pth-install-modal h3 {
  background: linear-gradient(135deg, #ffffff, #60a5fa, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.pth-dark .pth-install-modal-desc {
  color: #94a3b8;
}

body.pth-dark .pth-install-features {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.06);
}

body.pth-dark .pth-install-modal:hover .pth-install-features {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

body.pth-dark .pth-install-feature {
  color: #cbd5e1;
}

body.pth-dark .pth-install-cancel {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
}

body.pth-dark .pth-install-cancel:hover {
  background: rgba(255, 255, 255, 0.1);
}

body.pth-dark .pth-install-confirm {
  background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #f472b6 100%);
  background-size: 200% auto;
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.45);
}

body.pth-dark .pth-install-confirm:hover {
  box-shadow: 0 12px 30px rgba(168, 85, 247, 0.6);
}

body.pth-dark .pth-install-step {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
}

body.pth-dark .pth-install-step:hover {
  background: rgba(255, 255, 255, 0.05);
}

body.pth-dark .pth-install-step strong {
  color: #a78bfa;
}

body.pth-dark .pth-step-num {
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

/* Shared Toggle Switch Styles (Nav Mode & Theme) */
.uth-nav-toggle-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.uth-drawer.pth-dark .uth-nav-toggle-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
}

.uth-toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.uth-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.uth-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #e2e8f0;
  transition: .4s;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px;
}

.uth-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
  z-index: 2;
}

.uth-toggle-slider .sun-icon,
.uth-toggle-slider .moon-icon {
  font-size: 9px;
  z-index: 1;
  width: 18px;
  text-align: center;
  transition: .4s;
}

.uth-toggle-slider .sun-icon {
  color: #f59e0b;
  opacity: 1;
}

.uth-toggle-slider .moon-icon {
  color: #94a3b8;
  opacity: 0;
}

.uth-toggle-switch input:checked+.uth-toggle-slider {
  background-color: #334155;
}

.uth-toggle-switch input:checked+.uth-toggle-slider:before {
  transform: translateX(20px);
}

.uth-toggle-switch input:checked+.uth-toggle-slider .sun-icon {
  opacity: 0;
}

.uth-toggle-switch input:checked+.uth-toggle-slider .moon-icon {
  opacity: 1;
}

/* ═══════════════════════════════════════════════ */
/* ✦ GLOBAL ANNOUNCEMENT MARQUEE BANNER           */
/* ═══════════════════════════════════════════════ */
.pth-banner-container {
  width: 100%;
  height: 38px;
  background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 50%, #4f46e5 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 1005;
  font-family: 'Outfit', 'Inter', sans-serif;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pth-banner-container.pth-dismissed {
  height: 0 !important;
  opacity: 0 !important;
  border: none !important;
  pointer-events: none !important;
}

.pth-ticker-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 72px; /* Prevent overlap with fixed menu button at top-left */
  padding-right: 50px; /* Fade padding before close button */
}

.pth-ticker {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  will-change: transform;
  animation: pthTicker 45s linear infinite;
}

.pth-ticker:hover {
  animation-play-state: paused;
}

.pth-ticker-item {
  display: flex;
  align-items: center;
  padding-right: 120px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.pth-ticker-item i {
  margin-right: 8px;
  font-size: 0.95rem;
  color: #fbbf24; /* Golden accent for alert icon */
}

.pth-banner-close {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 46px;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0) 0%, #4f46e5 45%, #4f46e5 100%);
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  z-index: 10;
  padding-left: 12px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pth-banner-close:hover {
  opacity: 0.9;
  transform: scale(1.1);
}

.pth-banner-close:active {
  transform: scale(0.9);
}

@keyframes pthTicker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Push floating drawer hamburger menu down when banner is active */
body.uth-menu-present.pth-has-banner .uth-menu-btn {
  top: calc(var(--uth-nav-top) + 38px);
}

body.uth-menu-present .uth-menu-btn {
  transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════ */
/* ✦ V2 GLOWING BADGES FOR REDESIGNED TOOLS        */
/* ═══════════════════════════════════════════════ */
.qs-icon-wrapper, .podium-icon, .list-icon, .fav-icon-small, .s-ico {
  position: relative !important;
}

.pth-v2-badge {
  position: absolute !important;
  bottom: -4px !important;
  right: -4px !important;
  background: linear-gradient(135deg, #7c3aed, #4f46e5) !important;
  color: #ffffff !important;
  font-family: 'Outfit', 'Inter', sans-serif !important;
  font-size: 8.5px !important;
  font-weight: 900 !important;
  padding: 1.5px 4px !important;
  border-radius: 5px !important;
  border: 1.5px solid #ffffff !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  z-index: 10 !important;
  box-shadow: 0 0 6px rgba(124, 58, 237, 0.5) !important;
  animation: pth-v2-glow 2s infinite ease-in-out !important;
  pointer-events: none !important;
}

body.pth-dark .pth-v2-badge {
  border-color: #0f172a !important; /* Dark mode surface border */
}

.pth-v2-search-badge {
  margin-left: auto !important;
  background: rgba(124, 58, 237, 0.12) !important;
  color: #a78bfa !important;
  border: 1px solid rgba(124, 58, 237, 0.3) !important;
  font-family: 'Outfit', 'Inter', sans-serif !important;
  font-size: 9.5px !important;
  font-weight: 800 !important;
  padding: 2.5px 5.5px !important;
  border-radius: 5px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  animation: pth-v2-text-glow 2s infinite ease-in-out !important;
}

body:not(.pth-dark) .pth-v2-search-badge {
  background: rgba(124, 58, 237, 0.08) !important;
  color: #6d28d9 !important;
}

@keyframes pth-v2-glow {
  0%, 100% {
    box-shadow: 0 0 4px rgba(124, 58, 237, 0.5), 0 0 8px rgba(124, 58, 237, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.9), 0 0 18px rgba(124, 58, 237, 0.4);
    transform: scale(1.05);
  }
}

@keyframes pth-v2-text-glow {
  0%, 100% {
    box-shadow: 0 0 4px rgba(124, 58, 237, 0.1);
  }
  50% {
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.25);
  }
}



/* ======================================================
   MOBILE PERFORMANCE OVERRIDES (max-width: 480px)
   Desktop pe koi bhi change nahi — sirf mobile ke liye
====================================================== */
@media (max-width: 480px) {

  /* Menu button — backdrop-filter off */
  .uth-menu-btn {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Backdrop overlay — blur off, opacity se kaam chalao */
  .uth-backdrop {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(15, 23, 42, 0.6) !important;
  }

  /* Bottom nav — blur off */
  .mobile-bottom-nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Dark mode: header + header blur off */
  body.pth-dark .main-header,
  body.pth-dark .app-top-header,
  body.pth-dark .tab-slider {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Dark mode: bottom nav blur off */
  body.pth-dark .mobile-bottom-nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Search suggestions dark mode blur off */
  body.pth-dark .search-suggest {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(10, 18, 40, 0.97) !important;
  }

  /* Universal modal overlay blur off */
  .uth-modal-overlay {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Install modal — animations off + blur off */
  .pth-install-modal-overlay {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .pth-install-modal {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255, 255, 255, 0.98) !important;
    animation: none !important;       /* pthFloating off */
    transform: translateY(0) scale(1) rotate(0deg) !important;
  }

  body.pth-dark .pth-install-modal {
    background: rgba(15, 23, 42, 0.98) !important;
  }

  /* Orbit ring — heavy GPU rotation animation off */
  .pth-install-icon-orbit {
    animation: none !important;
  }

  /* Floating device icon animation off */
  .pth-device-icon {
    animation: none !important;
  }

  /* Sparkle animations off */
  .pth-sparkle-1,
  .pth-sparkle-2 {
    animation: none !important;
    display: none !important;
  }

  /* Install button shimmer off */
  .pth-install-btn,
  .uth-drawer.pth-dark .pth-install-btn {
    animation: none !important;
    background-size: auto !important;
  }

  /* Announcement ticker - removed pause so it can move on mobile */

  /* v2 badge glow animations off */
  .pth-v2-badge {
    animation: none !important;
  }
  [class*="pth-v2-"] {
    animation: none !important;
  }
}
/* --- AGGRESSIVE MOBILE GPU OPTIMIZATION --- */
@media (max-width: 480px) {
  *, *::before, *::after {
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}
