/* =========================================================
   Alight Motion Premium Creator — CSS Stylesheet
   Modern Dark Theme • Glassmorphism • Smooth Micro-Animations
   ========================================================= */

:root {
  --bg-main: #070a12;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-card-hover: rgba(30, 41, 59, 0.85);
  --bg-card-subtle: rgba(255, 255, 255, 0.03);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(99, 102, 241, 0.5);

  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --primary-500: #6366f1;
  --primary-600: #4f46e5;
  --primary-glow: rgba(99, 102, 241, 0.35);

  --cyan-400: #38bdf8;
  --cyan-500: #0ea5e9;
  --cyan-glow: rgba(14, 165, 233, 0.35);

  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.3);

  --gold-400: #fbbf24;
  --gold-500: #f59e0b;
  --gold-glow: rgba(245, 158, 11, 0.35);

  --rose-500: #f43f5e;
  --rose-glow: rgba(244, 63, 94, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --radius-full: 9999px;

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --nav-height: 72px;
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-main);
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Glow Blobs */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.bg-glow-1 {
  top: -10%;
  left: 20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(99, 102, 241, 0) 70%);
}

.bg-glow-2 {
  top: 40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, rgba(14, 165, 233, 0) 70%);
}

.bg-glow-3 {
  bottom: 5%;
  left: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0) 70%);
}

/* App Shell Structure */
.app-container {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: calc(var(--nav-height) + 28px);
}

/* Top Header Bar */
.app-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(7, 10, 18, 0.85);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 20px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--primary-glow);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.gradient-text {
  background: linear-gradient(135deg, #818cf8, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #fcd34d, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-server {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #34d399;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10b981;
}

.status-dot.pulsing {
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Main Content & Section Transitions */
.main-content {
  flex: 1;
  padding: 20px;
}

.page-section {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.page-section.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section Styles */
.hero-card {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.7) 100%);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6366f1, #38bdf8, transparent);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #a5b4fc;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 14px;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 22px;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Common Card & Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

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

.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 18px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift {
  cursor: pointer;
}

.hover-lift:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.card-mode-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.badge-free {
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.badge-vip {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.limit-indicator {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.limit-indicator.gold {
  color: #fcd34d;
}

.card-mode-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.card-mode-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.card-mode-action {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan-400);
}

.card-mode-action.gold {
  color: var(--gold-400);
}

/* Feature Boxes */
.section-title-wrap {
  margin-bottom: 12px;
}

.section-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.section-subheading {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.feature-box {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-box:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.feature-icon-cyan {
  background: rgba(14, 165, 233, 0.15);
  color: #38bdf8;
}

.feature-icon-purple {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
}

.feature-icon-emerald {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.feature-icon-rose {
  background: rgba(244, 63, 94, 0.15);
  color: #fb7185;
}

.feature-icon-amber {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.feature-icon-blue {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Steps Flow */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

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

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  position: relative;
}

.step-number {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-mono);
  background: linear-gradient(135deg, #818cf8, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
}

.faq-toggle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cyan-400);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 16px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 16px 16px 16px;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =========================================================
   CREATE AM SECTION STYLES
   ========================================================= */

.tab-switcher {
  display: flex;
  background: rgba(15, 23, 42, 0.9);
  padding: 5px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
  gap: 6px;
}

.tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tab-btn.active {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  box-shadow: 0 4px 12px var(--primary-glow);
}

#tabBtnVip.active {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  box-shadow: 0 4px 12px var(--gold-glow);
}

.create-tab-content {
  display: none;
}

.create-tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

/* Daily Quota Card */
.quota-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.85) 100%);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-bottom: 16px;
}

.quota-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.quota-info {
  display: flex;
  flex-direction: column;
}

.quota-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a5b4fc;
}

.quota-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 2px 0;
}

.quota-subtext {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.quota-circle-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 90px;
}

.quota-bar-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 4px;
}

.quota-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #38bdf8);
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

.quota-percent {
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--cyan-400);
}

/* Channel Requirement Banner */
.channel-banner {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.channel-banner-icon {
  color: #34d399;
  flex-shrink: 0;
}

.channel-banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
}

.channel-banner-text strong {
  color: #f0fdf4;
  font-size: 0.85rem;
}

.channel-banner-text span {
  color: #a7f3d0;
}

/* Unified Session Stepper */
.session-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 12px 18px;
}

.session-step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.55;
  transition: all 0.3s ease;
}

.session-step-item.active {
  opacity: 1;
}

.session-step-item.completed {
  opacity: 1;
}

.session-step-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.session-step-item .step-check {
  display: none;
}

.session-step-item.active .session-step-icon {
  background: linear-gradient(135deg, #6366f1, #38bdf8);
  border-color: #818cf8;
  color: #fff;
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.5);
}

.session-step-item.completed .session-step-icon {
  background: linear-gradient(135deg, #10b981, #059669);
  border-color: #34d399;
  color: #fff;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.session-step-item.completed .step-num {
  display: none;
}

.session-step-item.completed .step-check {
  display: inline-block;
  font-size: 0.85rem;
}

.session-step-info {
  display: flex;
  flex-direction: column;
}

.session-step-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

.session-step-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.session-step-item.completed .session-step-title {
  color: #34d399;
}

.session-step-divider {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 16px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.session-step-divider.completed {
  background: linear-gradient(90deg, #10b981, #38bdf8);
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

/* Active Session Card */
.session-active-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  margin-bottom: 16px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(14, 165, 233, 0.12);
  animation: slideDown 0.3s ease;
}

.session-active-info {
  flex: 1;
  min-width: 0;
}

.session-active-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.session-active-email {
  font-family: var(--font-mono);
  font-size: 0.96rem;
  font-weight: 700;
  color: #fff;
  word-break: break-all;
}

.session-active-subtext {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 3px;
  line-height: 1.35;
}

.session-active-actions {
  flex-shrink: 0;
}

.btn-cancel-session {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius-md);
  color: #fca5a5;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cancel-session:hover {
  background: rgba(239, 68, 68, 0.22);
  border-color: rgba(239, 68, 68, 0.4);
  color: #fff;
  transform: translateY(-1px);
}

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

.badge-cyan-glow {
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  letter-spacing: 0.02em;
}

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

.wizard-content {
  display: none;
}

.wizard-content.active {
  display: block;
  animation: fadeIn 0.25s ease;
}

/* Form Styles */
.form-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.form-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.form-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-icon-cyan {
  background: rgba(14, 165, 233, 0.15);
  color: #38bdf8;
}

.form-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.form-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  color: var(--text-dim);
  pointer-events: none;
  transition: color 0.2s ease;
}

.form-input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  background: rgba(10, 15, 29, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: all 0.2s ease;
}

.form-textarea {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  padding-top: 12px;
  resize: vertical;
  min-height: 85px;
}

.form-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
  background: rgba(15, 23, 42, 0.95);
}

.form-input:focus + .input-icon,
.input-wrap:focus-within .input-icon {
  color: var(--cyan-400);
}

.form-hint {
  display: block;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 5px;
}

.input-extra-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}

.btn-paste {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--cyan-400);
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-paste:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.4);
}

/* Info Cards */
.info-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #93c5fd;
  margin-bottom: 8px;
}

.info-list {
  padding-left: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.info-list li {
  margin-bottom: 4px;
}

.info-list strong {
  color: #e2e8f0;
}

/* Result Alert Box */
.result-box {
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  animation: slideDown 0.3s ease;
}

.result-box.hidden {
  display: none;
}

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

.result-box.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #a7f3d0;
}

.result-box.error {
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.35);
  color: #fecdd3;
}

.result-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.result-box.success .result-box-header {
  color: #34d399;
}

.result-box.error .result-box-header {
  color: #fb7185;
}

.result-box-body {
  font-size: 0.84rem;
  line-height: 1.5;
  color: #cbd5e1;
}

.result-meta-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
}

.result-meta-item:last-child {
  border-bottom: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #fff;
}

.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  transform: translateY(-1px);
}

.btn-cyan {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: #fff;
}

.btn-cyan:hover:not(:disabled) {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-1px);
}

.btn-wa {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
}

.btn-glow {
  box-shadow: 0 4px 18px var(--primary-glow);
}

.btn-cyan.btn-glow {
  box-shadow: 0 4px 18px var(--cyan-glow);
}

.btn-gold.btn-glow {
  box-shadow: 0 4px 18px var(--gold-glow);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Spinner */
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}

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

/* VIP Showcase Card */
.vip-showcase-card {
  background: linear-gradient(180deg, rgba(30, 27, 46, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: 0 12px 36px rgba(245, 158, 11, 0.12);
  position: relative;
  overflow: hidden;
}

.vip-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24);
}

.vip-badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fcd34d;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.vip-title {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 10px;
}

.vip-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 22px;
}

.vip-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

@media (max-width: 520px) {
  .vip-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.vip-benefit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  gap: 12px;
}

.vip-benefit-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.vip-benefit-body h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fef08a;
  margin-bottom: 3px;
}

.vip-benefit-body p {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.vip-cta-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}

.vip-cta-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.vip-cta-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
  margin-bottom: 16px;
}

/* =========================================================
   SUPPORT CONTACT SECTION STYLES
   ========================================================= */

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

@media (max-width: 540px) {
  .contact-card {
    flex-direction: column;
    align-items: stretch;
  }
}

.contact-card:hover {
  transform: translateY(-2px);
}

.contact-card-wa:hover {
  border-color: rgba(16, 185, 129, 0.4);
}

.contact-card-ig:hover {
  border-color: rgba(236, 72, 153, 0.4);
}

.contact-card-gmail:hover {
  border-color: rgba(59, 130, 246, 0.4);
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.contact-icon-wa {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.contact-icon-ig {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.3);
}

.contact-icon-gmail {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-platform {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.contact-handle {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.contact-status-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: #a7f3d0;
  margin-top: 2px;
}

.contact-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-contact {
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease;
}

.btn-contact:hover {
  transform: translateY(-1px);
}

.btn-contact-copy {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease;
}

.btn-contact-copy:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-ig {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.btn-gmail {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

/* Channels Box */
.channels-box {
  background: rgba(15, 23, 42, 0.7);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}

.channels-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.channels-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 6px auto 0;
  line-height: 1.5;
}

.channels-btn-group {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-outline-channel {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  text-decoration: none;
}

.btn-outline-channel:hover {
  background: rgba(16, 185, 129, 0.25);
}

/* =========================================================
   BOTTOM NAVIGATION BAR (PRD REQUIREMENT)
   ========================================================= */

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  pointer-events: none;
  display: flex;
  justify-content: center;
}

.bottom-nav-inner {
  pointer-events: auto;
  max-width: 480px;
  width: 100%;
  height: 62px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 4px 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-label {
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 2px;
  transition: color 0.2s ease;
}

.nav-item.active {
  color: #fff;
  background: rgba(99, 102, 241, 0.18);
}

.nav-item.active .nav-icon {
  transform: translateY(-2px);
  color: var(--cyan-400);
}

.nav-item.active .nav-label {
  color: #fff;
}

.nav-badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 18px);
  background: #ef4444;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  font-family: var(--font-mono);
  padding: 1px 5px;
  border-radius: var(--radius-full);
  border: 2px solid #0f172a;
}

/* =========================================================
   MODAL: CHANNEL GATE (ADS-LINK STYLE 5S TIMER)
   ========================================================= */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity 0.3s ease;
}

.modal-backdrop.hidden {
  display: none;
  opacity: 0;
  pointer-events: none;
}

.modal-container {
  position: relative;
  max-width: 460px;
  width: 100%;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  animation: modalScale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalScale {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-content {
  padding: 28px 24px;
  text-align: center;
}

.modal-header-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 18px;
}

.modal-steps-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.step-badge {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timer-wrapper {
  margin-top: 16px;
}

.timer-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan-400);
  margin-bottom: 6px;
}

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

.timer-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #38bdf8);
  transition: width 0.1s linear;
}

.modal-actions-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-footer-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.modal-footer-note a {
  color: var(--gold-400);
  font-weight: 700;
  text-decoration: none;
}

.modal-footer-note a:hover {
  text-decoration: underline;
}

/* =========================================================
   TOAST NOTIFICATIONS
   ========================================================= */

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 110;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: #1e293b;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  animation: toastIn 0.3s ease;
  transition: all 0.3s ease;
}

.toast.toast-success {
  border-color: rgba(16, 185, 129, 0.5);
  background: #064e3b;
}

.toast.toast-error {
  border-color: rgba(244, 63, 94, 0.5);
  background: #881337;
}

.toast.toast-info {
  border-color: rgba(99, 102, 241, 0.5);
  background: #1e1b4b;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Utilities */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 14px; }
.mt-4 { margin-top: 20px; }
.mt-5 { margin-top: 28px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 14px; }
.mb-4 { margin-bottom: 20px; }
.mb-5 { margin-bottom: 32px; }

/* =========================================================
   DONATION & QRIS SECTION
   ========================================================= */

.donation-box {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.75), rgba(15, 23, 42, 0.85));
  border: 1px solid rgba(236, 72, 153, 0.28);
  border-radius: var(--radius-xl);
  padding: 26px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  text-align: center;
}

.donation-box::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 120px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.22), transparent 70%);
  pointer-events: none;
}

.donation-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.donation-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(236, 72, 153, 0.15);
  border: 1px solid rgba(236, 72, 153, 0.35);
  color: #f472b6;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.donation-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.donation-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 500px;
  margin: 0 auto;
}

.donation-qris-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 12px;
  display: inline-block;
  max-width: 250px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55), 0 0 24px rgba(236, 72, 153, 0.25);
  margin: 16px auto 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.donation-qris-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 32px rgba(236, 72, 153, 0.4);
}

.donation-qris-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

.donation-badges-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.donation-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.donation-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

