/* JayWatches.gg - shared styles */

:root {
  --bg-void: #0B0E16;
  --bg-panel: #131826;
  --ice-glow: #4FB8F0;
  --ember: #E8862E;
  --mythic-violet: #7C5CBF;
  --parchment: #E9E6DC;
  --steel: #8A93A6;
  --border-rune: rgba(79, 184, 240, 0.25);
  --focus-ring: 0 0 0 2px var(--bg-void), 0 0 0 4px var(--ice-glow);
  --font-display: "Cinzel", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-data: "JetBrains Mono", ui-monospace, monospace;
  --radius: 6px;
  --max: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--parchment);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(79, 184, 240, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(124, 92, 191, 0.08), transparent 50%),
    radial-gradient(ellipse 50% 35% at 0% 70%, rgba(232, 134, 46, 0.06), transparent 45%),
    var(--bg-void);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ice-glow);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #7cccf5;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

h1,
h2,
h3,
h4,
.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--parchment);
  margin: 0 0 0.6em;
}

.stat {
  font-family: var(--font-data);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(11, 14, 22, 0.92);
  border-bottom: 1px solid var(--border-rune);
  backdrop-filter: blur(10px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--parchment);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.brand-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem 1rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--steel);
  text-decoration: none;
  font-size: 0.92rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ice-glow);
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 3rem 0;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head p {
  margin: 0;
  color: var(--steel);
  max-width: 52ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--ember);
  color: #1a1008;
  border-color: #f0a35a;
}

.btn-primary:hover:not(:disabled) {
  background: #f09642;
  color: #1a1008;
}

.btn-secondary {
  background: transparent;
  color: var(--parchment);
  border-color: var(--border-rune);
}

.btn-secondary:hover:not(:disabled) {
  border-color: var(--ice-glow);
  color: var(--ice-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--steel);
  border-color: transparent;
  padding-inline: 0.75rem;
}

.btn-ghost:hover:not(:disabled) {
  color: var(--ice-glow);
}

.btn-block {
  width: 100%;
}

/* Rune circle motif - hero + confirmation only */
.rune-frame {
  position: relative;
  padding: 1.75rem;
  border-radius: 50%;
  isolation: isolate;
}

.rune-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(79, 184, 240, 0.45);
  background:
    repeating-conic-gradient(
      from 0deg,
      transparent 0deg 6deg,
      rgba(79, 184, 240, 0.55) 6deg 7deg,
      transparent 7deg 18deg
    );
  mask: radial-gradient(farthest-side, transparent calc(100% - 10px), #000 calc(100% - 9px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 10px), #000 calc(100% - 9px));
  pointer-events: none;
  animation: rune-spin 48s linear infinite;
}

.rune-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(79, 184, 240, 0.2);
  pointer-events: none;
}

@keyframes rune-spin {
  to {
    transform: rotate(360deg);
  }
}

.rune-frame-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

/* -- Home hero -- */
.hero {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 68px);
  padding: 2.5rem 0 3rem;
}

.hero-composition {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  width: min(100%, 520px);
}

.hero .rune-frame {
  width: min(100%, 280px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 0.25rem;
}

.hero-logo {
  width: 72%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(79, 184, 240, 0.25));
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 6vw, 3rem);
  letter-spacing: 0.06em;
  margin: 0;
  color: var(--parchment);
  text-shadow: 0 0 40px rgba(79, 184, 240, 0.2);
}

.hero-tagline {
  margin: 0;
  color: var(--steel);
  font-size: 1.02rem;
  max-width: 36ch;
}

.hero-cta {
  margin-top: 0.5rem;
}

.bio {
  color: var(--parchment);
  max-width: 62ch;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1.05rem;
}

.link-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 600px) {
  .link-cards {
    grid-template-columns: 1fr;
  }
}

.link-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  color: var(--parchment);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.link-card:hover {
  border-color: var(--ice-glow);
  background: #171d2e;
  color: var(--parchment);
}

.link-card-icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-rune);
  border-radius: 50%;
  color: var(--ice-glow);
  font-size: 1.1rem;
}

.link-card-label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.home-cta-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.site-footer {
  border-top: 1px solid var(--border-rune);
  padding: 2rem 0;
  margin-top: 1rem;
  color: var(--steel);
  font-size: 0.9rem;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--steel);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ice-glow);
}

/* -- Takeover page -- */
.page-hero {
  padding: 2.5rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 0.4rem;
}

.page-hero p {
  margin: 0;
  color: var(--steel);
  max-width: 50ch;
}

.panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.panel + .panel {
  margin-top: 1rem;
}

.disclaimer {
  border-color: rgba(232, 134, 46, 0.4);
  background: linear-gradient(180deg, rgba(232, 134, 46, 0.08), var(--bg-panel));
}

.disclaimer h2 {
  font-size: 1.15rem;
  color: var(--ember);
  margin-bottom: 0.75rem;
}

.disclaimer p {
  margin: 0 0 0.85rem;
  color: var(--parchment);
  font-size: 0.95rem;
}

.disclaimer p:last-child {
  margin-bottom: 0;
}

.policy-panel {
  border-color: rgba(79, 184, 240, 0.35);
}

.policy-panel h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--ice-glow);
}

.policy-panel p {
  margin: 0;
  color: var(--steel);
  font-size: 0.92rem;
}

.menu-category {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}

.menu-category:first-child {
  margin-top: 1.75rem;
}

.menu-category::before {
  content: "";
  display: block;
  height: 2px;
  margin: 0 0 1rem;
  border: 0;
  background-image: linear-gradient(
    90deg,
    rgba(79, 184, 240, 0.08) 0%,
    rgba(79, 184, 240, 0.45) 22%,
    #7ecfff 50%,
    rgba(79, 184, 240, 0.45) 78%,
    rgba(79, 184, 240, 0.08) 100%
  );
  background-size: 100% 100%;
}

.menu-category h2 {
  font-size: calc(1.35rem + 4px);
  margin: 0 0 0.35rem;
}

.menu-note {
  color: var(--steel);
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.85rem;
}

.stat-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.1rem 1.15rem;
  background:
    linear-gradient(145deg, rgba(79, 184, 240, 0.06), transparent 40%),
    var(--bg-panel);
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  min-height: 140px;
}

.stat-tile.mythic {
  border-color: rgba(124, 92, 191, 0.55);
  background:
    linear-gradient(145deg, rgba(124, 92, 191, 0.18), transparent 45%),
    var(--bg-panel);
}

.stat-tile-icon {
  font-size: 1.25rem;
  line-height: 1;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  align-self: center;
  border: 1px solid var(--border-rune);
  border-radius: 4px;
  background: rgba(11, 14, 22, 0.5);
}

.stat-tile h3 {
  font-size: 1.05rem;
  margin: 0;
}

.stat-tile p {
  margin: 0;
  color: var(--steel);
  font-size: 0.88rem;
  flex: 1;
}

.stat-tile .price-cap {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.35rem 0.55rem;
  background: rgba(11, 14, 22, 0.65);
  border: 1px solid rgba(232, 134, 46, 0.35);
  border-radius: 3px;
  color: var(--ember);
  font-size: 0.82rem;
}

.stat-tile.mythic .price-cap {
  border-color: rgba(124, 92, 191, 0.5);
  color: #b9a0e8;
}

.warn-note {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-top: 0.75rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(232, 134, 46, 0.35);
  border-radius: var(--radius);
  color: #f0c48a;
  font-size: 0.88rem;
  background: rgba(232, 134, 46, 0.06);
}

.discount-box {
  margin-top: 2rem;
  display: grid;
  gap: 0.65rem;
  max-width: 420px;
}

.discount-box label {
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.discount-row {
  display: flex;
  gap: 0.5rem;
}

.field-input,
.field-select,
textarea.field-input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  background: var(--bg-void);
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.field-input::placeholder {
  color: #5c6578;
}

.discount-hint {
  margin: 0;
  color: var(--steel);
  font-size: 0.85rem;
}

.discount-msg {
  margin: 0;
  font-size: 0.88rem;
  min-height: 1.2em;
}

.discount-msg.ok {
  color: #6dcf9a;
}

.discount-msg.err {
  color: #e07a7a;
}

/* Accordion */
.guide-intro {
  color: var(--steel);
  margin: 0 0 1.25rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.accordion-item {
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  background: var(--bg-panel);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  background: transparent;
  border: 0;
  color: var(--parchment);
  font-family: var(--font-display);
  font-size: 0.98rem;
  text-align: left;
  cursor: pointer;
}

.accordion-trigger:hover {
  background: rgba(79, 184, 240, 0.05);
}

.accordion-chevron {
  flex-shrink: 0;
  color: var(--ice-glow);
  transition: transform 0.2s ease;
  font-size: 0.85rem;
}

.accordion-item[data-open="true"] .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-panel {
  display: none;
  padding: 0 1.1rem 1.15rem;
  border-top: 1px solid rgba(79, 184, 240, 0.12);
}

.accordion-item[data-open="true"] .accordion-panel {
  display: block;
}

.accordion-panel p {
  margin: 0.85rem 0 0.9rem;
  color: var(--steel);
  font-size: 0.92rem;
}

.shot-stack {
  display: grid;
  gap: 0.75rem;
}

.shot-stack img {
  width: 100%;
  border: 1px solid var(--border-rune);
  border-radius: 4px;
  background: var(--bg-void);
}

/* Booking CTA band */
.book-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0 2rem;
  padding: 1.25rem 1.35rem;
  background:
    linear-gradient(90deg, rgba(232, 134, 46, 0.12), rgba(79, 184, 240, 0.08)),
    var(--bg-panel);
  border: 1px solid rgba(232, 134, 46, 0.35);
  border-radius: var(--radius);
}

.book-band p {
  margin: 0;
  color: var(--steel);
  font-size: 0.92rem;
}

.book-band h2 {
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
}

/* Wizard modal */
.wizard-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: stretch;
  justify-content: center;
  padding: 1rem;
  background: rgba(5, 7, 12, 0.78);
  overflow-y: auto;
}

.wizard-overlay[data-open="true"] {
  display: flex;
}

.wizard {
  position: relative;
  width: min(100%, 920px);
  margin: auto;
  background: var(--bg-void);
  border: 1px solid var(--border-rune);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 260px;
  max-height: min(92vh, 880px);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

@media (max-width: 800px) {
  .wizard {
    grid-template-columns: 1fr;
    max-height: none;
  }
}

.wizard-main {
  padding: 1.35rem 1.4rem 1.5rem;
  overflow-y: auto;
  min-height: 420px;
}

.wizard-summary {
  border-left: 1px solid var(--border-rune);
  background: var(--bg-panel);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
}

@media (max-width: 800px) {
  .wizard-summary {
    border-left: 0;
    border-top: 1px solid var(--border-rune);
    order: 2;
  }
}

.wizard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.wizard-top h2 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
}

.wizard-step-label {
  margin: 0;
  color: var(--steel);
  font-size: 0.85rem;
  font-family: var(--font-data);
}

.wizard-close {
  background: transparent;
  border: 1px solid var(--border-rune);
  color: var(--steel);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.wizard-close:hover {
  color: var(--parchment);
  border-color: var(--ice-glow);
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: step-in 0.25s ease;
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.65rem;
}

.option-card {
  text-align: left;
  padding: 0.95rem 1rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  color: var(--parchment);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.option-card:hover,
.option-card[aria-pressed="true"] {
  border-color: var(--ice-glow);
  background: #171d2e;
}

.option-card.mythic {
  border-color: rgba(124, 92, 191, 0.45);
}

.option-card.mythic:hover,
.option-card.mythic[aria-pressed="true"] {
  border-color: var(--mythic-violet);
}

.option-card .opt-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.option-card .opt-meta {
  display: block;
  color: var(--ember);
  font-family: var(--font-data);
  font-size: 0.78rem;
}

.option-card .opt-desc {
  display: block;
  margin-top: 0.35rem;
  color: var(--steel);
  font-size: 0.8rem;
}

.qty-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
}

.qty-row label {
  color: var(--steel);
  font-size: 0.9rem;
}

.qty-row input {
  width: 5rem;
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.summary-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0;
  color: var(--ice-glow);
}

.summary-empty {
  color: var(--steel);
  font-size: 0.88rem;
  margin: 0;
}

.summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(79, 184, 240, 0.1);
}

.summary-list .item-name {
  color: var(--parchment);
}

.summary-list .item-price {
  color: var(--ember);
  font-family: var(--font-data);
  white-space: nowrap;
}

.summary-totals {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-rune);
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
}

.summary-totals .row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--steel);
}

.summary-totals .row.final {
  color: var(--parchment);
  font-size: 1.05rem;
  margin-top: 0.25rem;
}

.summary-totals .row.final .stat {
  color: var(--ember);
}

.form-stack {
  display: grid;
  gap: 1rem;
  max-width: 420px;
}

.form-stack label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--steel);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--parchment);
  cursor: pointer;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.checklist li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  padding: 0.55rem 0.7rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--steel);
}

.checklist li::before {
  content: "☐";
  color: var(--ice-glow);
  font-family: var(--font-data);
  flex-shrink: 0;
}

.review-block {
  background: var(--bg-panel);
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
}

.review-block h3 {
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
  color: var(--ice-glow);
}

.review-block ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--parchment);
}

.review-block li {
  margin-bottom: 0.35rem;
}

.review-meta {
  margin: 0.35rem 0 0;
  color: var(--steel);
  font-size: 0.9rem;
}

/* Confirmation with rune frame */
.confirm-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 1rem 0;
}

.confirm-wrap .rune-frame {
  width: min(100%, 320px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.confirm-card {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  max-width: 240px;
}

.confirm-card .order-num {
  display: block;
  margin: 0.5rem 0 0.75rem;
  color: var(--ember);
  font-size: 1.05rem;
}

.confirm-card p {
  margin: 0;
  color: var(--steel);
  font-size: 0.88rem;
}

.confirm-copy {
  max-width: 48ch;
  margin: 0;
  color: var(--parchment);
  font-size: 0.95rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.addon-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.55rem 0.75rem;
  border: 1px dashed var(--border-rune);
  border-radius: var(--radius);
  background: rgba(11, 14, 22, 0.4);
  color: var(--parchment);
  cursor: pointer;
  font-size: 0.88rem;
  width: 100%;
  text-align: left;
}

.addon-chip input {
  accent-color: var(--ember);
}

.addon-chip .stat {
  color: var(--ember);
  margin-left: auto;
}

.custom-quote {
  border-style: dashed;
}

.custom-quote .price-cap {
  color: var(--mythic-violet);
  border-color: rgba(124, 92, 191, 0.45);
}

/* ============================================================
   v2 layout & components - design tokens above stay unchanged
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 14, 22, 0.94);
  border-bottom: 1px solid var(--border-rune);
  backdrop-filter: blur(10px);
  padding: 0;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  flex-wrap: wrap;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.85rem 1.1rem;
  flex-wrap: wrap;
}

.header-right {
  margin-left: auto;
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: #5865F2;
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none !important;
  border: 1px solid #7289da;
  transition: background 0.15s ease;
}

.btn-discord:hover {
  background: #4752c4;
  color: #fff !important;
}

.account-nav-link {
  color: var(--steel);
  text-decoration: none;
  font-size: 0.92rem;
}

.account-nav-link:hover {
  color: var(--ice-glow);
}

.avatar-circle {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  border: 1px solid var(--border-rune);
  background: var(--bg-panel);
  color: var(--ice-glow);
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.footer-simple {
  text-align: center;
  color: var(--steel);
  font-size: 0.85rem;
}

.footer-simple p {
  margin: 0;
}

/* Heading system - live metallic/chrome text (not images)
   Standardized 3-stop gradient: blue → white → orange, sized to 100% of text width */
.title-page,
.title-section {
  background-image: linear-gradient(90deg, #4FB8F0 0%, #f4f7fb 50%, #E8862E 100%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.title-page {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 4rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.35))
    drop-shadow(0 3px 10px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 18px rgba(79, 184, 240, 0.22));
}

.title-section {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.5vw, 2.55rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.3))
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 14px rgba(79, 184, 240, 0.18));
}

.title-rule {
  display: block;
  width: min(100%, 320px);
  margin: 0.85rem auto 1.25rem;
  border: 0;
  border-bottom: 1px solid var(--border-rune);
}

.title-rule-left {
  margin-left: 0;
  margin-right: auto;
}

.section-gradient-rule {
  display: block;
  width: min(100% - 2rem, 1100px);
  height: 2px;
  margin: 1.75rem auto 0.25rem;
  border: 0;
  background-image: linear-gradient(90deg, #4FB8F0 0%, #f4f7fb 50%, #E8862E 100%);
  background-size: 100% 100%;
  opacity: 0.9;
}

.title-block-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-site-heading {
  text-align: center;
  margin-bottom: 1.35rem;
}

.hero-site-subtitle {
  margin: 0.55rem 0 0;
  color: var(--steel);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

/* Home video hero */
.video-hero {
  padding: 2rem 0 1.5rem;
}

.video-hero-stage {
  position: relative;
  width: min(100%, 920px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.video-stack {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-rune);
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.video-stack video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.video-stack video.active {
  opacity: 1;
}

.star-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  width: min(100%, 920px);
  margin: 0.85rem auto 0;
  padding: 0;
}

.star-tag {
  position: static;
  border: 1px solid rgba(79, 184, 240, 0.35);
  background: rgba(11, 14, 22, 0.72);
  color: var(--parchment);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  animation: tag-glimmer 3.6s ease-in-out infinite;
}

.star-tag:nth-child(1) { animation-delay: 0s; }
.star-tag:nth-child(2) { animation-delay: 0.4s; }
.star-tag:nth-child(3) { animation-delay: 0.8s; }
.star-tag:nth-child(4) { animation-delay: 1.2s; }
.star-tag:nth-child(5) { animation-delay: 1.6s; }
.star-tag:nth-child(6) { animation-delay: 2s; }
.star-tag:nth-child(7) { animation-delay: 2.4s; }
.star-tag:nth-child(8) { animation-delay: 2.8s; }
.star-tag:nth-child(9) { animation-delay: 3.2s; }

.star-tag:hover,
.star-tag.active {
  border-color: var(--ice-glow);
  color: var(--ice-glow);
  box-shadow: 0 0 14px rgba(79, 184, 240, 0.25);
}

@keyframes tag-glimmer {
  0%, 100% { opacity: 0.72; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

.video-hero-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.video-hero-cta .btn {
  font-size: 1.05rem;
  padding: 0.95rem 1.8rem;
}

.menu-title-center {
  text-align: center;
}

.menu-title-center .section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-title-center .section-head p {
  text-align: center;
  max-width: 62ch;
}

.stat-tile {
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.stat-tile:hover {
  border-color: var(--ice-glow);
  transform: translateY(-2px);
}

.debrief-banner {
  margin-top: 1.5rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(232, 134, 46, 0.35);
  border-radius: var(--radius);
  background: rgba(232, 134, 46, 0.07);
  color: var(--parchment);
  font-size: 0.92rem;
  text-align: center;
}

/* Service detail modal */
.service-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(5, 7, 12, 0.78);
}

.service-modal-overlay[data-open="true"] {
  display: flex;
}

.service-modal {
  width: min(100%, 560px);
  background: var(--bg-panel);
  border: 1px solid var(--border-rune);
  border-radius: 8px;
  padding: 1.35rem 1.4rem;
  max-height: min(86vh, 720px);
  overflow-y: auto;
}

.service-modal h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.service-modal .price-cap {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.55rem;
  background: rgba(11, 14, 22, 0.65);
  border: 1px solid rgba(232, 134, 46, 0.35);
  border-radius: 3px;
  color: var(--ember);
  font-size: 0.85rem;
}

.service-modal p {
  margin: 0 0 1.25rem;
  color: var(--steel);
  font-size: 0.95rem;
}

.service-modal-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* About */
.about-split {
  display: grid;
  grid-template-columns: minmax(200px, 280px) 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 720px) {
  .about-split {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .about-copy .title-rule-left {
    margin-left: auto;
    margin-right: auto;
  }
}

.portrait-frame.rune-frame {
  width: min(100%, 260px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  padding: 10px;
}

.portrait-frame::before {
  animation: rune-spin 72s linear infinite reverse;
}

.portrait-frame .pulse-ring {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(232, 134, 46, 0.35);
  animation: pulse-ring 3.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 0.35; transform: scale(0.98); }
  50% { opacity: 0.85; transform: scale(1.02); }
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.about-copy p {
  color: var(--parchment);
  margin: 0 0 1rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.testimonial-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  padding: 1.15rem;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.testimonial-head img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-rune);
}

.testimonial-head h3 {
  margin: 0;
  font-size: 1.05rem;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--steel);
  font-size: 0.92rem;
}

/* Links tabs */
.links-tabs {
  border: 1px solid var(--border-rune);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-panel);
}

.tab-bar {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border-rune);
}

.tab-btn {
  flex: 1;
  min-width: 120px;
  padding: 0.85rem 0.75rem;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(79, 184, 240, 0.12);
  color: var(--steel);
  font-family: var(--font-display);
  font-size: 0.9rem;
  cursor: pointer;
}

.tab-btn:last-child { border-right: 0; }

.tab-btn[aria-selected="true"] {
  color: var(--ice-glow);
  background: rgba(79, 184, 240, 0.08);
}

.tab-body,
.tab-body-vertical {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.tab-media {
  position: relative;
  background: #0a0c12;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 480px;
}

.tab-media img,
.tab-media iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  display: block;
}

.tab-media iframe {
  min-height: 280px;
}

.tab-copy {
  padding: 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-start;
  width: 100%;
}

.tab-copy p {
  margin: 0;
  color: var(--steel);
}

/* Creator carousel - large feature player, inline playback */
.creator-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  width: 100%;
  max-width: 920px;
  margin: 0 auto 1.75rem;
}

.carousel-slide {
  width: 100%;
  min-width: 0;
}

.carousel-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--border-rune);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-panel);
  color: inherit;
  cursor: pointer;
  text-align: left;
  font: inherit;
  position: relative;
}

.carousel-thumb:hover {
  border-color: var(--ice-glow);
}

.carousel-thumb img,
.carousel-player iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0a0c12;
  border: 0;
}

.carousel-player {
  border: 1px solid var(--border-rune);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-panel);
}

.carousel-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(11, 14, 22, 0.72);
  border: 2px solid rgba(79, 184, 240, 0.65);
  color: var(--parchment);
  font-size: 1.35rem;
  pointer-events: none;
}

.carousel-caption {
  padding: 0.85rem 1rem;
  font-family: var(--font-display);
}

.carousel-arrow {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid var(--border-rune);
  background: var(--bg-panel);
  color: var(--ice-glow);
  cursor: pointer;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.creator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (max-width: 800px) {
  .creator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.creator-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--parchment);
  border: 1px solid var(--border-rune);
  transition: transform 0.15s ease;
}

.creator-card:hover {
  transform: translateY(-2px);
  color: var(--parchment);
}

.creator-card img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.15);
}

.creator-card span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-align: center;
}

.creator-card.theme-orange { background: linear-gradient(160deg, #3a2410, #1a120a); border-color: rgba(232, 160, 46, 0.45); }
.creator-card.theme-navy { background: linear-gradient(160deg, #0f1a2e, #0b0e16); border-color: rgba(79, 184, 240, 0.4); }
.creator-card.theme-purple { background: linear-gradient(160deg, #241636, #0e1520); border-color: rgba(124, 92, 191, 0.5); }
.creator-card.theme-gold { background: linear-gradient(160deg, #3a3018, #16120a); border-color: rgba(212, 175, 95, 0.45); }
.creator-card.theme-green { background: linear-gradient(160deg, #13261a, #0b120e); border-color: rgba(90, 180, 110, 0.45); }
.creator-card.theme-cyan { background: linear-gradient(160deg, #0e2430, #0b1218); border-color: rgba(70, 200, 220, 0.45); }
.creator-card.theme-red { background: linear-gradient(160deg, #2a1218, #100c10); border-color: rgba(220, 80, 90, 0.45); }
.creator-card.theme-mono { background: linear-gradient(160deg, #1a1a1a, #0a0a0a); border-color: rgba(220, 220, 220, 0.3); }

/* Support */
.support-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 800px) {
  .support-layout { grid-template-columns: 1fr; }
}

.support-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-info-panel p {
  margin: 0 0 0.75rem;
  color: var(--steel);
}

.contact-info-panel a {
  color: var(--ice-glow);
}

/* Booking full-page wizard */
.booking-shell {
  width: min(100% - 2rem, 1100px);
  margin: 1.5rem auto 3rem;
  border: 1px solid var(--border-rune);
  border-radius: 10px;
  background: var(--bg-panel);
  overflow: hidden;
  min-height: 70vh;
}

.booking-progress {
  display: flex;
  gap: 0.4rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-rune);
  flex-wrap: wrap;
  align-items: center;
}

.booking-progress .dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #2a3348;
}

.booking-progress .dot.active {
  background: var(--ice-glow);
  box-shadow: 0 0 8px rgba(79, 184, 240, 0.5);
}

.booking-progress .dot.done {
  background: var(--ember);
}

.booking-progress-label {
  margin-left: auto;
  color: var(--steel);
  font-family: var(--font-data);
  font-size: 0.8rem;
}

.booking-inner {
  position: relative;
  padding: 1.35rem 1.4rem 1.75rem;
  min-height: 520px;
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
  animation: fade-step 0.28s ease;
}

@keyframes fade-step {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: none; }
}

.auth-gate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 720px) {
  .auth-gate-grid { grid-template-columns: 1fr; }
}

.auth-panel h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.helper-text {
  color: var(--steel);
  font-size: 0.85rem;
  margin: 0.25rem 0 0;
}

.field-error {
  color: #e07a7a;
  font-size: 0.85rem;
  margin: 0.5rem 0 0;
}

.checkbox-row {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 1rem 0;
  color: var(--parchment);
  font-size: 0.92rem;
}

.checkbox-row input {
  margin-top: 0.25rem;
  accent-color: var(--ember);
}

/* Hero roster grid */
.hero-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.hero-filters button {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-rune);
  background: transparent;
  color: var(--steel);
  cursor: pointer;
  font-size: 0.82rem;
}

.hero-filters button[aria-pressed="true"] {
  color: var(--ice-glow);
  border-color: var(--ice-glow);
  background: rgba(79, 184, 240, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 0.4rem;
}

@media (max-width: 767px) {
  .hero-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.hero-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: #0a0c12;
  filter: grayscale(1) brightness(0.55);
  transition: filter 0.15s ease, border-color 0.15s ease;
}

.hero-card.owned {
  filter: none;
  border-color: transparent;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card .hero-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.2rem 0.15rem;
  font-size: 0.58rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

.hero-card .class-badge {
  position: absolute;
  top: 3px;
  left: 3px;
  font-size: 0.55rem;
  padding: 0.1rem 0.25rem;
  border-radius: 3px;
  background: rgba(0,0,0,0.65);
  color: var(--ice-glow);
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.owned-count {
  color: var(--steel);
  font-size: 0.88rem;
  margin: 0 0 0.75rem;
}

/* Account info forms */
.inv-required-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.inv-field {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem;
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  background: var(--bg-void);
}

.inv-field img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.inv-field label {
  display: grid;
  gap: 0.25rem;
  flex: 1;
  font-size: 0.8rem;
  color: var(--steel);
}

.stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.stepper button {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 4px;
  border: 1px solid var(--border-rune);
  background: var(--bg-panel);
  color: var(--parchment);
  cursor: pointer;
}

.stepper input {
  width: 4rem;
  text-align: center;
}

.records-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.records-grid label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--steel);
}

.account-info-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .account-info-layout { grid-template-columns: 1fr; }
}

.order-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.order-table th,
.order-table td {
  border-bottom: 1px solid rgba(79, 184, 240, 0.12);
  padding: 0.55rem 0.4rem;
  text-align: left;
}

.order-table th {
  color: var(--steel);
  font-weight: 500;
}

.order-side {
  display: grid;
  gap: 0.75rem;
}

.additionals-box {
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  padding: 0.85rem;
  background: var(--bg-void);
}

/* Account page */
.account-banner {
  color: var(--steel);
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-rune);
  padding-bottom: 0.5rem;
}

.account-tabs button {
  padding: 0.55rem 0.95rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--steel);
  font-family: var(--font-display);
  cursor: pointer;
}

.account-tabs button[aria-selected="true"] {
  color: var(--ice-glow);
  border-color: var(--border-rune);
  background: rgba(79, 184, 240, 0.08);
}

.account-panel { display: none; }
.account-panel.active { display: block; }

.meta-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.meta-field {
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  background: var(--bg-panel);
}

.meta-field .label {
  display: flex;
  justify-content: space-between;
  color: var(--steel);
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}

.meta-field .value {
  font-family: var(--font-data);
  color: var(--ember);
}

.records-cat {
  margin-bottom: 0.65rem;
  border: 1px solid rgba(232, 134, 46, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
}

.records-cat-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 0;
  cursor: pointer;
  background: linear-gradient(90deg, rgba(232, 134, 46, 0.28), rgba(232, 134, 46, 0.08));
  color: var(--parchment);
  font-family: var(--font-display);
  font-size: 1rem;
  text-align: left;
}

.records-cat-arrow {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  border: 1px solid rgba(232, 134, 46, 0.45);
  display: grid;
  place-items: center;
  color: var(--ember);
  font-size: 0.75rem;
  transition: transform 0.15s ease;
}

.records-cat[data-open="true"] .records-cat-arrow {
  transform: rotate(180deg);
}

.records-cat-body {
  display: none;
  padding: 0.85rem;
  background: rgba(11, 14, 22, 0.35);
}

.records-cat[data-open="true"] .records-cat-body {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem;
}

.record-panel {
  position: relative;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(232, 134, 46, 0.25);
}

.record-panel .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.record-panel .smoke {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.9;
  background: linear-gradient(90deg, rgba(40,40,40,0.15), rgba(10,10,12,0.88));
}

.record-panel .panel-title {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-shadow: 0 1px 4px #000;
  z-index: 2;
  max-width: 55%;
}

.record-panel .panel-value {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-data);
  color: #f0c48a;
  font-size: 1.05rem;
  z-index: 2;
  text-shadow: 0 1px 4px #000;
}

.record-panel .edit-btn {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  z-index: 3;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.45);
  color: #fff;
  cursor: pointer;
  font-size: 0.85rem;
}

.record-panel.editing .panel-value {
  display: none;
}

.record-panel .inline-edit {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: none;
  gap: 0.3rem;
  align-items: center;
}

.record-panel.editing .inline-edit {
  display: flex;
}

.record-panel .inline-edit input,
.record-panel .inline-edit select {
  width: 7rem;
  padding: 0.3rem 0.4rem;
  font-size: 0.8rem;
}

.inv-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
  align-items: center;
}

.inv-toolbar input {
  max-width: 280px;
}

.inv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.65rem;
}

.inv-item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.65rem;
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  background: var(--bg-panel);
}

.inv-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.inv-item .name {
  font-size: 0.82rem;
  color: var(--parchment);
  line-height: 1.25;
}

.inv-item .qty {
  font-family: var(--font-data);
  color: var(--ember);
  font-size: 0.9rem;
}

.auth-required-box {
  max-width: 420px;
  margin: 3rem auto;
  text-align: center;
}

.confirm-box {
  text-align: center;
  padding: 1.5rem 0;
}

.confirm-box .order-num {
  display: block;
  margin: 0.75rem 0;
  color: var(--ember);
  font-size: 1.2rem;
}

.substep-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.substep-nav button {
  flex: 1;
  padding: 0.55rem;
  border: 1px solid var(--border-rune);
  background: transparent;
  color: var(--steel);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.85rem;
}

.substep-nav button[aria-selected="true"] {
  color: var(--ice-glow);
  border-color: var(--ice-glow);
}

/* ============================================================
   Wizard order flow v2 - panel contrast scoped to booking only
   ============================================================ */

.booking-shell {
  background: #0e121c;
}

.booking-inner {
  background: #101522;
}

.wiz-panel {
  background: #161c2c;
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}

.wiz-panel-order {
  background: #1a2234;
  border-color: rgba(232, 134, 46, 0.28);
}

.wiz-panel-discount {
  background: #141a28;
  border-color: rgba(79, 184, 240, 0.3);
}

.wiz-panel-check {
  background: #121826;
}

.svc-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.85rem;
}

.svc-card {
  position: relative;
  text-align: left;
  padding: 1.1rem 1.15rem;
  min-height: 150px;
  background:
    linear-gradient(145deg, rgba(79, 184, 240, 0.06), transparent 40%),
    #161c2c;
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  color: var(--parchment);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s ease, background 0.15s ease, opacity 0.2s ease;
}

.svc-card:hover {
  border-color: var(--ice-glow);
}

.svc-card[aria-pressed="true"] {
  border-color: var(--ice-glow);
  box-shadow: 0 0 0 1px rgba(79, 184, 240, 0.35);
  background:
    linear-gradient(145deg, rgba(79, 184, 240, 0.14), transparent 45%),
    #1a2438;
}

.svc-card .svc-icon {
  font-size: 1.25rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-rune);
  border-radius: 4px;
  margin-bottom: 0.55rem;
  background: rgba(11, 14, 22, 0.5);
}

.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  margin: 0 0 0.4rem;
  padding-right: 1.8rem;
}

.svc-card p {
  margin: 0;
  color: var(--steel);
  font-size: 0.88rem;
}

.svc-card .price-cap {
  display: inline-block;
  margin-top: 0.65rem;
  padding: 0.3rem 0.5rem;
  background: rgba(11, 14, 22, 0.65);
  border: 1px solid rgba(232, 134, 46, 0.35);
  border-radius: 3px;
  color: var(--ember);
  font-family: var(--font-data);
  font-size: 0.78rem;
}

.svc-info-btn {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  border: 1px solid var(--border-rune);
  background: rgba(11, 14, 22, 0.65);
  color: var(--ice-glow);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.85rem;
  line-height: 1;
}

.svc-info-btn:hover {
  border-color: var(--ice-glow);
}

.raid-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.65rem;
}

.raid-card {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: #0a0c12;
  opacity: 1;
  transition: opacity 0.2s ease, border-color 0.15s ease, filter 0.2s ease;
}

.raid-picker.has-selection .raid-card:not([aria-pressed="true"]) {
  opacity: 0.4;
  filter: grayscale(0.35);
}

.raid-card[aria-pressed="true"] {
  border-color: var(--ice-glow);
  opacity: 1;
  filter: none;
  box-shadow: 0 0 0 1px rgba(79, 184, 240, 0.4);
}

.raid-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.raid-card .raid-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.4rem 0.45rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.88));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  text-align: center;
}

.raid-card.no-img {
  display: grid;
  place-items: end center;
  background: linear-gradient(160deg, #1a2438, #0b0e16);
  padding-bottom: 0.4rem;
}

.raid-tally {
  margin-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.raid-tally-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.55rem;
  background: #121826;
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
}

.raid-tally-item img {
  width: 72px;
  height: 45px;
  object-fit: cover;
  border-radius: 4px;
}

.field-reveal {
  animation: fade-step 0.28s ease;
  margin-top: 1rem;
}

.perm-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 1rem;
}

.perm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.65rem;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.perm-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 0.65rem 0.75rem;
  background: rgba(79, 184, 240, 0.06);
  border: 1px solid rgba(79, 184, 240, 0.22);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--parchment);
  font-family: inherit;
  text-align: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.perm-card[aria-pressed="true"] {
  background: rgba(79, 184, 240, 0.18);
  border-color: rgba(79, 184, 240, 0.55);
}

.perm-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.perm-card .perm-name {
  font-size: 0.78rem;
  line-height: 1.25;
}

.perm-card .perm-desc {
  font-size: 0.7rem;
  color: var(--steel);
  line-height: 1.3;
}

.perm-indicator {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 2px solid rgba(79, 184, 240, 0.45);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  color: transparent;
  background: transparent;
}

.perm-card[aria-pressed="true"] .perm-indicator {
  border-color: #3ecf8e;
  background: rgba(62, 207, 142, 0.15);
  color: #3ecf8e;
}

.perm-amount-link {
  font-size: 0.72rem;
  color: var(--ice-glow);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.perm-amount-input {
  width: 4.5rem;
  padding: 0.25rem 0.35rem;
  font-size: 0.8rem;
  text-align: center;
}

.review-layout-v2 {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.15rem;
  align-items: start;
}

@media (max-width: 860px) {
  .review-layout-v2 {
    grid-template-columns: 1fr;
  }
}

.crosscheck-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.crosscheck-list li {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  background: rgba(11, 14, 22, 0.35);
  font-size: 0.9rem;
}

.crosscheck-list .label {
  color: var(--steel);
  font-size: 0.8rem;
  display: block;
  margin-bottom: 0.2rem;
}

.dragon-blurb {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-top: 0.85rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  background: rgba(11, 14, 22, 0.4);
  color: var(--steel);
  font-size: 0.88rem;
}

.dragon-blurb img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.discount-line {
  color: #6dcf9a;
}

.inline-error {
  color: #e07a7a;
  font-size: 0.88rem;
  margin: 0.45rem 0 0;
}

.order-section {
  margin-bottom: 0.85rem;
}

.order-section-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--ice-glow);
  font-weight: 600;
}

.order-section-empty {
  margin: 0;
  color: var(--steel);
  font-size: 0.85rem;
  padding: 0.35rem 0;
}

.order-section-gap {
  height: 0;
  margin: 1.15rem 0 1rem;
  border: 0;
  border-top: 1px solid rgba(79, 184, 240, 0.18);
}

.order-section-discounts .order-section-title {
  color: #6dcf9a;
}

.order-section-discounts .discount-line,
.discount-line {
  color: #6dcf9a;
}

.order-total-row {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 1rem;
  margin-top: 0.35rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(232, 134, 46, 0.35);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.order-total-value {
  color: var(--ember);
  font-size: 1.2rem;
}

/* === v3 Patch 5: Account page + nav account menu === */

.btn-ice {
  background: var(--ice-glow);
  color: #0b0e16;
  border: 1px solid var(--ice-glow);
}

.btn-ice:hover:not(:disabled) {
  filter: brightness(1.08);
}

.account-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}

.account-top-main {
  flex: 1;
  min-width: 0;
}

.account-username {
  margin: 0 0 1.1rem;
  color: var(--ice-glow);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.account-top-aside {
  flex-shrink: 0;
  padding-top: 0.35rem;
}

.account-tabs {
  margin-top: 0.15rem;
}

.inv-item {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.55rem;
  align-items: center;
  padding: 0.75rem 2.1rem 0.75rem 0.65rem;
  overflow: hidden;
}

.inv-item-body {
  min-width: 0;
}

.inv-item .name {
  word-break: break-word;
}

.inv-item .qty {
  margin-top: 0.15rem;
  overflow-wrap: anywhere;
}

.inv-edit-btn {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  z-index: 2;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 4px;
  border: 1px solid rgba(232, 134, 46, 0.45);
  background: rgba(232, 134, 46, 0.18);
  color: #f0b06a;
  cursor: pointer;
  font-size: 0.78rem;
  line-height: 1;
  display: inline-grid;
  place-items: center;
  padding: 0;
}

.inv-edit-btn:hover {
  background: rgba(232, 134, 46, 0.32);
  color: #ffc58a;
}

.inv-picker-modal {
  max-width: min(720px, 94vw);
  max-height: min(85vh, 820px);
  overflow: auto;
}

.inv-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.55rem;
  max-height: 50vh;
  overflow: auto;
  padding: 0.15rem;
}

.inv-pick-card {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  padding: 0.65rem 0.4rem;
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  background: var(--bg-void);
  color: var(--parchment);
  cursor: pointer;
  font-size: 0.72rem;
  text-align: center;
  line-height: 1.25;
}

.inv-pick-card:hover {
  border-color: rgba(79, 184, 240, 0.45);
  background: rgba(79, 184, 240, 0.06);
}

.inv-pick-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.inv-picker-selected {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  background: var(--bg-void);
}

.inv-picker-selected img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.heroes-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.hero-card.owned {
  border-color: transparent;
}

.hero-card .hero-name {
  top: auto;
  bottom: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.95), 0 0 6px rgba(0, 0, 0, 0.8);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.92));
  padding: 0.35rem 0.2rem 0.3rem;
}

.hero-card[data-edit-mode],
[data-edit-mode="true"] .hero-card.editable {
  cursor: pointer;
}

.hero-detail-modal {
  max-width: min(420px, 94vw);
}

.hero-detail-head {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-detail-head img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border-rune);
}

.hero-detail-field {
  margin-bottom: 0.9rem;
}

.hero-detail-label {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--parchment);
  margin-bottom: 0.4rem;
}

.awaken-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.awaken-selector button {
  min-width: 2.4rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  background: var(--bg-void);
  color: var(--steel);
  font-family: var(--font-display);
  cursor: pointer;
}

.awaken-selector button[aria-pressed="true"] {
  color: var(--ember);
  border-color: rgba(232, 134, 46, 0.55);
  background: rgba(232, 134, 46, 0.12);
}

.account-nav-wrap {
  position: relative;
}

.account-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-rune);
  background: var(--bg-panel);
  color: var(--parchment);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.88rem;
}

.account-nav-pill:hover {
  border-color: rgba(79, 184, 240, 0.45);
}

.account-nav-name {
  max-width: 10rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-nav-burger {
  display: inline-grid;
  gap: 3px;
  width: 14px;
}

.account-nav-burger span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: var(--ice-glow);
}

.account-nav-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.4rem);
  min-width: 12.5rem;
  padding: 0.4rem;
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  background: var(--bg-panel);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  z-index: 80;
  display: grid;
  gap: 0.15rem;
}

.account-nav-menu[hidden] {
  display: none !important;
}

.account-nav-menu a,
.account-nav-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.7rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--parchment);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
}

.account-nav-menu a:hover,
.account-nav-menu button:hover {
  background: rgba(79, 184, 240, 0.1);
  color: var(--ice-glow);
}

.account-nav-divider {
  height: 1px;
  margin: 0.25rem 0.35rem;
  background: rgba(79, 184, 240, 0.18);
}

.jw-dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(5, 8, 14, 0.72);
}

.jw-dialog {
  width: min(420px, 94vw);
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border-rune);
  border-radius: var(--radius);
  background: var(--bg-panel);
}

.jw-dialog h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.jw-dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.jw-dialog-head h3 {
  margin: 0;
}

.jw-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.jw-settings-dialog {
  width: min(480px, 94vw);
}

.settings-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.settings-row .helper-text {
  margin: 0.25rem 0 0;
}

.toggle-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.toggle-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-track {
  width: 2.7rem;
  height: 1.45rem;
  border-radius: 999px;
  background: rgba(92, 101, 120, 0.55);
  border: 1px solid var(--border-rune);
  position: relative;
  transition: background 0.15s ease;
}

.toggle-track::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: #d7dbe4;
  transition: transform 0.15s ease, background 0.15s ease;
}

.toggle-switch input:checked + .toggle-track {
  background: rgba(79, 184, 240, 0.35);
  border-color: rgba(79, 184, 240, 0.55);
}

.toggle-switch input:checked + .toggle-track::after {
  transform: translateX(1.2rem);
  background: var(--ice-glow);
}

@media (max-width: 640px) {
  .account-top {
    flex-direction: column;
  }

  .account-top-aside {
    align-self: flex-end;
  }
}
