:root {
  --bg-base: #070b14;
  --bg-soft: #0c1220;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.095);
  --panel-border: rgba(255, 255, 255, 0.16);
  --panel-border-strong: rgba(255, 255, 255, 0.22);
  --text-strong: #e5e7eb;
  --text-muted: #94a3b8;
  --accent: #38bdf8;
  --accent-2: #818cf8;
  --accent-3: #22d3ee;
  --glass-bg: linear-gradient(145deg, rgba(21, 31, 53, 0.84), rgba(10, 14, 24, 0.74));
  --glass-bg-strong: linear-gradient(150deg, rgba(21, 33, 57, 0.94), rgba(10, 15, 28, 0.88));
  --glass-bg-solid: linear-gradient(155deg, rgba(12, 17, 29, 0.98), rgba(8, 12, 21, 0.95));
  --glass-bg-soft: linear-gradient(160deg, rgba(11, 17, 29, 0.84), rgba(21, 30, 48, 0.64));
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-border-strong: rgba(148, 163, 184, 0.3);
  --glass-highlight: rgba(255, 255, 255, 0.2);
  --glass-edge: rgba(255, 255, 255, 0.05);
  --glass-edge-strong: rgba(148, 163, 184, 0.12);
  --glass-shadow-soft: 0 16px 36px rgba(2, 6, 23, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(148, 163, 184, 0.08);
  --glass-shadow: 0 22px 60px rgba(2, 6, 23, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(148, 163, 184, 0.12);
  --glass-shadow-strong: 0 32px 90px rgba(2, 6, 23, 0.54), inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(148, 163, 184, 0.14);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.5);
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='64' height='64' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  --aurora-bg: radial-gradient(120% 120% at 18% 20%, rgba(94, 234, 212, 0.07), transparent 55%), radial-gradient(110% 120% at 82% 10%, rgba(56, 189, 248, 0.08), transparent 58%), radial-gradient(140% 140% at 70% 88%, rgba(129, 140, 248, 0.07), transparent 60%), #0a0f1a;
}

body {
  font-family: "Manrope", "Space Grotesk", system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #070b14;
  color: var(--text-strong);
  color-scheme: dark;
}

body:not(.no-aurora) {
  background: var(--aurora-bg);
}

body.bg-slate-950:not(.no-aurora) {
  background: var(--aurora-bg);
}

body.no-aurora {
  background: radial-gradient(90% 70% at 50% 0%, rgba(59, 130, 246, 0.08), transparent 45%), radial-gradient(75% 55% at 18% 16%, rgba(94, 234, 212, 0.05), transparent 52%), linear-gradient(180deg, #080d17, #05070d);
}

a,
button,
input,
textarea,
select {
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

button:disabled,
input:disabled,
textarea:disabled,
select:disabled {
  cursor: not-allowed;
}

.background-veil {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.background-veil::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--noise);
  opacity: 0.08;
  mix-blend-mode: soft-light;
}

.background-veil::after {
  content: "";
  position: absolute;
  inset: -12%;
  background: radial-gradient(46% 62% at 20% 20%, rgba(94, 234, 212, 0.1), transparent 55%), radial-gradient(40% 60% at 78% 14%, rgba(56, 189, 248, 0.08), transparent 60%), radial-gradient(60% 60% at 62% 78%, rgba(168, 85, 247, 0.07), transparent 65%), linear-gradient(120deg, rgba(8, 47, 73, 0.42), rgba(15, 23, 42, 0.4), rgba(30, 27, 75, 0.35));
  filter: blur(18px) saturate(105%);
  opacity: 0.42;
  mix-blend-mode: screen;
}

body.no-aurora .background-veil::after {
  background: radial-gradient(70% 50% at 50% -6%, rgba(59, 130, 246, 0.05), transparent 45%);
  filter: none;
  opacity: 0.3;
  mix-blend-mode: normal;
  animation: none;
}

@keyframes aurora-shift {
  0% {
    transform: translate3d(-3%, 2%, 0) scale(1);
  }

  50% {
    transform: translate3d(3%, -2%, 0) scale(1.02);
  }

  100% {
    transform: translate3d(-2%, 1%, 0) scale(1.01);
  }
}

@keyframes slow-pan {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-3%, -2%, 0) scale(1.02);
  }

  100% {
    transform: translate3d(2%, 3%, 0) scale(1.01);
  }
}

@keyframes subtle-zoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.04);
  }
}

.surface-card,
.glass-shell,
.glass-subpanel,
.glass-pill,
.glass-modal-card,
.glass-danger-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.surface-card > *,
.glass-shell > *,
.glass-subpanel > *,
.glass-pill > *,
.glass-modal-card > *,
.glass-danger-panel > * {
  position: relative;
  z-index: 1;
}

.surface-card::before,
.glass-shell::before,
.glass-modal-card::before,
.glass-danger-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04) 30%, rgba(148, 163, 184, 0.03) 68%, transparent 100%);
  opacity: 0.9;
  pointer-events: none;
}

.surface-card::after,
.glass-shell::after,
.glass-modal-card::after,
.glass-danger-panel::after {
  content: "";
  position: absolute;
  inset: auto -8% -28% 52%;
  height: 46%;
  background: radial-gradient(closest-side, rgba(56, 189, 248, 0.18), transparent 78%);
  filter: blur(22px);
  opacity: 0.2;
  pointer-events: none;
}

.glass-subpanel::before,
.glass-pill::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02) 48%, transparent 100%);
  opacity: 0.78;
  pointer-events: none;
}

.surface-card,
.glass-shell,
:where(div, section, article, aside)[class*="bg-white/10"][class*="backdrop-blur-xl"][class*="border-white/20"],
:where(div, section, article, aside)[class*="bg-white/10"][class*="backdrop-blur-lg"][class*="border-white/20"] {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 0 1px var(--glass-edge), var(--glass-shadow);
  backdrop-filter: blur(15px) saturate(128%);
  -webkit-backdrop-filter: blur(15px) saturate(128%);
}

.surface-card:hover,
.glass-shell:hover,
:where(div, section, article, aside)[class*="bg-white/10"][class*="backdrop-blur-xl"][class*="border-white/20"]:hover,
:where(div, section, article, aside)[class*="bg-white/10"][class*="backdrop-blur-lg"][class*="border-white/20"]:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.14), 0 26px 72px rgba(2, 6, 23, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.11), inset 0 -1px 0 rgba(148, 163, 184, 0.12);
}

.surface-card.strong {
  background: var(--glass-bg-strong);
  border: 1px solid var(--panel-border-strong);
  box-shadow: 0 0 0 1px var(--glass-edge-strong), var(--glass-shadow-strong);
}

.glass-rail,
:where(header)[class*="bg-black/35"][class*="backdrop-blur-lg"],
:where(aside)[class*="bg-slate-900/90"][class*="backdrop-blur-lg"],
:where(div)[class*="bg-slate-900/95"][class*="backdrop-blur-lg"] {
  background: linear-gradient(180deg, rgba(7, 10, 18, 0.88), rgba(10, 14, 24, 0.74));
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 26px 70px rgba(2, 6, 23, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(128%);
  -webkit-backdrop-filter: blur(14px) saturate(128%);
}

.glass-subpanel,
:where(div, section, article)[class*="bg-black/30"][class*="border-white/10"],
:where(div, section, article)[class*="bg-slate-900/70"][class*="border-white/10"] {
  background: var(--glass-bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.025), var(--glass-shadow-soft);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
}

.glass-pill,
:where(a, button)[class*="bg-white/10"][class*="ring-white/20"],
:where(a, button)[class*="bg-white/10"][class*="hover:bg-white/20"],
:where(button)[class*="bg-white/5"][class*="border-white/10"] {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.025), 0 12px 30px rgba(2, 6, 23, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px) saturate(115%);
  -webkit-backdrop-filter: blur(8px) saturate(115%);
}

.glass-pill:hover,
:where(a, button)[class*="bg-white/10"][class*="ring-white/20"]:hover,
:where(a, button)[class*="bg-white/10"][class*="hover:bg-white/20"]:hover,
:where(button)[class*="bg-white/5"][class*="border-white/10"]:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 16px 34px rgba(2, 6, 23, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.glass-pill:disabled,
:where(a, button)[class*="bg-white/10"][class*="ring-white/20"]:disabled,
:where(a, button)[class*="bg-white/10"][class*="hover:bg-white/20"]:disabled,
:where(button)[class*="bg-white/5"][class*="border-white/10"]:disabled {
  transform: none;
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.glass-modal-card,
:where(div)[class*="max-w-md"][class*="rounded-2xl"][class*="bg-slate-900"][class*="border-white/10"],
:where(div)[class*="max-w-lg"][class*="rounded-2xl"][class*="bg-slate-900"][class*="border-white/10"] {
  background: var(--glass-bg-solid);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 1px var(--glass-edge-strong), var(--glass-shadow-strong);
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
}

.glass-danger-panel,
:where(div)[class*="bg-red-500/5"][class*="border-red-500/40"] {
  background: linear-gradient(160deg, rgba(69, 10, 10, 0.54), rgba(28, 10, 16, 0.72));
  border: 1px solid rgba(248, 113, 113, 0.35);
  box-shadow: 0 24px 60px rgba(34, 8, 12, 0.32), inset 0 1px 0 rgba(254, 202, 202, 0.06);
}

.card-free {
  border-color: rgba(148, 163, 184, 0.35) !important;
  background: linear-gradient(150deg, rgba(100, 116, 139, 0.12), rgba(12, 18, 32, 0.88)) !important;
}

.card-free:hover {
  border-color: rgba(148, 163, 184, 0.5) !important;
}

.card-vip {
  border-color: rgba(251, 191, 36, 0.45) !important;
  background: linear-gradient(150deg, rgba(251, 191, 36, 0.12), rgba(12, 18, 32, 0.9)) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(251, 191, 36, 0.12), inset 0 1px 0 rgba(251, 191, 36, 0.15) !important;
}

.card-vip:hover {
  border-color: rgba(251, 191, 36, 0.6) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 28px rgba(251, 191, 36, 0.18), inset 0 1px 0 rgba(251, 191, 36, 0.2) !important;
}

.vip-badge,
.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.vip-badge {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.22), rgba(245, 158, 11, 0.18));
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.free-badge {
  background: rgba(148, 163, 184, 0.15);
  color: #94a3b8;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.nav-item,
.mobile-nav-item,
.mobile-nav-link {
  position: relative;
  border: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0);
}

.nav-item:hover,
.mobile-nav-item:hover,
.mobile-nav-link:hover {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateX(2px);
}

.nav-item-active {
  background: linear-gradient(120deg, rgba(56, 189, 248, 0.18), rgba(96, 165, 250, 0.08) 45%, rgba(168, 85, 247, 0.14));
  border-left: 3px solid var(--accent);
  border-color: rgba(56, 189, 248, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 16px 36px rgba(2, 6, 23, 0.22);
  color: var(--text-strong);
}

.chip-soft {
  background: rgba(56, 189, 248, 0.12);
  color: #c5f2ff;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(125, 211, 252, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0b0f1b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(56, 189, 248, 0.32);
  transform: translateY(-1px);
}

.btn-ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-strong);
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  border-color: rgba(255, 255, 255, 0.18);
}

:where(input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="range"]), textarea, select) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 24px rgba(2, 6, 23, 0.16);
  backdrop-filter: blur(8px) saturate(112%);
  -webkit-backdrop-filter: blur(8px) saturate(112%);
  color: var(--text-strong);
}

:where(input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="range"]), textarea, select):hover {
  border-color: rgba(255, 255, 255, 0.18);
}

:where(input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="range"]), textarea, select):focus {
  outline: none;
  border-color: rgba(96, 165, 250, 0.62);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.16), 0 12px 28px rgba(2, 6, 23, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

:where(input, textarea)::placeholder {
  color: rgba(148, 163, 184, 0.9);
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: #38bdf8;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.7);
}

select option {
  background: #0b1220;
  color: #e5e7eb;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

thead th {
  font-weight: 600;
  letter-spacing: 0.01em;
}

tbody tr {
  transition: background-color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

#calls-table tbody td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#calls-table tbody tr:last-child td {
  border-bottom: none;
}

:where(pre) {
  background: linear-gradient(180deg, rgba(6, 9, 18, 0.9), rgba(10, 14, 24, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1rem 1.125rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 14px 30px rgba(2, 6, 23, 0.2);
}

:where(code:not(pre code)) {
  padding: 0.18rem 0.45rem;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 45;
}

.support-fab button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0b0f1b;
  box-shadow: 0 16px 42px rgba(56, 189, 248, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.support-fab button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(99, 102, 241, 0.32);
}

.support-modal {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 15, 0.74);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 50;
}

.support-modal.active {
  display: flex;
}

.support-modal .card {
  max-width: 420px;
  width: 100%;
  background: var(--glass-bg-solid);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--glass-shadow-strong);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
}

body.dashboard-shell .background-veil::after {
  opacity: 0.32;
  filter: blur(14px) saturate(104%);
  animation: none;
}

body.dashboard-shell .surface-card,
body.dashboard-shell .glass-shell,
body.dashboard-shell .glass-subpanel,
body.dashboard-shell .glass-modal-card {
  background: linear-gradient(155deg, rgba(18, 26, 44, 0.94), rgba(10, 14, 24, 0.9));
}

body.dashboard-shell .surface-card,
body.dashboard-shell .glass-shell,
body.dashboard-shell .glass-subpanel,
body.dashboard-shell .glass-pill,
body.dashboard-shell .glass-modal-card,
body.dashboard-shell .glass-danger-panel {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.1), 0 14px 30px rgba(2, 6, 23, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(148, 163, 184, 0.1);
}

body.dashboard-shell .surface-card.strong {
  background: linear-gradient(150deg, rgba(22, 35, 59, 0.98), rgba(11, 16, 29, 0.92));
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.14), 0 18px 38px rgba(2, 6, 23, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(148, 163, 184, 0.12);
}

body.dashboard-shell .glass-danger-panel {
  background: linear-gradient(160deg, rgba(78, 14, 18, 0.62), rgba(31, 10, 17, 0.76));
  border-color: rgba(248, 113, 113, 0.42);
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.12), 0 14px 30px rgba(34, 8, 12, 0.28), inset 0 1px 0 rgba(254, 202, 202, 0.08), inset 0 -1px 0 rgba(248, 113, 113, 0.1);
}

body.dashboard-shell .surface-card,
body.dashboard-shell .glass-shell,
body.dashboard-shell .glass-subpanel,
body.dashboard-shell .glass-pill,
body.dashboard-shell .glass-modal-card,
body.dashboard-shell .glass-danger-panel,
body.dashboard-shell :where(input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="range"]), textarea, select) {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.dashboard-shell .glass-rail {
  background: linear-gradient(180deg, rgba(8, 12, 22, 0.94), rgba(11, 16, 28, 0.86));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.06), 0 20px 46px rgba(2, 6, 23, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px) saturate(115%);
  -webkit-backdrop-filter: blur(10px) saturate(115%);
}

body.dashboard-shell .surface-card::after,
body.dashboard-shell .glass-shell::after,
body.dashboard-shell .glass-modal-card::after,
body.dashboard-shell .glass-danger-panel::after {
  display: none;
}

.support-modal img {
  width: 240px;
  height: 240px;
  margin: 0 auto;
  border-radius: 16px;
  background: #0b1220;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-modal h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

.support-modal p {
  color: var(--text-muted);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.outline-muted {
  outline-color: rgba(56, 189, 248, 0.5);
}

@media (max-width: 768px) {
  .surface-card::after,
  .glass-shell::after,
  .glass-rail::after,
  .glass-modal-card::after,
  .glass-danger-panel::after {
    inset: auto -32% -60% 26%;
    opacity: 0.42;
  }

  .support-fab {
    right: 1rem;
    bottom: 1rem;
  }
}
