/* ==========================================================================
   Gita — Premium Visual Layer
   --------------------------------------------------------------------------
   Loaded after upgrade.css and v3-design.css. Adds cinematic glassmorphism,
   glowing borders, holographic tickets, shine sweeps and refined hover lifts
   without changing layout or functionality.
   ========================================================================== */

/* Ensure Poppins is available for unified button typography */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ── Premium tokens ── */
:root {
  --prm-rose-glow: rgba(220, 38, 38, 0.22);
  --prm-gold-glow: rgba(245, 158, 11, 0.22);
  --prm-cyan-glow: rgba(34, 211, 238, 0.18);
  --prm-glass: rgba(255, 255, 255, 0.035);
  --prm-glass-strong: rgba(255, 255, 255, 0.06);
  --prm-border-glow: rgba(245, 158, 11, 0.22);
  --prm-radius: 1.25rem;
  --prm-radius-xl: 1.75rem;
  --prm-transition: 260ms cubic-bezier(0.4, 0, 0.2, 1);
  --prm-spring: 420ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Keyframes (all transform/opacity, no layout animation) ── */
@keyframes prmShineSweep {
  0% { transform: translateX(-120%) skewX(-20deg); }
  100% { transform: translateX(120%) skewX(-20deg); }
}
@keyframes prmHoloRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes prmPulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes prmFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes prmGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Global subtle lift on interactive elements ── */
a, button, [role="button"] { transition: transform var(--prm-transition), box-shadow var(--prm-transition), filter var(--prm-transition); }
a:active, button:active, [role="button"]:active { transform: scale(0.98); }

/* ── App shell premium polish ── */
body.rdm-upgrade .app-sidebar,
body.gita-v3 .app-sidebar {
  border-right-color: rgba(255, 255, 255, 0.07);
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.45), inset -1px 0 0 rgba(255, 255, 255, 0.03);
}

body.rdm-upgrade .app-topbar,
body.gita-v3 .app-topbar {
  background: rgba(7, 2, 2, 0.82);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.app-bottom-nav {
  background: rgba(7, 2, 2, 0.92);
  backdrop-filter: blur(20px) saturate(140%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.35);
}

.app-tab-item {
  transition: color var(--prm-transition), transform var(--prm-transition);
}
.app-tab-item.active {
  color: var(--gita-gold-light, var(--rdm-rose-light));
  text-shadow: 0 0 12px var(--prm-gold-glow);
}
.app-tab-item:active { transform: translateY(1px); }

.sidebar-nav-item {
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sidebar-nav-item:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.06);
}
.sidebar-nav-item.active {
  box-shadow: 0 0 24px rgba(220, 38, 38, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sidebar-toggle {
  transition: all var(--prm-transition);
}
.sidebar-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.05);
}

/* ── Generic buttons ── */
.btn,
.rdm-btn,
.gita-btn {
  position: relative;
  overflow: hidden;
}
.btn::after,
.rdm-btn::after,
.gita-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-130%) skewX(-18deg);
  pointer-events: none;
}
.btn:hover::after,
.rdm-btn:hover::after,
.gita-btn:hover::after {
  animation: prmShineSweep 0.85s ease forwards;
}

/* ── Unified button typography (Poppins) ── */
.btn,
.rdm-btn,
.gita-btn,
.auth-btn,
.auth-btn--primary,
.ql-btn,
.shop-checkout-btn,
.shop-cart-btn,
.shop-card__select,
.shop-user__btn,
.ck-btn-primary,
.tw-btn-primary,
.td-btn-primary,
.td-btn-secondary,
.txn-btn-action,
.txn-filter-btn,
.act-filter-btn,
.filter-tab,
.view-toggle__btn,
.tk-action,
.sidebar-toggle {
  font-family: 'Poppins', 'Space Grotesk', 'Pyidaungsu', 'Padauk', 'Noto Sans Myanmar', system-ui, sans-serif;
}

.btn-primary,
.rdm-btn-primary,
.gita-btn-primary {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.btn-primary:hover,
.rdm-btn-primary:hover,
.gita-btn-primary:hover {
  box-shadow: 0 8px 32px rgba(220, 38, 38, 0.55), 0 0 40px rgba(220, 38, 38, 0.2);
}

.btn-outline,
.rdm-btn-ghost,
.rdm-btn-secondary,
.gita-btn-ghost {
  transition: all var(--prm-transition);
}
.btn-outline:hover,
.rdm-btn-ghost:hover,
.rdm-btn-secondary:hover,
.gita-btn-ghost:hover {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 24px var(--prm-gold-glow);
}

.gita-btn-gold:hover {
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.55), 0 0 40px rgba(245, 158, 11, 0.2);
}

/* ── Generic inputs ── */
.form-input,
.gita-input,
.rdm-searchbar__input,
.rdm-promo__input {
  transition: border-color var(--prm-transition), box-shadow var(--prm-transition), transform var(--prm-transition);
}
.form-input:focus,
.gita-input:focus,
.rdm-searchbar__input:focus,
.rdm-promo__input:focus {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12), 0 0 18px rgba(245, 158, 11, 0.12);
  outline: none;
}

/* ── Generic cards ── */
.card,
.rdm-card,
.gita-card,
.rdm-panel,
.rdm-summary,
.rdm-pay-processing,
.profile-form-card,
.txn-card,
.shop-card {
  transition: transform var(--prm-transition), box-shadow var(--prm-transition), border-color var(--prm-transition);
}
.card:hover,
.rdm-card:hover,
.gita-card:hover:not(.gita-event-card),
.rdm-panel:hover,
.rdm-summary:hover,
.rdm-pay-processing:hover,
.profile-form-card:hover,
.txn-card:hover,
.shop-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 40px rgba(220, 38, 38, 0.1);
}

/* ── Skeleton shimmer ── */
@keyframes prmSkeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton,
.gita-skeleton,
.rdm-skeleton,
.mt-skeleton {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 25%, rgba(255, 255, 255, 0.09) 50%, rgba(255, 255, 255, 0.03) 75%);
  background-size: 200% 100%;
  animation: prmSkeletonShimmer 1.6s linear infinite;
}

/* ── Empty / error states ── */
.empty-state-icon,
.wishlist-empty > i:first-child,
.txn-empty > i:first-child,
.act-empty > i:first-child,
.rdm-empty__icon,
.gita-empty__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--prm-glass-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gita-gold, var(--rdm-rose-light));
  font-size: 1.6rem;
  box-shadow: 0 0 30px var(--prm-gold-glow);
  backdrop-filter: blur(8px);
  margin-bottom: 1rem;
}

/* Explicit button icon override to protect all button icons inside empty states */
.btn i,
.gita-btn i,
.btn-primary i,
.btn-secondary i,
.btn-outline i,
.btn-ghost i,
.txn-empty .btn i,
.act-empty .btn i,
.wishlist-empty .btn i {
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: none !important;
  max-height: none !important;
  border-radius: 0 !important;
  display: inline-block !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  font-size: inherit !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: inherit !important;
  backdrop-filter: none !important;
}

/* ── V3 marketing pages: home / events ── */
.gita-nav {
  background: rgba(3, 3, 5, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}
.gita-nav.scrolled {
  background: rgba(3, 3, 5, 0.95);
}
.gita-nav__mark {
  box-shadow: 0 0 22px rgba(245, 158, 11, 0.45);
  transition: transform var(--prm-spring), box-shadow var(--prm-transition);
}
.gita-nav__logo:hover .gita-nav__mark {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 0 32px rgba(245, 158, 11, 0.6);
}
.gita-nav__links a {
  transition: all var(--prm-transition);
}
.gita-nav__links a:hover {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.1);
}
.gita-nav__links a.active {
  background: rgba(245, 158, 11, 0.12);
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.15);
}

.gita-hero__orb {
  filter: blur(90px);
  opacity: 0.85;
  animation: prmFloat 10s ease-in-out infinite;
}

.gita-title-hero,
.gita-hero__title {
  background: linear-gradient(135deg, #fff 0%, #FBBF24 35%, #DC2626 70%, #F87171 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: prmGradientShift 6s ease infinite;
}

.gita-section-header {
  position: relative;
}
.gita-section-header::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 0.25rem;
  width: 4px;
  height: 2rem;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--gita-gold), var(--gita-rose));
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.4);
}

.gita-chip {
  transition: all var(--prm-transition);
}
.gita-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.gita-chip.active {
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.18);
}

/* Event cards: shine sweep + stronger glow */
.gita-event-card,
.rdm-event-card {
  position: relative;
  overflow: hidden;
}
.gita-event-card::before,
.rdm-event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.06) 50%, transparent 60%);
  transform: translateX(-120%);
  pointer-events: none;
  z-index: 4;
  transition: transform 0s;
}
.gita-event-card:hover::before,
.rdm-event-card:hover::before {
  animation: prmShineSweep 0.9s ease forwards;
}
.gita-event-card:hover,
.rdm-event-card:hover {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(245, 158, 11, 0.18), 0 0 60px rgba(245, 158, 11, 0.1);
}
.gita-event-card__heart,
.rdm-event-card__heart {
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gita-event-card__heart:hover,
.rdm-event-card__heart:hover {
  transform: scale(1.18);
  box-shadow: 0 0 18px rgba(220, 38, 38, 0.45);
}

.gita-event-card__date,
.rdm-event-card__date {
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.gita-badge,
.rdm-badge {
  backdrop-filter: blur(8px);
}
.gita-badge--live,
.rdm-badge--live {
  box-shadow: 0 0 14px rgba(220, 38, 38, 0.25);
}
.gita-badge--gold,
.gita-badge--limited,
.rdm-badge--limited {
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.2);
}

/* ── Event detail page ── */
.rdm-detail-layout {
  position: relative;
}
.gita-detail-hero,
.rdm-detail-center {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}
.gita-detail-hero__poster,
.rdm-detail-hero__poster {
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(245, 158, 11, 0.12);
}

.gita-event-stats {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 40px rgba(245, 158, 11, 0.06);
}
.gita-event-stats__item:hover,
.gita-event-stats__item:focus-visible {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 30px rgba(245, 158, 11, 0.1);
}
.gita-event-stats__item.is-live:hover,
.gita-event-stats__item.is-live:focus-visible {
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 30px rgba(34, 197, 94, 0.12);
}
.gita-event-stats__value {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.rdm-booking-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--prm-radius-xl);
  /* Groove / inset effect instead of a floating drop shadow */
  box-shadow:
    inset 0 2px 10px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
}
[data-theme="light"] .rdm-booking-card {
  background: var(--rdm-card);
  border-color: var(--rdm-border);
  box-shadow:
    inset 0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 -1px 0 rgba(255, 255, 255, 0.7),
    0 1px 0 rgba(255, 255, 255, 0.5);
}

.rdm-tier-carousel__btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: all var(--prm-transition);
}
.rdm-tier-carousel__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.25);
  transform: scale(1.08);
}

.rdm-tabs {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--prm-radius);
  padding: 0.25rem;
}
.rdm-tab {
  transition: all var(--prm-transition);
  border-radius: calc(var(--prm-radius) - 0.25rem);
}
.rdm-tab:hover {
  background: rgba(255, 255, 255, 0.04);
}
.rdm-tab.active {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(245, 158, 11, 0.12));
  box-shadow: 0 4px 18px rgba(220, 38, 38, 0.18);
  color: #fff;
}

.rdm-info-grid__item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--prm-radius);
  transition: all var(--prm-transition);
}
.rdm-info-grid__item:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(245, 158, 11, 0.18);
  transform: translateY(-2px);
}

.rdm-gallery-item {
  overflow: hidden;
  border-radius: var(--prm-radius);
  transition: all var(--prm-transition);
}
.rdm-gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 30px rgba(220, 38, 38, 0.12);
}
.rdm-gallery-item img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.rdm-gallery-item:hover img {
  transform: scale(1.08);
}

.rdm-venue-map-card {
  background: var(--prm-glass);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--prm-radius-xl);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.rdm-status-btn {
  position: relative;
  overflow: hidden;
  transition: all var(--prm-transition);
}
.rdm-status-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, transparent 0%, rgba(245, 158, 11, 0.35) 25%, transparent 50%);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--prm-transition);
}
.rdm-status-btn:hover::before {
  opacity: 1;
  animation: prmHoloRotate 3s linear infinite;
}
.rdm-status-btn:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 30px rgba(245, 158, 11, 0.15);
}

.rdm-mini-ticket {
  position: relative;
  background: linear-gradient(135deg, rgba(28, 9, 9, 0.95), rgba(20, 10, 35, 0.95));
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--prm-radius);
  overflow: hidden;
  transition: all var(--prm-transition);
}
.rdm-mini-ticket:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(220, 38, 38, 0.12);
}
.rdm-mini-ticket::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
  transform: translateX(-120%);
  pointer-events: none;
}
.rdm-mini-ticket:hover::before {
  animation: prmShineSweep 1s ease forwards;
}

.rdm-tier-card {
  transition: all var(--prm-transition);
}
.rdm-tier-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.25);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35), 0 0 30px rgba(245, 158, 11, 0.08);
}
.rdm-tier-card.selected {
  box-shadow: 0 0 28px rgba(220, 38, 38, 0.22), 0 12px 32px rgba(0, 0, 0, 0.3);
}

.rdm-qty__btn {
  transition: all var(--prm-transition);
}
.rdm-qty__btn:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.15);
}

/* ── Checkout page ── */
.rdm-checkout-layout {
  gap: 2.5rem;
}
.rdm-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--prm-radius-xl);
  backdrop-filter: blur(12px);
}
.rdm-panel__title {
  text-shadow: 0 0 18px rgba(220, 38, 38, 0.2);
}
.rdm-panel__title i {
  filter: drop-shadow(0 0 6px rgba(220, 38, 38, 0.5));
}

.rdm-summary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--prm-radius-xl);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.rdm-summary__event-cover {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.rdm-summary__row.total {
  color: #fff;
  text-shadow: 0 0 14px rgba(245, 158, 11, 0.25);
}

.rdm-pay-card {
  position: relative;
  overflow: hidden;
  transition: all var(--prm-transition);
}
.rdm-pay-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.1);
}
.rdm-pay-card.selected {
  box-shadow: 0 0 28px rgba(var(--pay-rgb, 220, 38, 38), 0.18);
}

.rdm-amount-card {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.14), rgba(245, 158, 11, 0.1));
  border: 1px solid rgba(220, 38, 38, 0.22);
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.12);
}
.rdm-amount-card__big {
  text-shadow: 0 0 18px rgba(245, 158, 11, 0.25);
}

.rdm-pay-processing {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--prm-radius-xl);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}
.rdm-pay-processing__method-icon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.1);
}
.rdm-pay-processing__qr-frame {
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.15);
}
.rdm-pay-processing__status-dot {
  box-shadow: 0 0 12px rgba(220, 38, 38, 0.5);
}

.rdm-ticket-stub {
  position: relative;
  border-radius: var(--prm-radius-xl);
  border: 1px solid rgba(220, 38, 38, 0.25);
  overflow: hidden;
}
.rdm-ticket-stub::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, rgba(220, 38, 38, 0.35), rgba(245, 158, 11, 0.25), rgba(34, 211, 238, 0.2), rgba(220, 38, 38, 0.35));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--prm-transition);
}
.rdm-ticket-stub:hover::before {
  opacity: 1;
  animation: prmHoloRotate 4s linear infinite;
}
.rdm-ticket-stub:hover {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 50px rgba(220, 38, 38, 0.15);
}
.rdm-ticket-stub__qr-frame {
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.15);
}

.rdm-timer-ring__fill {
  filter: drop-shadow(0 0 6px rgba(220, 38, 38, 0.5));
}

.rdm-tier-display {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.12), rgba(245, 158, 11, 0.08));
  box-shadow: 0 0 28px rgba(220, 38, 38, 0.12);
}

.rdm-checkout-actions {
  background: rgba(7, 2, 2, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

/* ── My tickets page ── */
.mt-page-head__title {
  background: linear-gradient(135deg, #fff 0%, #FBBF24 55%, #DC2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mt-pass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--prm-radius-xl);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  transition: all var(--prm-transition);
}
.mt-pass:hover {
  border-color: rgba(245, 158, 11, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(245, 158, 11, 0.08);
}
.mt-pass__header {
  cursor: pointer;
  transition: background var(--prm-transition);
}
.mt-pass__header:hover {
  background: rgba(255, 255, 255, 0.03);
}
.mt-pass__chevron {
  transition: transform var(--prm-transition);
}
.mt-pass.open .mt-pass__chevron {
  transform: rotate(180deg);
}

.stats-row__pill {
  background: var(--prm-glass);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--prm-radius);
  backdrop-filter: blur(10px);
  transition: all var(--prm-transition);
}
.stats-row__pill:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 20px rgba(245, 158, 11, 0.08);
}

.filter-tab,
.view-toggle__btn {
  transition: all var(--prm-transition);
}
.filter-tab:hover,
.view-toggle__btn:hover {
  background: rgba(255, 255, 255, 0.07);
}
.filter-tab.active,
.view-toggle__btn.active {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(245, 158, 11, 0.12));
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.15);
}

/* Holographic ticket pass */
.mt-ticket {
  position: relative;
  background: linear-gradient(145deg, rgba(20, 10, 10, 0.98), rgba(15, 8, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--prm-radius-xl);
  overflow: hidden;
  transition: all var(--prm-transition);
  transform-style: preserve-3d;
}
.mt-ticket::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: conic-gradient(from 0deg, transparent 0%, rgba(220, 38, 38, 0.25) 15%, rgba(245, 158, 11, 0.2) 30%, rgba(34, 211, 238, 0.15) 45%, transparent 60%);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--prm-transition);
}
.mt-ticket:hover::before {
  opacity: 1;
  animation: prmHoloRotate 5s linear infinite;
}
.mt-ticket:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(220, 38, 38, 0.1);
}
.mt-ticket::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.06) 50%, transparent 58%);
  transform: translateX(-120%);
  pointer-events: none;
  z-index: 2;
}
.mt-ticket:hover::after {
  animation: prmShineSweep 1.1s ease forwards;
}
.mt-ticket__media {
  position: relative;
  z-index: 1;
}
.mt-ticket__actions button {
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mt-ticket__actions button:hover {
  transform: scale(1.12);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.2);
}
.mt-ticket__qr-zone {
  position: relative;
}
.mt-ticket__qr canvas {
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.12);
}

.fs-wrap {
  background: linear-gradient(180deg, rgba(20, 10, 10, 0.98), rgba(10, 5, 15, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--prm-radius-xl);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.65);
}
.fs-t-banner {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.fs-qr-box {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.15);
}

/* ── Ticket detail page ── */
.eticket-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--prm-radius-xl);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.eticket-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, rgba(220, 38, 38, 0.25), rgba(245, 158, 11, 0.2), rgba(34, 211, 238, 0.15), rgba(220, 38, 38, 0.25));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--prm-transition);
}
.eticket-card:hover::before {
  opacity: 1;
  animation: prmHoloRotate 5s linear infinite;
}
.eticket-card:hover {
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.6), 0 0 60px rgba(220, 38, 38, 0.1);
}
.eticket-banner {
  position: relative;
}
.eticket-banner img {
  transition: transform 0.8s ease;
}
.eticket-card:hover .eticket-banner img {
  transform: scale(1.05);
}
.eticket-banner-overlay {
  background: linear-gradient(to top, rgba(7, 2, 2, 0.98) 0%, rgba(7, 2, 2, 0.5) 50%, transparent 100%);
}
.eticket-banner-title h2 {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}
.eticket-qr-section {
  position: relative;
}
.eticket-qr-wrap {
  background: #fff;
  border-radius: 1rem;
  padding: 0.75rem;
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.15);
}
.eticket-status-badge {
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.eticket-countdown-unit {
  background: var(--prm-glass);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--prm-radius);
  backdrop-filter: blur(8px);
  transition: all var(--prm-transition);
}
.eticket-countdown-unit:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3), 0 0 18px rgba(245, 158, 11, 0.1);
}
.eticket-countdown-num {
  color: #fff;
  text-shadow: 0 0 14px rgba(245, 158, 11, 0.25);
}
.eticket-info-row {
  transition: background var(--prm-transition);
}
.eticket-info-row:hover {
  background: rgba(255, 255, 255, 0.03);
}
.eticket-info-icon {
  background: var(--prm-glass-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.08);
}
.eticket-actions .btn {
  transition: all var(--prm-transition);
}
/* eticket-actions .btn hover kept empty — no upward movement */

/* ── Auth page ── */
.auth-page {
  background: #030305;
}
.auth-left {
  position: relative;
}
.auth-left-bg::after {
  background: linear-gradient(135deg, rgba(3, 3, 5, 0.85) 0%, rgba(40, 10, 80, 0.5) 60%, rgba(220, 38, 38, 0.15) 100%);
}
.auth-left-content .feature-icon {
  background: var(--prm-glass-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
  transition: all var(--prm-transition);
}
.auth-left-content .feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 0 28px rgba(245, 158, 11, 0.18);
}

.auth-right {
  background: linear-gradient(180deg, #0a0505 0%, #070202 100%);
}
.auth-card {
  position: relative;
}
.auth-tabs {
  background: var(--prm-glass);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border-radius: var(--prm-radius);
}
.auth-tab {
  transition: all var(--prm-transition);
}
.auth-tab.active {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.18), rgba(245, 158, 11, 0.1));
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.12);
}

.auth-btn,
.social-btn-full {
  position: relative;
  overflow: hidden;
  transition: all var(--prm-transition);
}
.auth-btn:hover,
.social-btn-full:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.25);
  box-shadow: 0 0 22px rgba(245, 158, 11, 0.1);
}
.auth-btn::after,
.social-btn-full::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-130%) skewX(-18deg);
}
.auth-btn:hover::after,
.social-btn-full:hover::after {
  animation: prmShineSweep 0.9s ease forwards;
}

.password-strength {
  background: rgba(255, 255, 255, 0.05);
}
.strength-bar {
  background: linear-gradient(90deg, var(--rdm-rose), var(--rdm-gold), var(--rdm-green));
}

/* ── Profile page ── */
.profile-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 8, 8, 0.95), rgba(30, 10, 60, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--prm-radius-xl);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.profile-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.profile-avatar {
  border: 3px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.2);
  transition: all var(--prm-transition);
}
.profile-avatar:hover {
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.3);
}
.profile-avatar-edit {
  transition: all var(--prm-transition);
}
.profile-avatar-edit:hover {
  background: rgba(220, 38, 38, 0.9);
  transform: scale(1.1);
}
.profile-badge {
  backdrop-filter: blur(8px);
  transition: all var(--prm-transition);
}
.profile-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.profile-badge.admin {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(245, 158, 11, 0.12));
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: 0 0 18px rgba(220, 38, 38, 0.12);
}

.profile-form-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--prm-radius-xl);
  backdrop-filter: blur(12px);
}
.pfc-header-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(245, 158, 11, 0.12));
  box-shadow: 0 0 18px rgba(220, 38, 38, 0.12);
}

.stat-card {
  background: var(--prm-glass);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--prm-radius);
  backdrop-filter: blur(10px);
  transition: all var(--prm-transition);
}
.stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 24px rgba(245, 158, 11, 0.08);
}
.stat-icon {
  transition: all var(--prm-transition);
}
.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(-4deg);
}

/* ── Transactions page ── */
.txn-sum-card {
  background: var(--prm-glass);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--prm-radius);
  backdrop-filter: blur(10px);
  transition: all var(--prm-transition);
}
.txn-sum-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.18);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 24px rgba(245, 158, 11, 0.08);
}
.txn-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--prm-radius);
  transition: all var(--prm-transition);
}
.txn-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}
.txn-thumb-placeholder {
  background: var(--prm-glass-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.txn-status-badge {
  backdrop-filter: blur(8px);
}

/* ── Wishlist page ── */
.wishlist-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--prm-radius-xl);
  overflow: hidden;
  transition: all var(--prm-transition);
}
.wishlist-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 38, 38, 0.18);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4), 0 0 40px rgba(220, 38, 38, 0.1);
}
.wishlist-card-img {
  position: relative;
  overflow: hidden;
}
.wishlist-card-img img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.wishlist-card:hover .wishlist-card-img img {
  transform: scale(1.08);
}
.wishlist-card-badge {
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.wishlist-card-remove {
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wishlist-card-remove:hover {
  transform: scale(1.12);
  background: rgba(220, 38, 38, 0.2);
  box-shadow: 0 0 16px rgba(220, 38, 38, 0.25);
}
.wishlist-card-price {
  color: var(--gita-gold-light, var(--rdm-rose-light));
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.15);
}

/* ── Activity page ── */
.act-stat-pill {
  background: var(--prm-glass);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--prm-radius);
  backdrop-filter: blur(8px);
  transition: all var(--prm-transition);
}
.act-stat-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}
.act-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--prm-radius);
  transition: all var(--prm-transition);
}
.act-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.09);
  transform: translateX(4px);
}
.act-icon-wrap {
  box-shadow: 0 0 18px rgba(220, 38, 38, 0.1);
}

/* ── Help / privacy / terms pages ── */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(220, 38, 38, 0.12) 0%, transparent 55%);
  pointer-events: none;
}
.hero-badge {
  background: var(--prm-glass-strong);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 24px rgba(220, 38, 38, 0.12);
}
.help-footer,
.help .card,
.info-card,
.faq-item,
.pay-card,
.ql-btn,
.card {
  transition: all var(--prm-transition);
}
.help .card:hover,
.info-card:hover,
.pay-card:hover,
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.ql-btn.primary:hover {
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.35);
}
.ql-btn.ghost:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.08);
}
.tag {
  backdrop-filter: blur(6px);
}

/* ── Seat map page ── */
.seat-map-page {
  background: #030305;
}
.rdm-seatmap-card {
  background: var(--prm-glass);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--prm-radius-xl);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.rdm-seatmap-meta__thumb {
  border: 2px solid rgba(245, 158, 11, 0.2);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
}
.rdm-live-dot {
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
}
.seat-map-viewport {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--prm-radius-xl);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.5), 0 16px 48px rgba(0, 0, 0, 0.35);
}
.seat:not(.occupied):not(.sold) {
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.seat:not(.occupied):not(.sold):hover {
  transform: scale(1.15);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.4);
}
.seat.selected {
  box-shadow: 0 0 18px rgba(220, 38, 38, 0.5);
}
.stage {
  box-shadow: 0 0 40px rgba(245, 158, 11, 0.1);
}

/* ── Shop page ── */
.shop-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--prm-radius-xl);
  overflow: hidden;
  transition: all var(--prm-transition);
}
.shop-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4), 0 0 40px rgba(245, 158, 11, 0.08);
}
.shop-card__media img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.shop-card:hover .shop-card__media img {
  transform: scale(1.08);
}
.shop-card__select {
  transition: all var(--prm-transition);
}
.shop-card:hover .shop-card__select {
  background: var(--gita-rose, var(--rdm-rose));
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.35);
}
.shop-drawer__panel {
  background: linear-gradient(180deg, #120505 0%, #070202 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.55);
}
.shop-modal__box {
  background: linear-gradient(180deg, rgba(20, 10, 10, 0.98), rgba(10, 5, 15, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--prm-radius-xl);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.65);
}
.shop-toast {
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Chat home (dark theme only so the light-mode chat test page isn't broken) ── */
html[data-theme="dark"] .chat-app {
  background: #030305;
}
html[data-theme="dark"] .chat-header {
  background: rgba(7, 2, 2, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
html[data-theme="dark"] .chat-header__avatar {
  border: 2px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.15);
}
html[data-theme="dark"] .chat-header__btn.primary {
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.25);
}
html[data-theme="dark"] .chat-col-left,
html[data-theme="dark"] .chat-col-right {
  background: var(--prm-glass);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--prm-radius-xl);
}

/* ── 404 page ── */
.nf-code {
  background: linear-gradient(135deg, #fff 0%, #FBBF24 40%, #DC2626 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 24px rgba(220, 38, 38, 0.25));
}
.nf-btn--primary {
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.35);
}
.nf-btn--primary:hover {
  box-shadow: 0 8px 28px rgba(220, 38, 38, 0.5);
}
.nf-btn--ghost:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
}

/* ── Floating premium orb accents ── */
.hero,
.auth-left,
.profile-hero {
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 65%);
  filter: blur(70px);
  top: 10%;
  right: -5%;
  pointer-events: none;
  z-index: 0;
  animation: prmFloat 12s ease-in-out infinite;
}

/* ── Trust grid / info grid subtle glow ── */
.rdm-trust-item,
.info-card {
  transition: transform var(--prm-transition), box-shadow var(--prm-transition);
}
.rdm-trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 24px rgba(245, 158, 11, 0.06);
}
.rdm-trust-item:hover .rdm-trust-item__front,
.rdm-trust-item:hover .rdm-trust-item__back {
  border-color: rgba(245, 158, 11, 0.18);
}
.rdm-trust-item__icon {
  transition: transform var(--prm-transition), box-shadow var(--prm-transition);
}
.rdm-trust-item:hover .rdm-trust-item__icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.15);
}

/* ── Search bar premium ── */
.rdm-searchbar,
.hero-search,
.gita-mobile-search .form-input {
  transition: all var(--prm-transition);
}
.rdm-searchbar:focus-within,
.hero-search:focus-within {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.12), 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ── Modal overlays ── */
.rdm-modal,
.rdm-user-menu-overlay,
.modal-overlay {
  backdrop-filter: blur(12px);
}
.rdm-modal {
  background: linear-gradient(180deg, rgba(24, 10, 10, 0.98), rgba(12, 5, 5, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--prm-radius-xl);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.65);
}
.rdm-user-menu {
  background: var(--gita-card-elev, var(--rdm-card, #150707));
  border: 1px solid var(--gita-border-strong, var(--rdm-border-strong, rgba(255, 255, 255, 0.14)));
  border-radius: var(--prm-radius-xl);
  box-shadow: var(--gita-shadow-xl, 0 32px 90px rgba(0, 0, 0, 0.65));
}
[data-theme="light"] .rdm-user-menu {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* One visual-title contract for Main Web navigation and sidebar branding. */
:root { --gita-visual-title-width: 48px; }
.gita-nav__logo::before,
.rdm-sidebar-logo::before {
  content: '';
  display: block;
  flex: 0 0 var(--gita-visual-title-width);
  width: var(--gita-visual-title-width);
  aspect-ratio: 1024 / 591;
  background: center / contain no-repeat url('/images/branding/gita-title-white-256.png');
}
.gita-nav__logo > img,
.rdm-sidebar-logo > img { display: none; }
.gita-nav__word,
.rdm-sidebar-word {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
[data-theme="light"] .gita-nav__logo::before,
[data-theme="light"] .rdm-sidebar-logo::before {
  background-image: url('/images/branding/gita-title-black-256.png');
}
[data-theme="light"] .gita-nav--dark .gita-nav__logo::before {
  background-image: url('/images/branding/gita-title-white-256.png');
}

/* Compact topbar lock-up. The source artwork is trimmed and exported at a
   small 2x size so the header never downloads or renders an oversized logo. */
.gita-nav__logo::before {
  flex: 0 0 104px;
  width: 104px;
  height: 30px;
  aspect-ratio: 2136 / 845;
  background: center / contain no-repeat url('/images/branding/gita-topbar-logo.png');
}
@media (max-width: 640px) {
  .gita-nav__logo::before {
    flex-basis: 88px;
    width: 88px;
    height: 26px;
  }
}

/* Footer brand uses the same transparent visual title in a compact size so
   the footer's existing grid and vertical rhythm remain unchanged. */
.rdm-footer__brand-logo {
  display: block;
  width: 56px;
  aspect-ratio: 1024 / 591;
  margin-bottom: 0.85rem;
  background: center / contain no-repeat url('/images/branding/gita-title-white-256.png');
  text-decoration: none;
}
[data-theme="light"] .rdm-footer__brand-logo {
  background-image: url('/images/branding/gita-title-black-256.png');
}


/* ── Safe hover reduction ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
