/* KT Digital 10/10 Design System — Cyber Luxury Dark Glassmorphism */
:root {
  --bg-deep: #011123;
  --bg-main: #071326;
  --bg-surface: rgba(11, 23, 42, 0.75);
  --bg-surface-elevated: rgba(17, 34, 57, 0.85);
  --bg-card: rgba(7, 19, 38, 0.7);
  
  --line-subtle: rgba(250, 249, 245, 0.08);
  --line-highlight: rgba(232, 123, 0, 0.3);
  --line-emerald: rgba(16, 185, 129, 0.3);
  
  --text-primary: #faf9f5;
  --text-secondary: rgba(250, 249, 245, 0.75);
  --text-muted: rgba(250, 249, 245, 0.55);
  --text-dim: rgba(250, 249, 245, 0.4);
  
  --accent-primary: #e87b00;
  --accent-primary-hover: #ffa600;
  --accent-violet: #00f0ff;
  --accent-cyan: #00f0ff;
  --accent-emerald: #10b981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.25);
  --accent-amber: #e87b00;
  --accent-rose: #f43f5e;

  --font-sans: 'Kanit', 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-thai: var(--font-sans);
  --font-latin: 'Instrument Sans', var(--font-sans);
  --font-mono: 'JetBrains Mono', monospace;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-full: 100rem;
  --radius-pill: 100rem;
  
  --shadow-glow-amber: 0 0 40px -10px rgba(232, 123, 0, 0.45);
  --shadow-glow-indigo: 0 0 40px -10px rgba(232, 123, 0, 0.35);
  --shadow-glow-emerald: 0 0 35px -10px rgba(16, 185, 129, 0.35);
  --shadow-glass: 0 16px 40px -12px rgba(0, 0, 0, 0.6);
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(72px, 10vh, 104px);
  color-scheme: dark;
  overflow-x: hidden;
}

section[id],
[id] {
  scroll-margin-top: clamp(72px, 10vh, 104px);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(232, 123, 0, 0.12), transparent 45%),
    radial-gradient(circle at 10% 30%, rgba(0, 240, 255, 0.08), transparent 40%),
    radial-gradient(circle at 90% 70%, rgba(16, 185, 129, 0.08), transparent 50%);
  background-attachment: fixed;
}

/* Background Ambient Orbs */
.ambient-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.35;
}
.glow-1 { top: -120px; left: 25%; width: 500px; height: 500px; background: rgba(232, 123, 0, 0.15); }
.glow-2 { top: 40%; right: -120px; width: 450px; height: 450px; background: rgba(56, 189, 248, 0.14); }
.glow-3 { bottom: 10%; left: 10%; width: 400px; height: 400px; background: rgba(16, 185, 129, 0.12); }

/* Typography */
h1, h2, h3, h4, .brand-name {
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 20%, #FFA600 60%, #00F0FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text-emerald {
  background: linear-gradient(135deg, #FFFFFF 15%, #34D399 55%, #00F0FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.overline {
  font-family: var(--font-latin);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Top Announcement Notice Bar */
.notice-bar {
  background: linear-gradient(90deg, rgba(232, 123, 0, 0.35) 0%, rgba(56, 189, 248, 0.15) 50%, rgba(16, 185, 129, 0.15) 100%);
  border-bottom: 1px solid var(--line-subtle);
  padding: 8px 16px;
  font-size: 0.825rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 100;
}
.notice-pill {
  background: var(--accent-emerald);
  color: #000;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}
.notice-link {
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
  margin-left: 8px;
  transition: color 0.2s;
}
.notice-link:hover { color: #fff; }

/* Sticky Header Navigation */
.store-header {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  background: rgba(11, 15, 23, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-subtle);
}
.store-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}
.store-brand img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 12px rgba(232, 123, 0, 0.35));
}
.store-brand span strong {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: block;
}
.store-brand span small {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
}
.nav-menu a:hover { color: #fff; }

.header-cta {
  background: linear-gradient(135deg, #e87b00, #ffa600);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(232, 123, 0, 0.35);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 123, 0, 0.35);
}

.nowrap {
  white-space: nowrap;
}

/* Header Actions & Mobile Menu Toggle */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  transition: all 0.2s ease;
}
.mobile-menu-toggle:hover {
  background: rgba(51, 65, 85, 0.9);
  border-color: var(--line-bright);
}
.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(1, 17, 35, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Drawer Aside */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  background: linear-gradient(180deg, rgba(7, 19, 38, 0.98) 0%, rgba(1, 17, 35, 0.99) 100%);
  border-left: 1px solid var(--line-subtle);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  z-index: 999;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
}
.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.drawer-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-subtle);
  margin-bottom: 12px;
}
.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.drawer-brand img {
  width: 28px;
  height: 28px;
}
.drawer-brand strong {
  font-size: 1.05rem;
  color: #fff;
}
.drawer-close-btn {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid var(--line-subtle);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 4px;
}
.drawer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  min-height: 40px;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.90rem;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.drawer-link:hover, .drawer-link:active {
  background: rgba(232, 123, 0, 0.35);
  color: #fff;
}
.drawer-icon {
  font-size: 1.1rem;
}
.drawer-footer {
  flex-shrink: 0;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line-subtle);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  min-height: 42px;
  box-sizing: border-box;
  background: #06C755;
  color: #fff;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.35);
}
.drawer-cta-btn {
  width: 100%;
  padding: 10px 14px;
  min-height: 42px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #e87b00, #f59b33);
  border: 1px solid rgba(255, 166, 0, 0.45);
  border-radius: var(--radius-full);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(232, 123, 0, 0.35);
}

/* Container & Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Glassmorphism Card System */
.glass-panel {
  background: var(--bg-surface);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glass);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.glass-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02) 60%, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 48px -10px rgba(0, 0, 0, 0.7);
}

/* Hero Section */
.hero-section {
  padding: 56px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-content h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 12px 0 20px;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-subtle);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}
.badge-tag.emerald {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34D399;
}
.badge-tag.indigo {
  background: rgba(0, 240, 255, 0.1);
  border-color: rgba(232, 123, 0, 0.35);
  color: var(--accent-cyan);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn-hero-primary {
  background: linear-gradient(135deg, #e87b00 0%, #f59b33 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 166, 0, 0.45);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px -5px rgba(232, 123, 0, 0.45);
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-hero-primary:hover {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(135deg, #ffa600 0%, #e87b00 100%);
  border-color: rgba(255, 200, 80, 0.8);
  box-shadow: 0 14px 40px -4px rgba(232, 123, 0, 0.65);
}
.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line-subtle);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Interactive Hero Simulator Card */
.hero-simulator {
  position: relative;
  margin: 16px 0 24px;
}
.sim-card {
  background: linear-gradient(160deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(232, 123, 0, 0.35);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px -10px rgba(232, 123, 0, 0.35);
  backdrop-filter: blur(24px);
}
.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-subtle);
  margin-bottom: 20px;
}
.sim-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #34D399;
  background: rgba(16, 185, 129, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
  animation: pulseGlow 2.8s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 6px rgba(16, 185, 129, 0.6); }
  50% { transform: scale(0.85); opacity: 0.5; box-shadow: 0 0 2px rgba(16, 185, 129, 0.2); }
}

.sim-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.sim-step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  transition: all 0.3s;
}
.sim-step-item.active {
  border-color: var(--accent-primary);
  background: rgba(232, 123, 0, 0.35);
}
.sim-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
}
.sim-step-item.active .sim-icon {
  background: var(--accent-primary);
  color: #fff;
}
.sim-text {
  flex: 1;
}
.sim-text strong {
  font-size: 0.9rem;
  display: block;
}
.sim-text small {
  color: var(--text-muted);
  font-size: 0.75rem;
}
.sim-status {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-emerald);
}

.sim-footer-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line-subtle);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.sim-footer-stat strong {
  color: #38BDF8;
  font-family: var(--font-mono);
}

/* Hero Simulator Trust Highlights Header (Zero Overlap Guaranteed) */
.sim-trust-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.sim-trust-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid var(--line-subtle);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.sim-trust-card:hover {
  transform: translateY(-2px);
}
.sim-trust-card.badge-cyan {
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45), 0 0 16px rgba(56, 189, 248, 0.12);
}
.sim-trust-card.badge-emerald {
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45), 0 0 16px rgba(16, 185, 129, 0.12);
}
.sim-trust-icon {
  font-size: 1.25rem;
  line-height: 1;
}
.sim-trust-tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.sim-trust-card.badge-cyan .sim-trust-tag {
  color: var(--accent-cyan);
}
.sim-trust-card.badge-emerald .sim-trust-tag {
  color: var(--accent-emerald);
}
.sim-trust-desc {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

/* Social Proof Live Ticker */
.ticker-wrap {
  margin: 40px auto 20px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  backdrop-filter: blur(12px);
  max-width: 900px;
}
.ticker-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-amber);
}
.ticker-feed {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text-secondary);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ticker-feed span {
  color: #fff;
  font-weight: 600;
}
.ticker-stat {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Section Common Styling */
.section {
  padding: 70px 0;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-top: 12px;
}

/* Live Family Pool & Seat Tracker (Real-time Party Dashboard) */
.pool-section {
  background: radial-gradient(circle at 50% 10%, rgba(232, 123, 0, 0.35) 0%, rgba(7, 9, 14, 0.95) 70%);
  border-top: 1px solid var(--line-subtle);
  border-bottom: 1px solid var(--line-subtle);
}
.pool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch;
}
.pool-card {
  background: linear-gradient(150deg, rgba(20, 29, 48, 0.85) 0%, rgba(10, 15, 26, 0.95) 100%);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
}
.pool-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 123, 0, 0.35);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7), 0 0 30px rgba(232, 123, 0, 0.35);
}
.pool-card.active-recruiting {
  border-color: rgba(16, 185, 129, 0.35);
}
.pool-card.active-recruiting:hover {
  border-color: var(--accent-emerald);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7), 0 0 30px rgba(16, 185, 129, 0.2);
}
.pool-card.vip-room {
  border-color: rgba(56, 189, 248, 0.35);
  background: linear-gradient(150deg, rgba(16, 32, 54, 0.9) 0%, rgba(8, 16, 28, 0.98) 100%);
}
.pool-card.vip-room:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7), 0 0 30px rgba(56, 189, 248, 0.25);
}
.pool-card.completed-room {
  opacity: 0.85;
  border-color: rgba(255, 255, 255, 0.08);
}
.pool-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.pool-title-group h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-top: 4px;
}
.pool-number {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-emerald);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.pool-number.vip { color: var(--accent-cyan); }
.pool-number.done { color: var(--text-muted); }
.pool-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.pool-status-badge.vip {
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-cyan);
  border-color: rgba(56, 189, 248, 0.3);
}
.pool-status-badge.completed {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border-color: var(--line-subtle);
}

.pool-price-box {
  background: rgba(7, 10, 18, 0.6);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 16px;
}
.price-lbl {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}
.price-val {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-mono);
}
.price-val small {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-family: var(--font-main);
  font-weight: 500;
}

/* Seat Progress Tracking Box */
.pool-seat-track-box {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(232, 123, 0, 0.35);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 16px;
}
.seat-counts-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.seat-joined {
  color: #34D399;
  font-weight: 700;
}
.seat-progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 10px;
}
.seat-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #e87b00, #38BDF8, #10B981);
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}
.seat-progress-fill.vip-fill {
  background: linear-gradient(90deg, #00f0ff, #10b981);
}
.seat-alert-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}
.seat-available-tag {
  font-weight: 700;
  color: var(--accent-cyan);
}
.seat-available-tag.pulse-tag {
  color: #FBBF24;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}
.seat-available-tag.vip-tag {
  color: #38BDF8;
}
.seat-alert-row small {
  color: var(--text-muted);
}

.pool-specs-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.4;
  flex: 1;
}
.pool-specs-list div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
  padding-bottom: 4px;
}
.pool-specs-list strong {
  color: #fff;
}

.btn-join-pool {
  width: 100%;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 13px 18px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
  transition: all 0.2s ease;
}
.btn-join-pool:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.55);
  filter: brightness(1.1);
}
.btn-join-pool.vip-btn {
  background: linear-gradient(135deg, #e87b00 0%, #38BDF8 100%);
  box-shadow: 0 4px 20px rgba(232, 123, 0, 0.35);
}
.btn-join-pool.vip-btn:hover {
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.5);
}
.btn-join-pool.disabled-btn {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border-color: var(--line-subtle);
  cursor: not-allowed;
  box-shadow: none;
}

/* Pool Transparency Rules Card */
.pool-rules-panel {
  background: linear-gradient(160deg, rgba(20, 29, 48, 0.8) 0%, rgba(10, 15, 26, 0.95) 100%);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.rules-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-subtle);
}
.rules-icon {
  font-size: 2rem;
}
.rules-head h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}
.rules-head p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 2px;
}
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.rule-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.rule-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.rule-item strong {
  display: block;
  font-size: 0.92rem;
  color: #fff;
  margin-bottom: 4px;
}
.rule-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Shopee/Apple Grade Interactive Variant Matrix */
.matrix-container {
  max-width: 1000px;
  margin: 0 auto;
}
.plan-category-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.plan-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.plan-tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.plan-tab-btn.active {
  background: linear-gradient(135deg, rgba(232, 123, 0, 0.35), rgba(16, 185, 129, 0.25));
  border-color: var(--accent-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232, 123, 0, 0.35);
}
.variant-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}
.variant-card {
  background: var(--bg-surface);
  border: 2px solid var(--line-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  user-select: none;
}
.variant-card:hover {
  border-color: rgba(232, 123, 0, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.variant-card.active {
  background: rgba(30, 41, 59, 0.9);
  border-color: var(--accent-primary);
  box-shadow: 0 0 35px -5px rgba(232, 123, 0, 0.35), 0 16px 40px rgba(0, 0, 0, 0.6);
}
.variant-card.featured-card {
  border-color: rgba(232, 123, 0, 0.6);
}
.variant-card.featured-card.active {
  border-color: #e87b00;
  box-shadow: 0 0 35px -5px rgba(232, 123, 0, 0.45);
}

.variant-badge {
  position: absolute;
  top: -12px;
  right: 18px;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #fff;
  font-size: 0.725rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.variant-radio-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.radio-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.variant-card.active .radio-circle {
  border-color: var(--accent-primary);
  background: var(--accent-primary);
}
.variant-card.featured-card.active .radio-circle {
  border-color: var(--accent-emerald);
  background: var(--accent-emerald);
}
.radio-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s;
}
.variant-card.active .radio-inner {
  opacity: 1;
  transform: scale(1);
}

.variant-title-wrap h3 {
  font-size: 1.1rem;
  font-weight: 700;
}
.variant-duration {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.variant-pool-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #34D399;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-top: 10px;
  align-self: flex-start;
}
.pulse-dot-sm {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 5px #10B981;
  animation: pulseGlow 2.8s ease-in-out infinite;
}

.variant-price-block {
  margin: 16px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line-subtle);
  border-bottom: 1px solid var(--line-subtle);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.v-current-price {
  font-size: 2rem;
  font-weight: 900;
  font-family: var(--font-latin);
  color: #fff;
}
.v-current-price small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.v-original-wrap {
  text-align: right;
}
.v-original-price {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-muted);
}
.v-save-badge {
  font-size: 0.725rem;
  font-weight: 700;
  color: #F43F5E;
  background: rgba(244, 63, 94, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
}

.variant-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: auto;
}
.variant-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.variant-features li::before {
  content: '✓';
  color: var(--accent-emerald);
  font-weight: 800;
}

/* Variant Card Action Button (1-Click Order) */
.variant-action-wrap {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-subtle);
}
.btn-card-action {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid var(--line-subtle);
  color: var(--text-secondary);
}
.btn-card-action:hover {
  background: linear-gradient(135deg, #ffa600 0%, #e87b00 100%);
  border-color: rgba(255, 200, 80, 0.8);
  color: #fff;
  box-shadow: 0 6px 20px rgba(232, 123, 0, 0.45);
  transform: translateY(-1px);
}
.variant-card.active .btn-card-action,
.btn-card-action.btn-selected {
  background: linear-gradient(135deg, #e87b00 0%, #f59b33 100%);
  border-color: rgba(255, 166, 0, 0.5);
  color: #fff;
  box-shadow: 0 6px 20px rgba(232, 123, 0, 0.45);
}
.variant-card.featured-card.active .btn-card-action {
  background: linear-gradient(135deg, #e87b00 0%, #f59b33 100%);
  border-color: rgba(255, 166, 0, 0.5);
  box-shadow: 0 6px 20px rgba(232, 123, 0, 0.5);
}

/* Proprietary Tech & System Highlights Showcase */
.system-highlights-section,
.testimonials-section {
  padding: 64px 0 72px;
  background: radial-gradient(circle at 50% 0%, rgba(232, 123, 0, 0.35) 0%, rgba(15, 23, 42, 0.4) 100%);
  border-top: 1px solid var(--line-subtle);
  border-bottom: 1px solid var(--line-subtle);
}
.system-highlights-header,
.testimonials-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.system-highlights-pill,
.testimonials-rating-pill {
  display: inline-block;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.system-highlights-header h2,
.system-highlights-header h3,
.testimonials-header h3 {
  font-size: 1.85rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.system-highlights-header p,
.testimonials-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
.system-highlights-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.system-highlight-card,
.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateZ(0);
  will-change: transform;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

@supports not (backdrop-filter: blur(16px)) {
  .system-highlight-card {
    background: rgba(15, 23, 42, 0.94);
  }
}

.system-highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.system-highlight-card:hover,
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 123, 0, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(232, 123, 0, 0.35);
}
.system-highlight-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 8px;
  flex-wrap: wrap;
}
.system-highlight-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 100%;
}
.system-highlight-tag.cyan {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.28);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.12);
}
.system-highlight-tag.emerald {
  color: #34d399;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.28);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.12);
}
.system-highlight-tag.violet,
.system-highlight-tag.electric {
  color: #ffa600;
  background: rgba(232, 123, 0, 0.12);
  border: 1px solid rgba(255, 166, 0, 0.35);
  box-shadow: 0 0 12px rgba(232, 123, 0, 0.2);
}
.system-highlight-tag.amber {
  color: #facc15;
  background: rgba(245, 196, 81, 0.08);
  border: 1px solid rgba(245, 196, 81, 0.28);
  box-shadow: 0 0 12px rgba(245, 196, 81, 0.12);
}
.system-highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.system-highlight-title {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 10px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.system-highlight-title-sub {
  display: inline-block;
  max-width: 100%;
}
.system-highlight-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.62;
  margin: 0 0 20px;
  flex-grow: 1;
}
.system-highlight-action {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.system-highlight-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 4px 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}
.system-highlight-link:hover {
  color: #fff;
  gap: 9px;
  text-decoration: none;
}
.system-highlight-link:active {
  opacity: 0.75;
  transform: scale(0.98);
}
.system-highlight-link:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 4px;
  border-radius: 4px;
}
.system-highlight-link .arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}
.system-highlight-link:hover .arrow {
  transform: translateX(3px);
}

/* Recent Order Shortcut in Track Section */
.recent-order-shortcut {
  margin-top: 14px;
  text-align: center;
}
.recent-order-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid rgba(232, 123, 0, 0.35);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.btn-quick-track {
  background: none;
  border: none;
  color: var(--accent-cyan);
  cursor: pointer;
  font-size: 0.85rem;
  text-decoration: underline;
  padding: 0;
  font-weight: 700;
}
.btn-quick-track:hover {
  color: #fff;
}

/* Quick Buy Action Card */
.quick-buy-panel {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.quick-buy-summary p {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.quick-buy-summary strong {
  font-size: 1.4rem;
  color: #fff;
}
.quick-buy-summary .total-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-emerald);
  font-family: var(--font-latin);
  margin-left: 8px;
}

.btn-reserve-now {
  background: linear-gradient(135deg, #e87b00 0%, #f59b33 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 18px 48px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 166, 0, 0.45);
  cursor: pointer;
  box-shadow: 0 10px 30px -5px rgba(232, 123, 0, 0.5);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-reserve-now:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffa600 0%, #e87b00 100%);
  box-shadow: 0 16px 45px -5px rgba(232, 123, 0, 0.7);
}

/* Product Feature Deep-Dive Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(232, 123, 0, 0.35);
  border: 1px solid rgba(0, 240, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.feature-card h3 {
  font-size: 1.2rem;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* AI Playbooks & Guides Section */
.playbook-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.playbook-filters .filter-btn {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--line-subtle);
  border-radius: 9999px;
  padding: 8px 18px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.playbook-filters .filter-btn:hover {
  border-color: rgba(232, 123, 0, 0.5);
  color: #fff;
  background: rgba(30, 41, 59, 0.8);
  transform: translateY(-1px);
}
.playbook-filters .filter-btn.active {
  background: linear-gradient(135deg, rgba(232, 123, 0, 0.35) 0%, rgba(6, 182, 212, 0.25) 100%);
  border-color: var(--accent-primary);
  color: #fff;
  box-shadow: 0 0 16px rgba(232, 123, 0, 0.35);
}

.playbooks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.playbook-card {
  background: linear-gradient(160deg, rgba(22, 31, 48, 0.85) 0%, rgba(13, 19, 31, 0.95) 100%);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}
.playbook-card:hover {
  border-color: rgba(232, 123, 0, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 24px rgba(232, 123, 0, 0.35);
}
.playbook-cover {
  height: 150px;
  background: linear-gradient(135deg, #071326 0%, #011123 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  border-bottom: 1px solid var(--line-subtle);
  position: relative;
  overflow: hidden;
}
.playbook-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(232, 123, 0, 0.35), transparent 70%);
}
.playbook-badge-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 15, 23, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--accent-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.playbook-prompts-pill {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34D399;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}
.playbook-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.playbook-body h3 {
  font-size: 1.1rem;
  line-height: 1.45;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
}
.playbook-card:hover .playbook-body h3 {
  color: var(--accent-cyan);
}
.playbook-body p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.playbook-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}
.playbook-meta .level-tag {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.playbook-meta .time-tag {
  color: var(--accent-cyan);
  font-weight: 600;
}
.btn-read-playbook {
  margin-top: 12px;
  width: 100%;
  padding: 10px 14px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  cursor: pointer;
}
.playbook-card:hover .btn-read-playbook {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232, 123, 0, 0.35);
}

/* Playbook Reader Modal Dialog */
.playbook-modal-box {
  max-width: 760px;
  width: 95vw;
  max-height: 88vh;
  overflow-y: auto;
  padding: 36px;
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 123, 0, 0.35) transparent;
}
.playbook-modal-box::-webkit-scrollbar {
  width: 6px;
}
.playbook-modal-box::-webkit-scrollbar-thumb {
  background: rgba(232, 123, 0, 0.35);
  border-radius: 9999px;
}
.playbook-modal-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-subtle);
}
.playbook-modal-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}
.playbook-modal-tags .tag-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  background: rgba(232, 123, 0, 0.35);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 240, 255, 0.3);
}
.playbook-modal-tags .tag-pill.level {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border-color: rgba(16, 185, 129, 0.3);
}
.playbook-modal-header h2 {
  font-size: 1.55rem;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 10px;
}
.playbook-modal-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* Playbook Reader Sections */
.playbook-reader-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.playbook-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.playbook-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
}
.playbook-section-title span.icon {
  font-size: 1.2rem;
}

/* Step-by-Step List */
.playbook-steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.playbook-step-item {
  display: flex;
  gap: 14px;
  background: rgba(11, 15, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 16px;
  align-items: flex-start;
}
.playbook-step-item:hover {
  border-color: rgba(232, 123, 0, 0.35);
  background: rgba(15, 23, 42, 0.7);
}
.step-number-badge {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-cyan) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(232, 123, 0, 0.35);
}
.step-content {
  flex: 1;
}
.step-content strong {
  color: #fff;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}
.step-content p {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0;
}

/* Super Prompts Box (Copyable) */
.playbook-prompts-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.prompt-card {
  background: #0B0F19;
  border: 1px solid rgba(232, 123, 0, 0.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.prompt-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(30, 41, 59, 0.6);
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 8px;
}
.prompt-card-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-copy-prompt {
  background: rgba(232, 123, 0, 0.35);
  border: 1px solid rgba(232, 123, 0, 0.35);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s;
}
.btn-copy-prompt:hover {
  background: var(--accent-primary);
  box-shadow: 0 0 10px rgba(232, 123, 0, 0.35);
}
.btn-copy-prompt.copied {
  background: rgba(16, 185, 129, 0.25);
  border-color: var(--accent-emerald);
  color: #34D399;
}
.prompt-code-wrap {
  padding: 16px;
  background: #060911;
  font-family: var(--font-mono, monospace);
  font-size: 0.85rem;
  line-height: 1.6;
  color: #E2E8F0;
  white-space: pre-wrap;
  word-break: break-word;
  user-select: all;
  border-left: 3px solid var(--accent-cyan);
}

/* Pro Tips Callout Box */
.playbook-protip-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.playbook-protip-box .tip-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.playbook-protip-box .tip-text {
  flex: 1;
}
.playbook-protip-box .tip-text strong {
  color: #FBBF24;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}
.playbook-protip-box .tip-text p {
  color: #FDE68A;
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}

/* Playbook Modal CTA Bottom Box */
.playbook-modal-cta {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.playbook-modal-cta .cta-info h4 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 4px;
}
.playbook-modal-cta .cta-info p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  margin: 0;
}
.btn-playbook-cta {
  background: linear-gradient(135deg, #e87b00 0%, #f59b33 100%);
  color: #fff;
  border: 1px solid rgba(255, 166, 0, 0.4);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(232, 123, 0, 0.35);
}
.btn-playbook-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 123, 0, 0.35);
}

/* Order Tracking Card */
.tracking-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid rgba(232, 123, 0, 0.35);
  border-radius: var(--radius-xl);
}
.track-form-box {
  display: flex;
  gap: 12px;
  margin: 20px 0 16px;
  flex-wrap: wrap;
}
.track-input {
  flex: 1;
  min-width: 240px;
  background: rgba(11, 15, 23, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.track-input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(232, 123, 0, 0.25);
}
.track-input.highlight-pulse {
  animation: trackInputPulse 1.8s ease-in-out;
}
@keyframes trackInputPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(232, 123, 0, 0);
  }
  25%, 75% {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(232, 123, 0, 0.45), 0 0 24px rgba(232, 123, 0, 0.35);
  }
}
.btn-track {
  background: var(--accent-primary);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 100rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-track:hover {
  background: var(--accent-violet);
}

.track-result-panel {
  margin-top: 20px;
}
.result-box {
  background: rgba(11, 15, 23, 0.9);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  animation: fadeIn 0.3s ease;
}
.result-box.status-completed { border-color: rgba(16, 185, 129, 0.4); }
.result-box.status-pending { border-color: rgba(245, 158, 11, 0.4); }

/* FAQ Accordion */
.faq-wrap {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-card {
  background: var(--bg-surface);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
}
.faq-question {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-icon {
  color: var(--accent-cyan);
  transition: transform 0.25s ease;
}
.faq-card.open .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.faq-card.open .faq-answer {
  display: block;
}

/* Modals & Dialogs */
.modal-overlay {
  border: none;
  background: transparent;
  padding: 20px;
  max-width: 560px;
  width: 100%;
  margin: auto;
}
.modal-overlay::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
}
.modal-box {
  background: linear-gradient(150deg, #071326 0%, #011123 100%);
  border: 1px solid rgba(232, 123, 0, 0.35);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(232, 123, 0, 0.1);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-subtle);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-head {
  margin-bottom: 24px;
}
.modal-head h2 {
  font-size: 1.5rem;
  margin: 4px 0;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  background: rgba(11, 15, 23, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus {
  border-color: var(--accent-emerald);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.coupon-row {
  display: flex;
  gap: 8px;
}
.btn-apply-coupon {
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: #38BDF8;
  padding: 0 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-apply-coupon:hover {
  background: var(--accent-primary);
  color: #fff;
}

.order-summary-box {
  background: rgba(11, 15, 23, 0.6);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  margin: 20px 0;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.summary-line.total {
  border-top: 1px solid var(--line-subtle);
  padding-top: 10px;
  margin-bottom: 0;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}
.summary-line.total .highlight-price {
  color: var(--accent-emerald);
  font-family: var(--font-latin);
}

/* Checkout Family Exit Warning Box (R1) */
.checkout-family-warning {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-left: 4px solid #F59E0B;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin: 16px 0 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.checkout-family-warning .warning-icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.checkout-family-warning .warning-content {
  flex: 1;
  min-width: 0;
}
.checkout-family-warning .warning-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #FBBF24;
  margin-bottom: 4px;
}
.checkout-family-warning .warning-text {
  font-size: 0.85rem;
  color: #E2E8F0;
  margin: 0;
  line-height: 1.6;
}
.checkout-family-warning .warning-text strong {
  color: #FFFFFF;
}
.checkout-family-warning a.warning-link {
  color: #38BDF8;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
  word-break: break-word;
}
.checkout-family-warning a.warning-link:hover {
  color: #7DD3FC;
}
.checkout-family-warning a.warning-link:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
  border-radius: 2px;
}

.btn-submit-order {
  width: 100%;
  background: linear-gradient(135deg, #e87b00, #f59b33);
  color: #fff;
  border: 1px solid rgba(255, 166, 0, 0.45);
  padding: 16px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(232, 123, 0, 0.4);
  transition: all 0.2s;
}
.btn-submit-order:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffa600, #e87b00);
  box-shadow: 0 14px 35px rgba(232, 123, 0, 0.6);
}

.btn-cancel-modal {
  width: 100%;
  background: transparent;
  color: var(--text-muted, rgba(250, 249, 245, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 16px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.btn-cancel-modal:hover,
.btn-cancel-modal:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  outline: none;
}

/* Payment QR Modal */
.qr-container {
  text-align: center;
  padding: 12px 0;
}
.qr-frame {
  background: #fff;
  padding: 14px;
  border-radius: var(--radius-lg);
  display: inline-block;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 16px;
}
.qr-frame img {
  width: 220px;
  height: 220px;
  display: block;
}

.slip-upload-box {
  background: rgba(7, 19, 38, 0.8);
  border: 2px dashed rgba(0, 240, 255, 0.35);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  margin: 16px 0;
}
.slip-upload-box:hover {
  border-color: var(--accent-primary);
  background: rgba(232, 123, 0, 0.08);
}

/* Mobile Sticky Bottom Action Dock */
.mobile-sticky-bar,
.mobile-bottom-dock {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 15, 23, 0.92);
  border-top: 1px solid var(--line-subtle);
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom, 0px));
  backdrop-filter: blur(20px);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.m-price-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.m-price-info strong {
  font-size: 1.3rem;
  color: var(--accent-emerald);
  font-family: var(--font-latin);
}
.m-actions {
  display: flex;
  gap: 8px;
}
.btn-m-buy {
  background: linear-gradient(135deg, #e87b00, #f59b33);
  color: #fff;
  border: 1px solid rgba(255, 166, 0, 0.45);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(232, 123, 0, 0.35);
}
.btn-m-line {
  background: #06C755;
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
.store-footer {
  border-top: 1px solid var(--line-subtle);
  padding: 48px 0 32px;
  margin-top: 60px;
  background: rgba(7, 9, 14, 0.9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 12px;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
}
.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--line-subtle);
  padding-top: 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-simulator {
    margin: 24px auto;
    max-width: 520px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .system-highlights-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .system-highlights-grid,
  .testimonials-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(85vw, 320px);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 4px;
    padding: 4px 4px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
  }
  .system-highlights-grid::-webkit-scrollbar,
  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }
  .system-highlight-card,
  .testimonial-card {
    padding: 20px 16px;
    scroll-snap-align: start;
  }
  .store-header {
    padding: 12px 16px;
  }
  .hero-section {
    padding: 32px 0;
  }
  .hero-content h1 {
    font-size: 2.1rem;
  }
  .hero-simulator {
    margin: 16px 0 24px;
  }
  .sim-trust-header {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .track-form-box {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .track-input, .btn-track {
    width: 100%;
    min-height: 48px;
    box-sizing: border-box;
  }
  .quick-buy-panel {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 20px;
  }
  .btn-reserve-now {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1050px) {
  .mobile-sticky-bar,
  .mobile-bottom-dock {
    display: grid;
  }
  body {
    padding-bottom: calc(90px + env(safe-area-inset-bottom, 0px));
  }
  .store-footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* ----------------------------------------------------
   Checkout Steps Progress Indicator (Apple/Shopee Grade)
   ---------------------------------------------------- */
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-full);
}
.step-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.step-pill .step-num {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
}
.step-pill.active {
  color: #fff;
  font-weight: 700;
}
.step-pill.active .step-num {
  background: var(--accent-primary);
  box-shadow: 0 0 8px rgba(232, 123, 0, 0.6);
}
.step-pill.done {
  color: var(--accent-emerald);
}
.step-pill.done .step-num {
  background: var(--accent-emerald);
  color: #000;
}
.step-divider {
  color: var(--text-dim);
  font-size: 0.7rem;
}

/* ----------------------------------------------------
   Reservation Hold Countdown Banner
   ---------------------------------------------------- */
.reservation-timer-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: #FCD34D;
  margin-bottom: 8px;
  gap: 6px;
}

/* ----------------------------------------------------
   QR Wrapper & Download Action
   ---------------------------------------------------- */
.qr-frame-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 14px;
}
.btn-qr-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-qr-download:hover {
  background: rgba(56, 189, 248, 0.18);
  color: #fff;
  transform: translateY(-1px);
}

/* ----------------------------------------------------
   Account & Amount Copyable Details Card
   ---------------------------------------------------- */
.payment-details-card {
  background: rgba(7, 9, 14, 0.75);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 16px;
  text-align: left;
}
.pay-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  gap: 8px;
}
.pay-detail-row .lbl {
  color: var(--text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
}
.val-copy-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}
.highlight-val {
  color: var(--accent-emerald);
  font-size: 1.15rem;
  font-family: var(--font-latin);
  font-weight: 800;
  white-space: nowrap;
}
.btn-copy-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-copy-chip:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #fff;
  transform: translateY(-1px);
}
.btn-copy-chip:active {
  transform: scale(0.95);
}

/* ----------------------------------------------------
   Global Toast Notification Popup
   ---------------------------------------------------- */
.toast-popup {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  max-width: min(calc(100vw - 32px), 520px);
  transform: translateY(80px);
  background: rgba(16, 185, 129, 0.95);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.4);
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  gap: 8px;
  box-sizing: border-box;
}
.toast-popup.show {
  transform: translateY(0);
  opacity: 1;
}

/* ----------------------------------------------------
   Slip Verification Success Celebration & Trophy Effects
   ---------------------------------------------------- */
@keyframes trophyBounce {
  0% { transform: scale(0.85) translateY(0) rotate(-4deg); }
  50% { transform: scale(1.15) translateY(-10px) rotate(4deg); filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.85)); }
  100% { transform: scale(1) translateY(0) rotate(0deg); }
}

@keyframes popCelebration {
  0% { transform: scale(0.7); opacity: 0; }
  60% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 25px rgba(16, 185, 129, 0.3), inset 0 0 15px rgba(16, 185, 129, 0.15); }
  50% { box-shadow: 0 0 45px rgba(16, 185, 129, 0.6), inset 0 0 25px rgba(16, 185, 129, 0.3); }
}

.payment-celebration-card {
  text-align: center;
  padding: 22px 16px;
  margin: 14px 0;
  background: radial-gradient(circle at 50% 30%, rgba(16, 185, 129, 0.25), rgba(7, 9, 14, 0.95));
  border: 2px solid rgba(16, 185, 129, 0.7);
  border-radius: var(--radius-lg);
  animation: popCelebration 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards, pulseGlow 2.5s infinite;
  position: relative;
  overflow: hidden;
}

.celebration-trophy {
  font-size: 3.8rem;
  line-height: 1;
  margin-bottom: 8px;
  display: inline-block;
  animation: trophyBounce 1.8s ease-in-out infinite;
}

.celebration-badge-slipok {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
}

/* ====================================================
   Modern Visual Cover Package Cards & Detail Modal
   (DigitalOK Inspired Layout)
   ==================================================== */
.variant-card,
.product-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 28px 24px;
  background: rgba(7, 19, 38, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.variant-card:hover,
.product-card:hover {
  border-color: rgba(232, 123, 0, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 30px rgba(232, 123, 0, 0.1);
}

.variant-card.featured-card,
.product-card.featured-card {
  border: 1px solid rgba(232, 123, 0, 0.6);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 24px rgba(232, 123, 0, 0.18);
}

.variant-card.featured-card:hover,
.product-card.featured-card:hover {
  border-color: rgba(232, 123, 0, 0.85);
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.65), 0 0 36px rgba(232, 123, 0, 0.3);
}

.variant-card.active,
.product-card.active {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 1px rgba(232, 123, 0, 0.5), 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 32px rgba(232, 123, 0, 0.25);
}

.variant-card.featured-card.active,
.product-card.featured-card.active {
  border-color: #e87b00;
  box-shadow: 0 0 0 1px #e87b00, 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 36px rgba(232, 123, 0, 0.35);
}

@supports not (backdrop-filter: blur(16px)) {
  .variant-card,
  .product-card {
    background: rgba(7, 19, 38, 0.95);
  }
}

.variant-card:focus-visible,
.product-card:focus-visible {
  outline: 3px solid #e87b00;
  outline-offset: 3px;
  border-color: rgba(232, 123, 0, 0.85);
}

/* 1. Card Top Header & Badges */
.card-top-header {
  margin-bottom: 14px;
}

.card-header-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.card-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.card-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 100rem;
  font-size: 0.74rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #e87b00 0%, #ff9800 100%);
  box-shadow: 0 4px 14px rgba(232, 123, 0, 0.45);
}

.card-badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #d1d5db;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-title {
  font-family: 'Kanit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 6px 0;
}

.card-subtitle {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  min-height: 2.8em;
}

.variant-duration {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* 2. Prominent Price & Savings Block */
.card-price-block,
.variant-price-block {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  margin: 0 0 16px !important;
  padding: 16px 0 !important;
  border-block: 1px solid rgba(255, 255, 255, 0.08) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 12px;
  width: 100%;
  box-sizing: border-box;
}

.card-display-price,
.v-current-price {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.95rem, 3.6vw, 2.75rem);
  line-height: 1.1;
  color: #ffffff;
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-shrink: 0;
}

.card-display-price .price-currency,
.v-current-price .price-currency {
  font-size: 1.55rem;
  font-weight: 700;
  color: #f59e0b;
}

.card-display-price .price-amount,
.v-current-price .price-amount {
  letter-spacing: -0.02em;
}

.card-display-price .price-unit,
.v-current-price small,
.card-display-price small {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 6px;
}

.card-savings-wrap,
.v-original-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  flex-wrap: wrap;
}

.card-original-price,
.v-original-price {
  color: var(--text-dim);
  text-decoration: line-through;
  font-size: 1rem;
}

.card-save-pill,
.v-save-badge {
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 100rem;
  font-weight: 700;
  padding: 3px 10px;
  font-size: 0.78rem;
}

.card-warranty-callout {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: rgba(250, 249, 245, 0.88);
  line-height: 1.4;
  width: 100%;
  box-sizing: border-box;
}

.card-warranty-callout .warranty-shield {
  font-size: 0.95rem;
  flex-shrink: 0;
}

.card-warranty-callout span:last-child {
  min-width: 0;
  word-break: break-word;
}

/* 3. Primary CTA Action */
.btn-card-primary,
.btn-card-action {
  width: 100%;
  min-height: 50px;
  border-radius: 100rem !important;
  font-family: 'Kanit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #e87b00 0%, #f59b33 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 166, 0, 0.5);
  box-shadow: 0 8px 24px -4px rgba(232, 123, 0, 0.45);
}

.btn-card-primary:hover,
.btn-card-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -2px rgba(232, 123, 0, 0.65), 0 0 24px rgba(232, 123, 0, 0.35);
  border-color: #ffb74d;
  color: #ffffff;
  background: linear-gradient(135deg, #ff8c00 0%, #ffa726 100%);
}

.btn-card-primary .btn-arrow,
.btn-card-action .btn-arrow {
  transition: transform 0.2s ease;
}

.btn-card-primary:hover .btn-arrow,
.btn-card-action:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-card-action.btn-selected,
.variant-card.active .btn-card-action,
.variant-card.featured-card.active .btn-card-action,
.variant-card.featured-card.active .btn-card-action.btn-selected {
  color: #ffffff;
  background: linear-gradient(135deg, #e87b00 0%, #f59b33 100%);
  border-color: rgba(255, 166, 0, 0.5);
  box-shadow: 0 8px 24px -4px rgba(232, 123, 0, 0.5), 0 0 16px rgba(232, 123, 0, 0.25);
  border-radius: 100rem;
}

.btn-card-primary:focus-visible,
.btn-card-action:focus-visible {
  outline: 3px solid #00f0ff;
  outline-offset: 3px;
}

/* 4. Seat Availability HUD */
.card-seats-hud,
.variant-seats-box {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 14px;
}

.seats-hud-label-row,
.variant-seats-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--text-secondary);
}

.seats-hud-title {
  color: var(--text-muted);
}

.seats-status-text {
  color: #10b981;
  font-weight: 800;
}

.seats-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
}

.seats-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #e87b00, #00f0ff, #10b981);
  border-radius: 99px;
  transition: width 0.6s ease;
}

/* 5. Secondary Actions */
.card-secondary-actions,
.variant-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.card-secondary-actions.single-action,
.variant-btn-row.single-action,
.detail-share-row.single-action {
  grid-template-columns: 1fr !important;
}

@media (max-width: 480px) {
  .card-secondary-actions,
  .variant-btn-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.btn-view-details {
  border-radius: 100rem;
}

.btn-view-details,
.btn-party-link {
  width: 100%;
  padding: 8px 12px;
  border-radius: 100rem;
  font-weight: 600;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
}

@media (max-width: 480px) {
  .btn-view-details,
  .btn-party-link {
    min-height: 42px;
    font-size: 0.84rem;
  }
}

.btn-view-details {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--accent-cyan);
}

.btn-view-details:hover {
  background: rgba(0, 240, 255, 0.18);
  border-color: var(--accent-cyan);
  color: #ffffff;
}

.btn-party-link {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

.btn-party-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.btn-view-details:focus-visible,
.btn-party-link:focus-visible {
  outline: 3px solid #00f0ff;
  outline-offset: 2px;
}

/* 6. Value Stack / Included Tools Checklist */
.variant-value-stack,
.card-value-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(250, 249, 245, 0.06);
  margin-top: auto;
}

.value-stack-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.81rem;
  color: rgba(250, 249, 245, 0.88);
  line-height: 1.45;
}

.value-stack-item .stack-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  font-size: 0.68rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.35);
  margin-top: 2px;
}

/* Plan Detail Modal */
.plan-detail-modal-box {
  max-width: 580px !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  padding: 0 !important;
}

.detail-modal-header {
  position: relative;
}

.detail-cover-wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 280px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.detail-modal-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-cover-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.95) 100%);
}

.detail-cover-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 99px;
  backdrop-filter: blur(8px);
}

.detail-modal-title {
  padding: 16px 24px 8px;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.detail-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 24px 16px;
}

@media (max-width: 480px) {
  .detail-metrics-grid {
    grid-template-columns: 1fr;
  }
}

.detail-metric-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 16px;
}

.detail-metric-card .metric-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.metric-val-wrap {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.metric-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent-emerald);
}

.metric-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.seats-head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.seat-badge-chip {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-cyan);
}

.seats-bar-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 4px;
}

.seats-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #e87b00, #10B981);
  border-radius: 99px;
}

.seats-remain-msg {
  font-size: 0.75rem;
  color: var(--accent-cyan);
  display: block;
  text-align: right;
  font-weight: 600;
}

.detail-content-body {
  padding: 0 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.detail-section-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 16px;
}

.detail-section-heading {
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.detail-feature-list, .detail-rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.detail-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.detail-feature-list li::before {
  content: '✓';
  color: var(--accent-emerald);
  font-weight: 800;
  flex-shrink: 0;
}

.detail-rules-list li {
  font-size: 0.875rem;
  color: #CBD5E1;
  line-height: 1.55;
}

.detail-modal-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(15, 23, 42, 0.8);
  position: sticky;
  bottom: 0;
}

.btn-detail-order {
  width: 100%;
  padding: 14px 20px;
  border-radius: 100rem;
  font-weight: 800;
  font-size: 1.05rem;
  background: linear-gradient(135deg, #e87b00, #ffa600);
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(232, 123, 0, 0.45);
  transition: all 0.2s ease;
}

.btn-detail-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(232, 123, 0, 0.6);
}

.btn-detail-share {
  width: 100%;
  padding: 10px 16px;
  border-radius: 100rem;
  font-weight: 700;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #E2E8F0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-detail-share:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.variant-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn-party-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 100rem;
  font-weight: 700;
  font-size: 0.85rem;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: var(--accent-cyan);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-party-link:hover {
  background: rgba(56, 189, 248, 0.25);
  border-color: var(--accent-cyan);
  color: #FFFFFF;
}

.detail-share-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

@media (max-width: 480px) {
  .detail-share-row, .variant-btn-row {
    grid-template-columns: 1fr;
  }
}

.btn-detail-party-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 100rem;
  font-weight: 700;
  font-size: 0.875rem;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: var(--accent-cyan);
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-detail-party-link:hover {
  background: rgba(56, 189, 248, 0.22);
  border-color: var(--accent-cyan);
  color: #FFFFFF;
}

/* Responsive adjustments for modal & checkout callouts (Mobile Viewports < 480px) */
@media (max-width: 480px) {
  .modal-overlay {
    width: 95%;
  }
  .modal-box {
    padding: 22px 16px;
  }
  .checkout-family-warning {
    padding: 12px 14px;
    gap: 10px;
    margin: 12px 0 16px;
  }
  .checkout-family-warning .warning-icon {
    font-size: 1.15rem;
  }
  .checkout-family-warning .warning-title {
    font-size: 0.86rem;
  }
  .checkout-family-warning .warning-text {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

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

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

  .system-highlight-card:hover,
  .testimonial-card:hover,
  .system-highlight-link:active,
  .system-highlight-link:hover .arrow {
    transform: none !important;
  }
}

@media print {
  body {
    background: #ffffff !important;
    color: #0f172a !important;
  }

  .system-highlights-section,
  .testimonials-section {
    background: none !important;
    padding: 24px 0 !important;
    border: none !important;
  }

  .system-highlights-pill,
  .testimonials-rating-pill {
    color: #0369a1 !important;
    background: #e0f2fe !important;
    border: 1px solid #bae6fd !important;
  }

  .system-highlights-header h2,
  .system-highlights-header h3,
  .testimonials-header h3,
  .system-highlight-title {
    color: #0f172a !important;
  }

  .system-highlights-header p,
  .system-highlight-desc {
    color: #334155 !important;
  }

  .system-highlights-grid,
  .testimonials-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    overflow: visible !important;
  }

  .system-highlight-card,
  .testimonial-card {
    background: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: none !important;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .system-highlight-card::before {
    display: none !important;
  }

  .system-highlight-tag.cyan {
    color: #0369a1 !important;
    background: #e0f2fe !important;
    border-color: #bae6fd !important;
  }

  .system-highlight-tag.emerald {
    color: #047857 !important;
    background: #d1fae5 !important;
    border-color: #a7f3d0 !important;
  }

  .system-highlight-tag.violet,
  .system-highlight-tag.electric {
    color: #c2410c !important;
    background: #ffedd5 !important;
    border-color: #fed7aa !important;
  }

  .system-highlight-tag.amber {
    color: #b45309 !important;
    background: #fef3c7 !important;
    border-color: #fde68a !important;
  }

  .system-highlight-link {
    color: #0284c7 !important;
  }
}
