/* ==========================================================================
   FLAWLESS 365 — LUXURY DARK THEME DESIGN SYSTEM & PRO POLISH
   Owner: Flawless ENT
   ========================================================================== */

:root {
  --bg-pitch: #010408;
  --bg-deep-navy: #020b18;
  --bg-surface: #061426;
  --bg-surface-elevated: #0a1f3a;
  --bg-glass: rgba(6, 20, 38, 0.72);
  --bg-glass-heavy: rgba(3, 11, 22, 0.88);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-light: rgba(255, 255, 255, 0.16);
  --border-active: #1477ff;
  
  --blue-primary: #1477ff;
  --blue-hover: #338bff;
  --blue-glow: rgba(20, 119, 255, 0.45);
  --blue-subtle: rgba(20, 119, 255, 0.15);
  
  --cyan-crystal: #00e5ff;
  --cyan-glow: rgba(0, 229, 255, 0.35);
  
  --gold-primary: #d4af37;
  --gold-light: #f3d77d;
  --gold-glow: rgba(212, 175, 55, 0.35);
  
  --purple-accent: #a855f7;
  --pink-accent: #ec4899;
  --emerald-accent: #10b981;
  --orange-accent: #f97316;
  
  --text-main: #f0f5fc;
  --text-muted: #8ca3be;
  --text-dim: #516b8b;
  --text-on-accent: #ffffff;
  
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 16px 48px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 24px rgba(20, 119, 255, 0.12);
  --shadow-gold: 0 12px 36px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.3);
  
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   CUSTOM LUXURY SCROLLBARS (WebKit + Firefox)
   ========================================================================== */
* {
  scrollbar-width: thin;
  scrollbar-color: #1477ff rgba(2, 8, 18, 0.8);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(2, 8, 18, 0.85);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #1f80ff 0%, #0d4ba1 100%);
  border-radius: var(--radius-full);
  border: 2px solid rgba(2, 8, 18, 0.85);
  box-shadow: 0 0 10px var(--blue-glow);
  transition: all var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #3891ff 0%, #1661d4 100%);
  box-shadow: 0 0 18px rgba(20, 119, 255, 0.8);
}

/* Text Selection Glow */
::selection {
  background: rgba(20, 119, 255, 0.45);
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.7);
}

/* Base Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-pitch);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at 50% 0%, #061b38 0%, var(--bg-deep-navy) 40%, var(--bg-pitch) 100%);
  background-attachment: fixed;
  color: var(--text-main);
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Ambient Radial Glow Meshes */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: 
    radial-gradient(circle at 85% 15%, rgba(20, 119, 255, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 15% 75%, rgba(0, 229, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
}

/* Container & Shell */
.app-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}

.shell-main {
  flex: 1;
  padding: 1.5rem 0 4rem;
}

/* Typography Helpers */
h1, h2, h3, .heading-serif {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.heading-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.text-gold {
  color: var(--gold-light);
  text-shadow: 0 0 14px var(--gold-glow);
}

.text-blue {
  color: var(--blue-primary);
  text-shadow: 0 0 12px var(--blue-glow);
}

.text-cyan {
  color: var(--cyan-crystal);
  text-shadow: 0 0 12px var(--cyan-glow);
}

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

.text-dim {
  color: var(--text-dim);
}

/* ==========================================================================
   BUTTONS & CTAs WITH MICRO-INTERACTIONS & SHIMMER REFLECTIONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  user-select: none;
  position: relative;
  overflow: hidden;
}

/* Light Shimmer Effect */
.btn-primary::after, .btn-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: rotate(25deg);
  pointer-events: none;
  transition: none;
}

.btn-primary:hover::after, .btn-gold:hover::after {
  left: 140%;
  transition: all 0.75s ease-in-out;
}

.btn:active {
  transform: scale(0.97) !important;
}

.btn-primary {
  background: linear-gradient(135deg, #1f80ff 0%, #0d5dd1 100%);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 24px var(--blue-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3891ff 0%, #156ee8 100%);
  box-shadow: 0 0 32px rgba(20, 119, 255, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border: 1px solid var(--border-glass-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-gold {
  background: linear-gradient(135deg, #f4da89 0%, #c89e2b 100%);
  color: #030811;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 24px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  font-weight: 800;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ffea9e 0%, #dbaf37 100%);
  box-shadow: 0 0 36px rgba(212, 175, 55, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.08);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}

.btn-lg {
  padding: 0.95rem 2.25rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   TOP STICKY NAVIGATION WITH FROSTED GLASS & SHINE
   ========================================================================== */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(2, 8, 18, 0.84);
  border-bottom: 1px solid var(--border-glass-light);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #ffffff;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: scale(1.02);
}

.brand-crown {
  font-size: 1.55rem;
  color: var(--gold-primary);
  filter: drop-shadow(0 0 10px var(--gold-glow));
  transition: filter var(--transition-fast);
}

.brand-logo:hover .brand-crown {
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.7));
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #ffffff 40%, var(--cyan-crystal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Mobile Hamburger Toggle Button */
.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 50;
  transition: all var(--transition-fast);
}

.nav-toggle-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-fast);
  transform-origin: center;
}

.nav-toggle-btn:hover {
  background: rgba(20, 119, 255, 0.15);
  border-color: var(--blue-primary);
  box-shadow: 0 0 12px var(--blue-glow);
}

.nav-toggle-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--cyan-crystal);
}

.nav-toggle-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--cyan-crystal);
}

.nav-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(1, 4, 10, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 45;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.nav-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.user-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0.95rem 0.35rem 0.45rem;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-main);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.user-pill:hover {
  border-color: var(--blue-primary);
  box-shadow: 0 0 18px var(--blue-glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--gold-primary));
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(20, 119, 255, 0.4);
}

.user-pill-name {
  font-size: 0.85rem;
  font-weight: 600;
}

.vip-tag {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, #c89e2b, #f4da89);
  color: #050a14;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 0 8px var(--gold-glow);
}

/* ==========================================================================
   GLASSMORPHIC CARDS & PANELS
   ========================================================================== */
.card-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
  position: relative;
}

.month-hero-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border: 1px solid var(--border-glass-light);
}

.month-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.month-hero-card:hover .month-hero-bg {
  transform: scale(1.03);
}

.month-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 6, 14, 0.96) 0%, rgba(1, 6, 14, 0.7) 48%, rgba(1, 6, 14, 0.35) 100%),
              linear-gradient(0deg, rgba(1, 6, 14, 0.98) 0%, transparent 60%);
  z-index: 2;
}

.month-hero-content {
  position: relative;
  z-index: 3;
  padding: 2.75rem;
  max-width: 680px;
}

.month-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  background: rgba(20, 119, 255, 0.18);
  border: 1px solid rgba(0, 229, 255, 0.45);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyan-crystal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.25);
}

.month-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.month-year {
  font-size: 1.65rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.month-tagline {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.4;
  color: #e5effa;
  margin-bottom: 1.65rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   CALENDAR CONTROL BAR & VIEW SWITCHER
   ========================================================================== */
.calendar-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: rgba(6, 20, 38, 0.65);
  border-bottom: 1px solid var(--border-glass-light);
}

.nav-arrows {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.view-switcher {
  display: flex;
  align-items: center;
  background: rgba(2, 8, 18, 0.8);
  padding: 0.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass-light);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.5);
}

.view-btn {
  padding: 0.45rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.view-btn.active {
  background: var(--blue-primary);
  color: #ffffff;
  box-shadow: 0 0 16px var(--blue-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.view-btn:hover:not(.active) {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   MONTH GRID & POLISHED DAY CELLS
   ========================================================================== */
.calendar-body {
  padding: 1.75rem;
}

.month-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.6rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

.weekday-col {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 0.45rem 0;
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.6rem;
}

.day-cell {
  min-height: 115px;
  background: rgba(8, 24, 46, 0.45);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.day-cell:hover {
  background: rgba(14, 38, 70, 0.65);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.day-cell.other-month {
  opacity: 0.32;
  background: rgba(3, 10, 20, 0.25);
}

.day-cell.selected {
  border-color: var(--cyan-crystal);
  box-shadow: 0 0 20px var(--cyan-glow), inset 0 0 14px rgba(0, 229, 255, 0.18);
  background: rgba(14, 44, 82, 0.75);
}

.day-cell.today .day-number {
  background: var(--blue-primary);
  color: #ffffff;
  box-shadow: 0 0 12px var(--blue-glow);
}

.day-header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
}

.day-number {
  font-size: 0.85rem;
  font-weight: 700;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.day-special-indicator {
  font-size: 0.85rem;
  color: var(--gold-light);
  filter: drop-shadow(0 0 8px var(--gold-glow));
}

.day-events-stack {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  overflow: hidden;
}

.event-chip {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-xs);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(20, 119, 255, 0.22);
  border-left: 3px solid var(--blue-primary);
  color: #e5effa;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.event-chip.chip-gold {
  background: rgba(212, 175, 55, 0.2);
  border-left-color: var(--gold-primary);
  color: var(--gold-light);
}

.event-chip.chip-purple {
  background: rgba(168, 85, 247, 0.2);
  border-left-color: var(--purple-accent);
}

.event-chip.chip-cyan {
  background: rgba(0, 229, 255, 0.2);
  border-left-color: var(--cyan-crystal);
}

.event-chip.chip-pink {
  background: rgba(236, 72, 153, 0.2);
  border-left-color: var(--pink-accent);
}

.more-events-badge {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 700;
  padding-left: 0.3rem;
}

/* ==========================================================================
   SELECTED DAY PANEL & ROWS
   ========================================================================== */
.selected-day-panel {
  margin-top: 1.75rem;
  padding: 1.75rem;
  background: rgba(4, 14, 28, 0.65);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.35rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-glass);
}

.event-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1.1rem;
  align-items: center;
  padding: 1.1rem;
  background: rgba(6, 20, 38, 0.55);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.event-row:hover {
  background: rgba(10, 30, 58, 0.75);
  border-color: var(--border-glass-light);
  transform: translateX(3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 14px var(--blue-glow);
}

.event-time-col {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--blue-primary);
}

.event-title-line {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.event-meta-line {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   WEEK & DAY TIMELINES
   ========================================================================== */
.week-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.week-col {
  background: rgba(6, 20, 38, 0.55);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.95rem;
  min-height: 440px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.week-col-header {
  text-align: center;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-glass);
}

.day-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.timeline-slot {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  min-height: 56px;
}

.timeline-hour {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dim);
}

/* ==========================================================================
   MODALS & FROSTED GLASS SHEETS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(1, 4, 10, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-sheet {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.85), 0 0 50px rgba(20, 119, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform var(--transition-smooth);
}

.modal-backdrop.open .modal-sheet {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass-light);
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.15rem;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  transform: scale(1.06);
}

/* ==========================================================================
   FORM CONTROLS & LUXURY INPUTS
   ========================================================================== */
.form-group {
  margin-bottom: 1.35rem;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(2, 8, 18, 0.75);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 20px var(--blue-glow), inset 0 1px 3px rgba(0, 0, 0, 0.2);
  background: rgba(4, 14, 30, 0.9);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-main);
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue-primary);
  cursor: pointer;
}

.reminders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0.95rem;
  background: rgba(2, 8, 18, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
}

/* ==========================================================================
   JANUARY EXPERIENCE SHOWCASE MODAL
   ========================================================================== */
.experience-hero-img-wrap {
  position: relative;
  height: 290px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.75rem;
  border: 1px solid var(--border-glass-light);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.experience-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.95rem;
  margin: 1.35rem 0;
}

.gallery-item {
  height: 115px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass-light);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #000000;
  border: 1px solid var(--border-glass-light);
  margin: 1.35rem 0;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7);
}

.video-container video, .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   EXECUTIVE 4K VIDEO DROP CINEMA PLAYER & SHOWCASE
   ========================================================================== */
.experience-video-drop-section {
  background: linear-gradient(135deg, rgba(2, 11, 24, 0.88), rgba(4, 18, 36, 0.95));
  border: 1px solid rgba(38, 128, 255, 0.35);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8), 0 0 28px rgba(20, 119, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-normal);
}

.experience-video-drop-section:hover {
  border-color: rgba(38, 128, 255, 0.55);
}

.video-drop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.video-drop-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(20, 119, 255, 0.22), rgba(0, 229, 255, 0.12));
  border: 1px solid rgba(0, 229, 255, 0.45);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--cyan-crystal);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.video-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-crystal);
  box-shadow: 0 0 8px var(--cyan-crystal);
  animation: pulse-dot-anim 1.8s infinite ease-in-out;
}

@keyframes pulse-dot-anim {
  0% { transform: scale(0.85); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.85); opacity: 0.7; }
}

.video-drop-quality-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

.video-drop-player-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.85);
}

.video-drop-screen-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: radial-gradient(circle at center, #07172b 0%, #010408 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-drop-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-drop-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.video-drop-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(1, 6, 14, 0.35) 0%, rgba(1, 6, 14, 0.82) 100%);
  cursor: pointer;
  z-index: 4;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1.5rem;
}

.video-drop-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-drop-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2680ff 0%, #1477ff 55%, #0d5dd1 100%);
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 32px rgba(38, 128, 255, 0.8), 0 6px 24px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.video-drop-play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(38, 128, 255, 0.4);
  animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0.3; }
  100% { transform: scale(1.3); opacity: 0; }
}

.video-drop-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 45px rgba(0, 229, 255, 0.9), 0 8px 30px rgba(0, 0, 0, 0.9);
}

.play-icon-glow {
  font-size: 1.7rem;
  color: #ffffff;
  margin-left: 4px;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

.video-drop-overlay-info {
  text-align: center;
  margin-top: 1.15rem;
  max-width: 90%;
}

.video-drop-overlay-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.video-drop-overlay-meta {
  font-size: 0.82rem;
  color: var(--cyan-crystal);
  margin-top: 0.3rem;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.video-drop-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(180deg, transparent 0%, rgba(1, 6, 14, 0.94) 100%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.video-drop-screen-wrap:not(:hover) .video-drop-controls:not(.active) {
  opacity: 0.85;
}

.v-control-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.15rem;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.v-control-btn:hover {
  color: var(--cyan-crystal);
  transform: scale(1.1);
}

.v-progress-wrap {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  transition: height 0.15s ease;
}

.v-progress-wrap:hover {
  height: 8px;
}

.v-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #1477ff 0%, #00e5ff 100%);
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
  transition: width 0.1s linear;
}

.v-time-display {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* ==========================================================================
   AUDIO PLAYER WIDGET WITH EQUALIZER ANIMATION
   ========================================================================== */
.audio-card {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  padding: 1.35rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(6, 20, 38, 0.9));
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  margin: 1.35rem 0;
}

.play-circle-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4da89, #c89e2b);
  border: none;
  color: #040912;
  font-size: 1.35rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 0 20px var(--gold-glow);
  transition: transform var(--transition-fast);
}

.play-circle-btn:hover {
  transform: scale(1.08);
}

.waveform-bars {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 36px;
  flex: 1;
}

.wave-bar {
  width: 4px;
  background: linear-gradient(180deg, #ffea9e 0%, #dbaf37 100%);
  border-radius: var(--radius-full);
  height: 14px;
  animation: pulse-wave 1.2s ease-in-out infinite alternate;
  box-shadow: 0 0 6px var(--gold-glow);
}

.wave-bar:nth-child(2n) { animation-delay: 0.2s; }
.wave-bar:nth-child(3n) { animation-delay: 0.4s; }
.wave-bar:nth-child(4n) { animation-delay: 0.6s; }

@keyframes pulse-wave {
  0% { height: 6px; opacity: 0.4; }
  100% { height: 32px; opacity: 1; }
}

/* Dynamic Showcase Media Vault Grid & Cards */
.showcase-media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

.showcase-media-card {
  background: rgba(4, 14, 28, 0.7);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  display: flex;
  gap: 1.15rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.showcase-media-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6);
}

.showcase-media-card.featured-video {
  display: block;
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.showcase-media-thumb {
  width: 120px;
  height: 85px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-glass-light);
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.showcase-media-thumb:hover {
  transform: scale(1.05);
}

.showcase-media-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.media-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}

.media-tag-video {
  background: rgba(20, 119, 255, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(20, 119, 255, 0.4);
}

.media-tag-gallery {
  background: rgba(168, 85, 247, 0.2);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.4);
}

.media-tag-audio {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.media-vip-lock-badge {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(245, 158, 11, 0.35));
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.5);
  border-radius: var(--radius-full);
  padding: 2px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.media-gated-overlay {
  background: rgba(2, 8, 18, 0.92);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px dashed rgba(212, 175, 55, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}


/* ==========================================================================
   LANDING PAGE GRID & CARDS
   ========================================================================== */
.landing-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 2.5rem 0;
}

.hero-heading {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  margin: 0.75rem 0 1.25rem;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-glass);
  padding-top: 1.5rem;
  flex-wrap: wrap;
}

.hero-stat-val {
  font-size: 1.6rem;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.landing-card-preview {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(20, 119, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid var(--border-glass-light);
}

.hero-preview-frame {
  position: relative;
  min-height: 540px;
  height: 100%;
}

.hero-preview-img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  display: block;
}

.hero-preview-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,6,12,0.1) 0%, rgba(2,6,12,0.7) 50%, rgba(2,6,12,0.94) 100%);
}

.hero-preview-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.25rem;
}

.hero-preview-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin: 0.5rem 0;
}

.hero-preview-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
}

/* Site Footer */
.site-footer {
  border-top: 1px solid var(--border-glass);
  padding: 2.5rem 0;
  background: rgba(1, 4, 10, 0.9);
}

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

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin: 4.5rem 0;
}

.feature-card {
  padding: 2.25rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue-primary);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 28px var(--blue-glow);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 1.1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
  max-width: 840px;
  margin: 3.5rem auto;
}

.pricing-card {
  padding: 2.75rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-card.featured {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.1) 0%, rgba(6, 20, 38, 0.9) 100%);
}

.price-val {
  font-size: 3.4rem;
  font-family: var(--font-display);
  font-weight: 900;
  margin: 1.1rem 0 0.5rem;
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-glass-light);
  color: #ffffff;
  padding: 0.95rem 1.35rem;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 20px rgba(20, 119, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.92rem;
  font-weight: 600;
  pointer-events: auto;
  animation: slide-up 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.toast-success {
  border-color: var(--emerald-accent);
}

.toast.toast-error {
  border-color: var(--pink-accent);
}

@keyframes slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS & MOBILE POLISH
   ========================================================================== */
@media (max-width: 900px) {
  /* Header & Mobile Drawer Navigation */
  .nav-toggle-btn {
    display: flex;
  }

  .nav-actions {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    background: rgba(2, 7, 16, 0.96);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--border-glass-light);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(20, 119, 255, 0.15);
    padding: 1.5rem 1.25rem 2rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    z-index: 48;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.35s;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .nav-actions.mobile-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }

  .nav-actions .user-pill {
    width: 100%;
    justify-content: center;
    padding: 0.65rem 1rem;
  }

  body.nav-drawer-open {
    overflow: hidden;
  }

  /* Landing Hero Centering */
  .landing-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
    padding: 1.5rem 0;
    min-height: auto;
  }

  .hero-content-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
    width: 100%;
  }

  .hero-stats-row {
    justify-content: center;
    gap: 2rem;
    width: 100%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
  }

  .month-hero-content {
    padding: 1.85rem;
  }

  .month-title {
    font-size: 2.4rem;
  }

  .week-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  /* Navigation Bar Compact */
  .top-nav {
    height: 64px;
  }

  .nav-inner {
    height: 64px;
  }

  .nav-actions {
    top: 64px;
    max-height: calc(100vh - 64px);
    padding: 1.25rem 1rem 1.75rem;
  }

  .brand-logo {
    gap: 0.55rem;
  }

  .brand-crown {
    font-size: 1.35rem;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-sub {
    font-size: 0.6rem;
  }

  /* Disclaimer Banner */
  .testing-disclaimer-banner {
    flex-wrap: wrap;
    padding: 0.45rem 0.75rem;
    font-size: 0.76rem;
    gap: 0.35rem;
    line-height: 1.4;
  }

  .testing-disclaimer-badge {
    font-size: 0.68rem;
    padding: 0.1rem 0.45rem;
  }

  /* Hero Section */
  .hero-heading {
    font-size: clamp(1.9rem, 8vw, 2.75rem);
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-stats-row {
    justify-content: space-around;
    gap: 0.85rem;
    padding-top: 1.25rem;
  }

  .hero-stat-val {
    font-size: 1.35rem;
  }

  .hero-stat-label {
    font-size: 0.72rem;
  }

  /* Preview Card */
  .hero-preview-frame,
  .hero-preview-img {
    min-height: 420px;
  }

  .hero-preview-content {
    padding: 1.5rem 1.15rem;
  }

  .hero-preview-title {
    font-size: 1.55rem;
  }

  .hero-preview-desc {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  /* Feature & Pricing Cards */
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 2.5rem 0;
  }

  .feature-card {
    padding: 1.5rem 1.25rem;
  }

  .pricing-card {
    padding: 2rem 1.25rem;
  }

  .price-val {
    font-size: 2.8rem;
  }

  /* Footer */
  .site-footer {
    padding: 2rem 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  /* Modals on Mobile View */
  .modal-backdrop {
    padding: 0.75rem 0.5rem;
  }

  .modal-sheet {
    padding: 1.5rem 1.15rem;
    border-radius: var(--radius-md);
    max-height: 92vh;
  }

  .modal-header {
    margin-bottom: 1.25rem;
  }

  .modal-sheet h2 {
    font-size: 1.45rem !important;
  }

  .auth-mode-tabs .view-btn {
    padding: 0.45rem 0.5rem;
    font-size: 0.78rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .month-weekdays {
    font-size: 0.65rem;
  }

  .day-cell {
    min-height: 75px;
    padding: 0.4rem;
  }

  .event-chip {
    font-size: 0.65rem;
    padding: 0.18rem 0.35rem;
  }

  .reminders-grid {
    grid-template-columns: 1fr;
  }

  .calendar-controls {
    flex-direction: column;
    align-items: stretch;
  }

  /* Mobile Video Drop & Media Cards Polish */
  .experience-video-drop-section {
    padding: 0.85rem;
    margin: 1.15rem 0;
    border-radius: var(--radius-md);
  }

  .video-drop-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .video-drop-play-btn {
    width: 58px;
    height: 58px;
  }

  .play-icon-glow {
    font-size: 1.35rem;
  }

  .video-drop-overlay-title {
    font-size: 1rem;
  }

  .video-drop-overlay-meta {
    font-size: 0.75rem;
  }

  .video-drop-controls {
    height: 42px;
    padding: 0 0.6rem;
    gap: 0.5rem;
  }

  .v-control-btn {
    font-size: 1rem;
    padding: 4px;
  }

  .showcase-media-card {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.85rem;
  }

  .showcase-media-thumb {
    width: 100%;
    height: 160px;
  }

  .showcase-media-info {
    width: 100%;
  }

  /* Global overflow containment */
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }
}

/* ==========================================================================
   ACCESS GATING & RESTRICTED OVERLAY
   ========================================================================== */
.access-gate-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(10, 31, 58, 0.95), rgba(1, 4, 8, 0.98));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.access-gate-card {
  max-width: 520px;
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.25rem;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(20, 119, 255, 0.25);
  animation: modal-enter 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gate-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(20, 119, 255, 0.25), rgba(6, 20, 38, 0.8));
  border: 1px solid var(--blue-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 24px var(--blue-glow);
}

/* ==========================================================================
   CALENDAR TOOLBAR & FILTER CHIPS
   ========================================================================== */
.calendar-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-glass);
}

.search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 240px;
  max-width: 380px;
}

.search-input-wrap .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
  pointer-events: none;
}

.search-input-wrap input {
  padding-left: 2.4rem;
  height: 40px;
  font-size: 0.88rem;
}

.filter-chips-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-chip {
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-chip:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.filter-chip.active {
  background: rgba(20, 119, 255, 0.2);
  border-color: var(--blue-primary);
  color: var(--cyan-crystal);
  box-shadow: 0 0 12px var(--blue-glow);
}

/* ==========================================================================
   LIGHTBOX MODAL FOR HIGH-RES GALLERY
   ========================================================================== */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(1, 4, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 160;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-backdrop.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: modal-enter 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-img-wrap {
  width: 100%;
  max-height: 70vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass-light);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95), 0 0 40px rgba(20, 119, 255, 0.3);
}

.lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #020712;
}

.lightbox-caption {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-main);
  text-align: center;
  font-weight: 600;
}

.lightbox-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-glass-light);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close-btn:hover {
  background: var(--pink-accent);
  color: #ffffff;
}

/* ==========================================================================
   MONTH PREVIEW SWITCHER & UPCOMING CARDS
   ========================================================================== */
.month-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.month-preview-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.month-preview-card.active-month {
  border-color: var(--gold-primary);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.12) 0%, var(--bg-surface) 100%);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.month-preview-card:hover {
  border-color: var(--blue-primary);
  transform: translateY(-3px);
}

.month-locked-tag {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   SQUARE VIP CHECKOUT MODAL
   ========================================================================== */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.payment-method-card {
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.payment-method-card:hover {
  background: rgba(20, 119, 255, 0.1);
  border-color: var(--blue-primary);
}

.payment-method-card.selected {
  background: rgba(20, 119, 255, 0.18);
  border-color: var(--blue-primary);
  color: var(--cyan-crystal);
  box-shadow: 0 0 14px var(--blue-glow);
}

.payment-summary-box {
  background: rgba(2, 8, 18, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin: 1.25rem 0;
  font-size: 0.88rem;
}

.payment-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.payment-summary-row.total {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-glass);
}

/* ==========================================================================
   LEGAL TERMS & PRIVACY MODAL
   ========================================================================== */
.legal-content-body {
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 0.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.legal-content-body h4 {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 1.25rem 0 0.4rem;
}

.legal-content-body p {
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   TESTING DISCLAIMER BANNER & CALLOUTS
   ========================================================================== */
.testing-disclaimer-banner {
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.12) 0%, rgba(212, 175, 55, 0.18) 50%, rgba(245, 158, 11, 0.12) 100%);
  border-bottom: 1px solid rgba(245, 158, 11, 0.35);
  color: #fde68a;
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.testing-disclaimer-badge {
  background: rgba(245, 158, 11, 0.25);
  border: 1px solid rgba(245, 158, 11, 0.6);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fffbeb;
  text-transform: uppercase;
}

.form-disclaimer-note {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.95rem;
  font-size: 0.78rem;
  color: #fef08a;
  line-height: 1.5;
  margin-top: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

/* ==========================================================================
   ADMIN & ALPHA TEST DISTRIBUTION CONSOLE
   ========================================================================== */
.admin-badge-crown {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(20, 119, 255, 0.15) 100%);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.85rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 15px var(--gold-glow);
}

.admin-header-panel {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-elevated);
}

.admin-header-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--cyan-crystal), var(--blue-primary));
}

.admin-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.admin-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 780px;
  line-height: 1.6;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.admin-stat-card {
  background: rgba(6, 20, 38, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.admin-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.admin-stat-val {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
}

.apk-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.apk-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.apk-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glass-light);
  box-shadow: var(--shadow-elevated);
}

.apk-card.apk-debug-card:hover {
  border-color: rgba(20, 119, 255, 0.5);
  box-shadow: 0 16px 40px rgba(20, 119, 255, 0.2);
}

.apk-card.apk-release-card:hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.2);
}

.apk-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.apk-type-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag-debug {
  background: rgba(20, 119, 255, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(20, 119, 255, 0.5);
}

.tag-release {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
}

.apk-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.apk-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding: 0.85rem 0;
  margin-bottom: 1.25rem;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.85rem;
}

.apk-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.apk-meta-title {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.apk-meta-value {
  color: var(--text-main);
  font-weight: 600;
}

.checksum-panel {
  background: rgba(1, 4, 8, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.95rem;
  margin-bottom: 1.5rem;
  font-family: monospace;
  font-size: 0.8rem;
}

.checksum-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.checksum-label {
  color: var(--text-dim);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checksum-hash {
  color: var(--cyan-crystal);
  word-break: break-all;
  font-size: 0.78rem;
  line-height: 1.4;
  user-select: all;
}

.apk-actions-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.apk-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.btn-download-debug {
  background: linear-gradient(135deg, #1477ff 0%, #0c4a9e 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-download-debug:hover {
  background: linear-gradient(135deg, #338bff 0%, #1477ff 100%);
  box-shadow: 0 0 25px var(--blue-glow);
  transform: translateY(-2px);
}

.btn-download-release {
  background: linear-gradient(135deg, #d4af37 0%, #94781d 100%);
  color: #020b18;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-download-release:hover {
  background: linear-gradient(135deg, #f3d77d 0%, #d4af37 100%);
  box-shadow: 0 0 25px var(--gold-glow);
  transform: translateY(-2px);
}

.apk-secondary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.qr-box-wrap {
  margin-top: 1rem;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  text-align: center;
  color: #020b18;
  display: none;
  animation: fadeIn 0.25s ease-out;
}

.qr-box-wrap.active {
  display: block;
}

.qr-box-wrap svg {
  display: block;
  margin: 0 auto;
  max-width: 170px;
  height: auto;
}

.qr-instructions {
  font-size: 0.78rem;
  color: #475569;
  margin-top: 0.5rem;
  font-weight: 500;
}

.admin-section-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

.section-panel-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--emerald-accent);
  color: #6ee7b7;
  font-weight: 700;
}

.status-badge-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald-accent);
  box-shadow: 0 0 8px var(--emerald-accent);
}

.inspector-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.85rem;
}

.inspector-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: rgba(1, 4, 8, 0.5);
  color: var(--text-dim);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border-glass);
}

.inspector-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-glass);
  color: var(--text-main);
}

.inspector-table tr:hover td {
  background: rgba(20, 119, 255, 0.04);
}

.code-pill {
  font-family: monospace;
  background: rgba(1, 4, 8, 0.7);
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius-xs);
  font-size: 0.8rem;
  color: var(--cyan-crystal);
}

.test-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(6, 20, 38, 0.5);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.checklist-item:hover {
  border-color: var(--border-glass-light);
  background: rgba(6, 20, 38, 0.8);
}

.checklist-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-primary);
  margin-top: 0.15rem;
  cursor: pointer;
}

.checklist-text {
  font-size: 0.85rem;
  color: var(--text-main);
  line-height: 1.4;
}

.checklist-text small {
  display: block;
  color: var(--text-dim);
  font-size: 0.75rem;
  margin-top: 0.2rem;
}

/* ==========================================================================
   DATABASE STATUS BADGES & VERSION 1.01 UPDATE STYLING
   ========================================================================== */
.db-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.db-status-badge.connected {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--emerald-accent);
  color: #6ee7b7;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}

.db-status-badge.connected::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald-accent);
  box-shadow: 0 0 8px var(--emerald-accent);
}

.db-status-badge.local {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
}

.db-status-badge.local::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-primary);
}

.db-config-panel {
  background: rgba(6, 20, 38, 0.7);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1.25rem;
  backdrop-filter: blur(12px);
}

.update-hero-banner {
  background: linear-gradient(135deg, rgba(20, 119, 255, 0.22) 0%, rgba(212, 175, 55, 0.25) 50%, rgba(0, 229, 255, 0.18) 100%);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.update-banner-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.update-pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan-crystal);
  box-shadow: 0 0 12px var(--cyan-crystal);
  animation: pulse 2s infinite;
}

.badge-version-new {
  background: linear-gradient(135deg, var(--gold-primary), #b89327);
  color: #020b18;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.version-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.84rem;
}

.version-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: rgba(1, 4, 8, 0.6);
  color: var(--text-dim);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border-glass);
}

.version-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-glass);
  color: var(--text-main);
}

.version-table tr:hover td {
  background: rgba(20, 119, 255, 0.05);
}

/* Change Log & Release Matrix Styles */
.changelog-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-card);
}

.changelog-version-card {
  background: rgba(6, 20, 38, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  transition: all var(--transition-fast);
}

.changelog-version-card.highlight {
  border-color: rgba(212, 175, 55, 0.55);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.09) 0%, rgba(6, 20, 38, 0.75) 100%);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(212, 175, 55, 0.3);
}

.changelog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.changelog-entry-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.changelog-date {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
}

.changelog-fix-box {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.changelog-fix-box-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #6ee7b7;
  margin-bottom: 0.5rem;
}

.changelog-list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.86rem;
  color: var(--text-main);
  line-height: 1.6;
}

.changelog-list li {
  margin-bottom: 0.4rem;
}

.changelog-list strong {
  color: #fff;
}

.changelog-tag {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-fix {
  background: rgba(16, 185, 129, 0.18);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.tag-feature {
  background: rgba(59, 130, 246, 0.18);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.35);
}


/* ==========================================================================
   FLAWLESS 365 DATABASE ADMIN CONSOLE & LUXURY GUI STYLES
   ========================================================================== */

/* --- Admin Tabs Navigation Strip --- */
.admin-nav-tabs-wrap {
  margin: 1.5rem 0 2rem 0;
  position: relative;
  border-bottom: 1px solid var(--border-glass);
}

.admin-nav-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  padding-bottom: 0.5rem;
}

.admin-nav-tabs::-webkit-scrollbar {
  display: none;
}

.admin-tab-btn {
  background: rgba(6, 20, 38, 0.5);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  color: var(--text-muted);
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
}

.admin-tab-btn:hover {
  background: rgba(20, 119, 255, 0.12);
  color: var(--text-main);
  border-color: rgba(0, 229, 255, 0.3);
}

.admin-tab-btn.active {
  background: linear-gradient(180deg, rgba(20, 119, 255, 0.25) 0%, rgba(6, 20, 38, 0.9) 100%);
  color: #fff;
  border-color: var(--gold-primary) var(--gold-primary) transparent var(--gold-primary);
  box-shadow: 0 -4px 16px rgba(212, 175, 55, 0.2);
}

.admin-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--cyan-crystal));
}

.admin-tab-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.admin-tab-btn.active .admin-tab-badge {
  background: var(--gold-primary);
  color: #020b18;
}

/* --- Tab Panels --- */
.admin-tab-panel {
  display: none;
  animation: adminFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.admin-tab-panel.active {
  display: block;
}

@keyframes adminFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Admin Toolbar (Search, Filter, Actions) --- */
.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  background: rgba(4, 14, 28, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  backdrop-filter: blur(12px);
}

.admin-search-box {
  position: relative;
  flex: 1;
  min-width: 240px;
  max-width: 420px;
}

.admin-search-input {
  width: 100%;
  background: rgba(2, 11, 24, 0.8);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem 0.65rem 2.4rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.admin-search-input:focus {
  border-color: var(--cyan-crystal);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.25);
}

.admin-search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  pointer-events: none;
  font-size: 0.9rem;
}

.admin-filter-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-select {
  background: rgba(2, 11, 24, 0.85);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-md);
  color: var(--text-main);
  padding: 0.62rem 2.2rem 0.62rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.86rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300e5ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  transition: border-color var(--transition-fast);
}

.admin-select:focus {
  border-color: var(--gold-primary);
}

/* --- Luxury Account Level Badges --- */
.lvl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lvl-badge-0 {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(249, 115, 22, 0.25) 100%);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
}

.lvl-badge-1 {
  background: linear-gradient(135deg, rgba(20, 119, 255, 0.3) 0%, rgba(0, 229, 255, 0.2) 100%);
  color: #93c5fd;
  border: 1px solid #3b82f6;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.25);
}

.lvl-badge-2 {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25) 0%, rgba(217, 70, 239, 0.2) 100%);
  color: #d8b4fe;
  border: 1px solid #a855f7;
}

.lvl-badge-3 {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.25) 0%, rgba(14, 165, 233, 0.2) 100%);
  color: var(--cyan-crystal);
  border: 1px solid rgba(0, 229, 255, 0.6);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.25);
}

.lvl-badge-4 {
  background: rgba(16, 185, 129, 0.15);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.lvl-badge-5 {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.6);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.3);
}

/* --- Status Badges --- */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
}

.status-pill.published {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-accent);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.status-pill.draft {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.status-pill.suspended {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

/* --- Luxury Data Table Enhancements --- */
.admin-data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.88rem;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(4, 14, 28, 0.5);
}

.admin-data-table th {
  background: rgba(2, 9, 18, 0.9);
  color: var(--text-dim);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.95rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--border-glass-light);
}

.admin-data-table td {
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid var(--border-glass);
  color: var(--text-main);
  vertical-align: middle;
  transition: background var(--transition-fast);
}

.admin-data-table tbody tr:hover td {
  background: rgba(20, 119, 255, 0.06);
}

.admin-data-table tbody tr:last-child td {
  border-bottom: none;
}

.admin-user-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-primary), var(--cyan-crystal));
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.admin-user-details {
  display: flex;
  flex-direction: column;
}

.admin-user-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.92rem;
}

.admin-user-email {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Action Button Group */
.admin-actions-cell {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.btn-action {
  padding: 0.28rem 0.65rem;
  font-size: 0.76rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--border-glass-light);
  background: rgba(6, 20, 38, 0.7);
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.btn-action:hover {
  background: rgba(20, 119, 255, 0.2);
  border-color: var(--cyan-crystal);
  color: #fff;
}

.btn-action-gold:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

.btn-action-danger:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #fca5a5;
}

/* --- Privileges Matrix Styling --- */
.privilege-matrix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.privilege-matrix-table th,
.privilege-matrix-table td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-glass);
  text-align: center;
}

.privilege-matrix-table th:first-child,
.privilege-matrix-table td:first-child {
  text-align: left;
}

.privilege-matrix-table th {
  background: rgba(2, 11, 24, 0.9);
  color: var(--text-dim);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.perm-granted {
  color: var(--emerald-accent);
  font-size: 1.15rem;
  font-weight: 900;
}

.perm-denied {
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
}

/* --- Admin Edit Modal --- */
.admin-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.admin-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.admin-modal-sheet {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass-light);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(20, 119, 255, 0.15);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-modal-backdrop.open .admin-modal-sheet {
  transform: scale(1);
}

.admin-modal-sheet::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-primary), var(--cyan-crystal), var(--blue-primary));
}

.admin-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.admin-modal-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
}

.admin-modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Empty State */
.admin-empty-state {
  text-align: center;
  padding: 3.5rem 1.5rem;
  color: var(--text-muted);
}

.admin-empty-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  opacity: 0.6;
}

.admin-empty-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

/* ==========================================================================
   INVENTORY & MONTHLY BUNDLES STYLING
   ========================================================================== */
.inventory-month-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: border-color var(--transition-fast);
}

.inventory-month-card:hover {
  border-color: var(--border-glass-light);
}

.inventory-month-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-primary), var(--cyan-crystal));
}

.inventory-month-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.inventory-month-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.inventory-month-badge {
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(20, 119, 255, 0.15);
  border: 1px solid rgba(20, 119, 255, 0.4);
  color: var(--cyan-crystal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.inventory-month-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
}

.inventory-month-theme {
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-top: 0.15rem;
}

/* Media Bundle Pills */
.bundle-media-pills {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.bundle-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
}

.bundle-pill-sound {
  background: rgba(20, 119, 255, 0.12);
  border-color: rgba(20, 119, 255, 0.3);
  color: #60a5fa;
}

.bundle-pill-video {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.35);
  color: #c084fc;
}

.bundle-pill-picture {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}

/* Package Tier Badges */
.tier-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
}

.tier-standard {
  background: rgba(148, 163, 184, 0.15);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #cbd5e1;
}

.tier-vip {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(168, 85, 247, 0.2));
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--gold-light);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.tier-deluxe {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(249, 115, 22, 0.25));
  border: 1px solid var(--gold-primary);
  color: #fff;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
}

.tier-collector {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.25), rgba(168, 85, 247, 0.25));
  border: 1px solid var(--cyan-crystal);
  color: #e0f2fe;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

/* Price & Token Display */
.price-display-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.price-usd {
  font-weight: 800;
  color: var(--gold-light);
  font-size: 0.95rem;
}

.price-tokens {
  font-size: 0.74rem;
  color: var(--text-dim);
  font-weight: 600;
}

/* Asset Checkbox Grid in Edit User Modal */
.asset-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
  max-height: 220px;
  overflow-y: auto;
  padding: 0.75rem;
  background: rgba(1, 4, 8, 0.5);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
}

.asset-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.asset-check-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 175, 55, 0.3);
}

.asset-check-item input[type="checkbox"] {
  margin-top: 0.2rem;
  cursor: pointer;
}

.asset-check-label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.8rem;
  color: var(--text-main);
  font-weight: 600;
}

.asset-check-sub {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-weight: 400;
}

/* Bundle Files Inspector Modal */
.bundle-inspector-section {
  margin-bottom: 1.5rem;
}

.bundle-inspector-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.bundle-files-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.bundle-file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
}

.bundle-file-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
}

.bundle-file-meta {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 0.1rem;
}

/* ==========================================================================
   MEDIA ASSET DIRECT UPLOAD & DROPZONES (Asset Inventory & Package Bundles)
   ========================================================================== */
.upload-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1.25rem;
  background: rgba(14, 28, 54, 0.35);
  border: 2px dashed rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-bottom: 1.25rem;
  user-select: none;
}

.upload-dropzone:hover {
  background: rgba(14, 28, 54, 0.6);
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
  transform: translateY(-1px);
}

.upload-dropzone.drag-over {
  background: rgba(20, 119, 255, 0.12);
  border-color: #60a5fa;
  box-shadow: 0 0 25px rgba(96, 165, 250, 0.3);
  transform: scale(1.01);
}

.upload-dropzone-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.upload-dropzone-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.upload-dropzone-sub {
  font-size: 0.74rem;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.4;
}

.upload-progress-wrap {
  background: rgba(1, 4, 8, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  animation: fadeIn 0.2s ease-out;
}

.upload-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.upload-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), #60a5fa, var(--emerald-accent));
  transition: width 0.2s ease;
  border-radius: var(--radius-full);
}

.cover-preview-box {
  transition: all var(--transition-fast);
}

.cover-preview-box:hover {
  border-color: var(--gold-primary) !important;
}

.uploaded-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-accent);
  border: 1px solid rgba(16, 185, 129, 0.3);
}







