/* ═══════════════════════════════════════════════
   REPEATBITE — PREMIUM DARK SaaS STYLESHEET
   ═══════════════════════════════════════════════ */

:root {
  --bg-dark: #080b14;
  --bg-dark-2: #0d1120;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.08);
  --border-glass: rgba(255,255,255,0.1);
  --border-glass-hover: rgba(255,255,255,0.2);

  --gold: #f5c842;
  --gold-light: #ffe87a;
  --gold-dim: rgba(245,200,66,0.15);

  --orange: #ff7b2c;
  --orange-glow: rgba(255,123,44,0.3);

  --purple: #8b5cf6;
  --purple-glow: rgba(139,92,246,0.3);

  --green: #22c55e;
  --green-glow: rgba(34,197,94,0.3);

  --whatsapp: #25D366;

  --text-primary: #f0f4ff;
  --text-secondary: rgba(240,244,255,0.6);
  --text-muted: rgba(240,244,255,0.35);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-body: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;

  --shadow-glow-gold: 0 0 40px rgba(245,200,66,0.25), 0 0 80px rgba(245,200,66,0.1);
  --shadow-glow-purple: 0 0 40px rgba(139,92,246,0.25);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-card-hover: 0 16px 48px rgba(0,0,0,0.6);
}

/* ─── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

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

::selection { background: var(--gold-dim); color: var(--gold); }

/* ─── SCROLLBAR ─────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(245,200,66,0.3); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── GLASS CARD ────────────────────────────────── */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
}

/* ─── PAGE SYSTEM ───────────────────────────────── */
.page {
  position: fixed;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1),
              transform 0.55s cubic-bezier(0.4,0,0.2,1);
  z-index: 1;
}

.page.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  z-index: 2;
}

.page.exit {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  z-index: 1;
}

/* ─── CONFETTI ──────────────────────────────────── */
.confetti-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

/* ─── LOADING SCREEN ────────────────────────────── */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loading-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-icon { font-size: 2.5rem; animation: pulse 1.5s ease infinite; }

.logo-text {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loading-bar-wrap {
  width: 220px;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  border-radius: var(--radius-full);
  transition: width 0.1s ease;
  box-shadow: 0 0 12px var(--gold);
}

.loading-tagline {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 400;
}

/* ─── BACKGROUND BLOBS ──────────────────────────── */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation: blobFloat1 10s ease-in-out infinite;
}

.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,200,66,0.1) 0%, transparent 70%);
  bottom: -150px; right: -150px;
  animation: blobFloat2 12s ease-in-out infinite;
}

.blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,123,44,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: blobFloat3 15s ease-in-out infinite;
}

@keyframes blobFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(60px,40px) scale(1.1); }
}
@keyframes blobFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-40px,-60px) scale(1.15); }
}
@keyframes blobFloat3 {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-48%,-52%) scale(1.2); }
}

/* ─── FLOATING ORBS ─────────────────────────────── */
.floating-orbs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }

.orb {
  position: absolute;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  opacity: 0.18;
  animation: orbFloat linear infinite;
  user-select: none;
}

.orb-1 { left: 5%; top: 15%; animation-duration: 8s; animation-delay: 0s; }
.orb-2 { left: 88%; top: 22%; animation-duration: 11s; animation-delay: -3s; }
.orb-3 { left: 12%; top: 70%; animation-duration: 9s; animation-delay: -1.5s; }
.orb-4 { left: 78%; top: 60%; animation-duration: 13s; animation-delay: -5s; }
.orb-5 { left: 45%; top: 8%; animation-duration: 10s; animation-delay: -2s; }
.orb-6 { left: 60%; top: 82%; animation-duration: 7s; animation-delay: -4s; }
.orb-7 { left: 25%; top: 45%; animation-duration: 12s; animation-delay: -6s; }
.orb-8 { left: 92%; top: 78%; animation-duration: 8.5s; animation-delay: -1s; }

@keyframes orbFloat {
  0%,100% { transform: translateY(0) rotate(0deg); opacity: 0.18; }
  25% { transform: translateY(-25px) rotate(10deg); opacity: 0.25; }
  75% { transform: translateY(25px) rotate(-10deg); opacity: 0.12; }
}

/* ─── TOAST ─────────────────────────────────────── */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99998;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  width: calc(100vw - 48px);
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(13,17,32,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.toast.success { border-left: 3px solid var(--green); }
.toast.error { border-left: 3px solid #ef4444; }
.toast.warning { border-left: 3px solid var(--gold); }
.toast.info { border-left: 3px solid var(--purple); }
.toast.out { animation: toastOut 0.3s ease forwards; }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(100px) scale(0.9); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes toastOut {
  to { opacity: 0; transform: translateX(100px) scale(0.9); }
}

/* ═══════════════════════════════════════════════
   PAGE 1 — LANDING
   ═══════════════════════════════════════════════ */
.landing-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* NAV */
.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  position: sticky;
  top: 16px;
  z-index: 100;
}

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

.nav-logo-icon { font-size: 1.5rem; }

.nav-logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.3px;
}

.nav-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(245,200,66,0.3);
}

/* RESTAURANT LOGO PLACEHOLDER */
.restaurant-logo-wrap { display: flex; justify-content: center; }

.restaurant-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
  transition: var(--transition);
}

.restaurant-logo:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.restaurant-logo-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245,200,66,0.4);
}

.restaurant-name {
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
}

.restaurant-tag {
  font-size: 0.72rem;
  color: var(--text-secondary);
  display: block;
}

.verified-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--green-glow);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.3);
}

/* HERO SECTION */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-content { display: flex; flex-direction: column; gap: 24px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  width: fit-content;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-heading {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.heading-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 50%, #ff4d6d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.heading-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--text-secondary);
  font-size: 85%;
}

.hero-subheading {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
}

/* STATS */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-card {
  padding: 16px 12px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.stat-card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-card-hover);
}

.stat-icon { font-size: 1.4rem; margin-bottom: 6px; display: block; }

.stat-number {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA BUTTON */
.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  overflow: hidden;
  background: transparent;
  transition: var(--transition);
}

.cta-btn-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--gold), var(--orange), #ff4d6d);
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  transition: var(--transition);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.cta-glow {
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  filter: blur(16px);
  opacity: 0.5;
  z-index: 1;
  transition: var(--transition);
}

.cta-btn:hover .cta-glow { opacity: 0.8; filter: blur(24px); }
.cta-btn:hover .cta-btn-inner { transform: scale(1.03); }
.cta-btn:hover .cta-arrow { transform: translateX(4px); }
.cta-btn:active .cta-btn-inner { transform: scale(0.97); }

.cta-icon { font-size: 1.2rem; animation: bounce 2s ease infinite; }
.cta-arrow { transition: transform 0.2s ease; display: inline-block; }

@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.cta-subtext {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* HERO IMAGE */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ringPulse 3s ease infinite;
}

.ring-1 { width: 340px; height: 340px; border-color: rgba(245,200,66,0.15); animation-delay: 0s; }
.ring-2 { width: 400px; height: 400px; border-color: rgba(245,200,66,0.08); animation-delay: 0.6s; }
.ring-3 { width: 460px; height: 460px; border-color: rgba(245,200,66,0.04); animation-delay: 1.2s; }

@keyframes ringPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.6; }
}

.hero-image-frame {
  width: 300px; height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(245,200,66,0.3);
  position: relative;
  box-shadow: var(--shadow-glow-gold);
  transition: var(--transition-slow);
}

.hero-image-frame:hover {
  transform: scale(1.03) rotate(2deg);
  box-shadow: 0 0 60px rgba(245,200,66,0.35), 0 0 120px rgba(245,200,66,0.15);
}

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

.hero-image-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.img-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.floating-food-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  animation: floatCard 4s ease infinite;
}

.fc-1 { top: -20px; right: -30px; animation-delay: 0s; }
.fc-2 { bottom: 10px; left: -30px; animation-delay: -2s; }

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* FEATURES STRIP */
.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-3px);
  background: var(--bg-card-hover);
  border-color: rgba(245,200,66,0.2);
}

.feature-icon { font-size: 1.4rem; flex-shrink: 0; }

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-text strong { font-size: 0.82rem; font-weight: 700; }
.feature-text span { font-size: 0.72rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════
   PAGE 2 — CODE FORM
   ═══════════════════════════════════════════════ */
.page-container {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
  padding: 24px 20px 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  cursor: pointer;
  transition: var(--transition-fast);
  width: fit-content;
  font-family: var(--font-body);
}

.back-btn:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  border-color: var(--border-glass-hover);
}

.form-card { padding: 36px 32px; border-radius: var(--radius-xl); }

.form-header { text-align: center; margin-bottom: 28px; }

.form-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dim), rgba(255,123,44,0.15));
  border: 2px solid rgba(245,200,66,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-glow-gold);
  animation: iconGlow 2s ease infinite;
}

@keyframes iconGlow {
  0%,100% { box-shadow: 0 0 20px rgba(245,200,66,0.2); }
  50% { box-shadow: 0 0 40px rgba(245,200,66,0.4); }
}

.form-icon { font-size: 2rem; }

.form-title {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.form-subtitle { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* LOCATION CARD */
.location-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border-color: rgba(139,92,246,0.3);
  background: rgba(139,92,246,0.06);
  margin-bottom: 20px;
}

.location-left { display: flex; align-items: center; gap: 12px; }
.location-icon { font-size: 1.3rem; }
.location-text { display: flex; flex-direction: column; gap: 2px; }
.location-text strong { font-size: 0.85rem; font-weight: 700; }
.location-text span { font-size: 0.74rem; color: var(--text-secondary); }

.location-btn {
  padding: 7px 16px;
  background: linear-gradient(135deg, var(--purple), #6366f1);
  border: none;
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-body);
}

.location-btn:hover { transform: scale(1.05); box-shadow: 0 0 16px var(--purple-glow); }

.location-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border-color: rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.06);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 20px;
}

/* FORM GROUPS */
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }

.form-label { font-size: 0.82rem; font-weight: 700; color: var(--text-secondary); letter-spacing: 0.5px; text-transform: uppercase; }

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

.input-icon {
  position: absolute;
  left: 14px;
  font-size: 1rem;
  pointer-events: none;
  z-index: 1;
}

.form-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 500;
  outline: none;
  transition: var(--transition-fast);
}

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

.form-input:focus {
  border-color: rgba(245,200,66,0.5);
  background: rgba(245,200,66,0.04);
  box-shadow: 0 0 0 3px rgba(245,200,66,0.1);
}

.form-input.error { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }
.form-input.success { border-color: var(--green); box-shadow: 0 0 0 3px rgba(34,197,94,0.1); }

.code-input { text-transform: uppercase; font-weight: 700; letter-spacing: 2px; }

.form-hint { font-size: 0.73rem; color: var(--text-muted); }

.code-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.code-chip {
  padding: 5px 12px;
  background: var(--gold-dim);
  border: 1px solid rgba(245,200,66,0.25);
  border-radius: var(--radius-full);
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--gold);
  cursor: pointer;
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.code-chip:hover {
  background: rgba(245,200,66,0.25);
  transform: scale(1.05);
  box-shadow: 0 0 12px var(--gold-dim);
}

.form-error {
  padding: 12px 16px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: #fc8080;
  font-weight: 500;
}

/* SUBMIT BUTTON */
.submit-btn {
  position: relative;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border: none;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
  font-family: var(--font-body);
  letter-spacing: 0.3px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  margin-top: 8px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--orange-glow), 0 0 40px rgba(245,200,66,0.3);
}

.submit-btn:active { transform: translateY(0); }

.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-shimmer {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer 2.5s ease infinite;
}

@keyframes shimmer {
  to { left: 150%; }
}

.form-footer {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════
   PAGE 3 — SPIN WHEEL
   ═══════════════════════════════════════════════ */
.spin-header {
  text-align: center;
  margin-bottom: 32px;
}

.spin-greeting {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.spin-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.spin-subtitle { color: var(--text-secondary); font-size: 0.95rem; }

/* WHEEL */
.wheel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  width: fit-content;
}

.wheel-glow-ring {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,200,66,0.12) 0%, transparent 70%);
  animation: wheelGlow 2s ease infinite;
  pointer-events: none;
}

@keyframes wheelGlow {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.6; }
}

.wheel-outer {
  position: relative;
  width: 340px; height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.8rem;
  color: var(--gold);
  z-index: 10;
  text-shadow: var(--shadow-glow-gold);
  filter: drop-shadow(0 0 8px var(--gold));
}

#spinCanvas {
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(245,200,66,0.2), 0 0 80px rgba(245,200,66,0.08);
  border: 3px solid rgba(245,200,66,0.3);
}

.wheel-center-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-dark-2));
  border: 3px solid rgba(245,200,66,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(245,200,66,0.3), inset 0 0 20px rgba(245,200,66,0.05);
}

.wheel-center-btn:hover:not(.disabled) {
  transform: translate(-50%,-50%) scale(1.1);
  box-shadow: 0 0 40px rgba(245,200,66,0.5), inset 0 0 30px rgba(245,200,66,0.1);
  border-color: var(--gold);
}

.wheel-center-btn.disabled { cursor: not-allowed; opacity: 0.5; }

.wheel-center-inner { text-align: center; }
.spin-btn-icon { font-size: 1.3rem; display: block; }
.spin-btn-text { font-size: 0.6rem; font-weight: 800; letter-spacing: 1.5px; color: var(--gold); display: block; }

.spin-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 24px;
}

/* SUSPENSE OVERLAY */
.suspense-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,11,20,0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.suspense-card {
  padding: 48px 40px;
  text-align: center;
  border-radius: var(--radius-xl);
  max-width: 340px;
  width: 90%;
  border-color: rgba(245,200,66,0.2);
}

.suspense-spinner {
  width: 56px; height: 56px;
  border: 3px solid rgba(245,200,66,0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  margin: 0 auto 24px;
  animation: spin 1s linear infinite;
}

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

.suspense-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.suspense-sub { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 20px; }

.suspense-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.suspense-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotPulse 1.4s ease infinite;
}

.suspense-dots span:nth-child(2) { animation-delay: 0.2s; }
.suspense-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

/* ═══════════════════════════════════════════════
   PAGE 4 — SCRATCH CARD
   ═══════════════════════════════════════════════ */
.scratch-header { text-align: center; margin-bottom: 32px; }

.scratch-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gold);
  border-color: rgba(245,200,66,0.3);
  background: var(--gold-dim);
}

.scratch-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.scratch-subtitle { color: var(--text-secondary); font-size: 0.92rem; }

/* SCRATCH CARD */
.scratch-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.scratch-card-outer {
  position: relative;
  width: 320px;
  height: 220px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: crosshair;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--shadow-glow-gold);
  border-color: rgba(245,200,66,0.3);
  flex-shrink: 0;
}

.scratch-reward-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0f2e, #0d1120);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scratch-reward-content { text-align: center; }

.scratch-reward-emoji { font-size: 3rem; margin-bottom: 8px; display: block; animation: rewardEmoji 1s ease infinite; }

@keyframes rewardEmoji {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.15) rotate(5deg); }
}

.scratch-reward-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.scratch-reward-text {
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.3px;
}

.scratch-reward-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.scratch-canvas {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  touch-action: none;
}

.scratch-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
}

.hint-finger { font-size: 1.2rem; animation: fingerWave 1.5s ease infinite; }

@keyframes fingerWave {
  0%,100% { transform: rotate(0deg) translateX(0); }
  50% { transform: rotate(-15deg) translateX(4px); }
}

.reveal-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--purple), #6366f1);
  border: none;
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.reveal-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-purple);
}

.scratch-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════
   PAGE 5 — CLAIM
   ═══════════════════════════════════════════════ */
.claim-celebration { text-align: center; margin-bottom: 28px; }

.celebration-emoji {
  font-size: 4rem;
  display: block;
  margin-bottom: 12px;
  animation: celebrateFloat 2s ease infinite;
}

@keyframes celebrateFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.1); }
}

.claim-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.claim-winner {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* REWARD CARD */
.reward-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border-color: rgba(245,200,66,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--shadow-glow-gold);
  margin-bottom: 24px;
  position: relative;
}

.reward-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-glass);
  background: rgba(255,255,255,0.02);
}

.reward-restaurant-logo img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245,200,66,0.3);
}

.reward-restaurant-name { font-weight: 800; font-size: 0.92rem; }
.reward-restaurant-sub { font-size: 0.72rem; color: var(--text-muted); }

.reward-card-status {
  margin-left: auto;
  padding: 4px 12px;
  background: var(--green-glow);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--green);
}

.reward-card-body {
  padding: 28px 24px;
  text-align: center;
}

.reward-card-emoji { font-size: 3.5rem; display: block; margin-bottom: 10px; }

.reward-card-title {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.reward-card-code {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
}

.reward-card-code span:first-child { color: var(--text-muted); }
.reward-code-val { font-weight: 800; letter-spacing: 1.5px; color: var(--gold); }

.reward-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border-glass);
  background: rgba(255,255,255,0.02);
}

.expiry-section { display: flex; align-items: center; gap: 8px; }
.expiry-label { font-size: 0.78rem; color: var(--text-secondary); }
.expiry-timer {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.reward-qr-mini { width: 50px; height: 50px; }

.reward-card-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  animation: cardShine 4s ease infinite;
  pointer-events: none;
}

@keyframes cardShine {
  0% { left: -100%; }
  50%,100% { left: 150%; }
}

/* CLAIM ACTIONS */
.claim-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
  text-align: left;
  width: 100%;
}

.action-btn:hover {
  transform: translateY(-2px);
  background: var(--bg-card-hover);
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-card-hover);
}

.whatsapp-btn:hover { border-color: rgba(37,211,102,0.4); box-shadow: 0 8px 32px rgba(37,211,102,0.15); }
.qr-btn:hover { border-color: rgba(139,92,246,0.4); box-shadow: 0 8px 32px rgba(139,92,246,0.15); }
.reset-btn:hover { border-color: rgba(245,200,66,0.3); }

.action-icon { font-size: 1.8rem; flex-shrink: 0; }

.action-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.action-text strong { font-size: 0.95rem; font-weight: 700; }
.action-text span { font-size: 0.78rem; color: var(--text-muted); }

.action-arrow { font-size: 1.1rem; color: var(--text-muted); transition: transform 0.2s ease; }
.action-btn:hover .action-arrow { transform: translateX(4px); color: var(--text-primary); }

/* UPSELL CARD */
.upsell-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border-color: rgba(139,92,246,0.25);
  background: rgba(139,92,246,0.06);
}

.upsell-icon { font-size: 2rem; flex-shrink: 0; }

.upsell-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.upsell-content strong { font-size: 0.9rem; font-weight: 700; }
.upsell-content span { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.5; }

.upsell-btn {
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--purple), #6366f1);
  border: none;
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-body);
  white-space: nowrap;
}

.upsell-btn:hover { transform: scale(1.05); box-shadow: var(--shadow-glow-purple); }

/* ═══════════════════════════════════════════════
   QR MODAL
   ═══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,11,20,0.85);
  backdrop-filter: blur(16px);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.hidden { display: none; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-card {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  max-width: 360px;
  width: 100%;
  text-align: center;
  border-color: rgba(245,200,66,0.2);
  animation: modalIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  font-family: var(--font-body);
}

.modal-close:hover { background: rgba(255,255,255,0.15); color: var(--text-primary); }

.modal-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.modal-subtitle { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 24px; }

.qr-display {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  padding: 16px;
  background: #fff;
  border-radius: var(--radius-lg);
  width: fit-content;
}

.qr-reward-name {
  font-size: 1.1rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.qr-validity { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 20px; }

.qr-actions { display: flex; justify-content: center; gap: 12px; }

.qr-action-btn {
  padding: 11px 24px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border: none;
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.qr-action-btn:hover { transform: scale(1.05); }

/* ═══════════════════════════════════════════════
   JACKPOT EASTER EGG
   ═══════════════════════════════════════════════ */
.jackpot-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,11,20,0.9);
  backdrop-filter: blur(20px);
  z-index: 9995;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.jackpot-overlay.hidden { display: none; }

.jackpot-card {
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  text-align: center;
  max-width: 360px;
  width: 100%;
  border-color: rgba(245,200,66,0.4);
  box-shadow: var(--shadow-glow-gold);
  animation: jackpotIn 0.6s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes jackpotIn {
  from { transform: scale(0); rotate: -10deg; opacity: 0; }
  to { transform: scale(1); rotate: 0deg; opacity: 1; }
}

.jackpot-emojis {
  font-size: 3rem;
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  animation: jackpotSpin 1s ease infinite;
}

@keyframes jackpotSpin {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.jackpot-title {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--orange), #ff4d6d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.jackpot-sub { color: var(--text-secondary); font-size: 1rem; margin-bottom: 28px; }

.jackpot-close {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border: none;
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}

.jackpot-close:hover { transform: scale(1.05); box-shadow: var(--shadow-glow-gold); }

/* ─── UTILITIES ─────────────────────────────────── */
.hidden { display: none !important; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content { align-items: center; }
  .hero-desc { max-width: 100%; }
  .hero-badge { align-self: center; }

  .hero-image-wrap { margin: 0 auto; }
  .hero-image-frame { width: 240px; height: 240px; }
  .ring-1 { width: 270px; height: 270px; }
  .ring-2 { width: 310px; height: 310px; }
  .ring-3 { width: 350px; height: 350px; }

  .features-strip { grid-template-columns: repeat(2, 1fr); }

  .stats-row { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .landing-container { padding: 16px 16px 48px; gap: 28px; }
  .page-container { padding: 16px 16px 48px; }

  .landing-nav { padding: 12px 16px; }
  .nav-logo-text { font-size: 1.05rem; }

  .stats-row { gap: 8px; }
  .stat-number { font-size: 1.3rem; }
  .stat-label { font-size: 0.62rem; }
  .stat-card { padding: 12px 8px; }

  .cta-btn-inner { padding: 14px 24px; font-size: 0.95rem; }

  .features-strip { grid-template-columns: 1fr 1fr; gap: 8px; }
  .feature-item { padding: 12px; }
  .feature-text strong { font-size: 0.76rem; }

  .form-card { padding: 24px 20px; }
  .form-title { font-size: 1.4rem; }

  .wheel-outer { width: 290px; height: 290px; }
  #spinCanvas { width: 290px !important; height: 290px !important; }
  .wheel-glow-ring { width: 320px; height: 320px; }

  .scratch-card-outer { width: 290px; height: 200px; }

  .upsell-card { flex-direction: column; text-align: center; align-items: flex-start; }
  .upsell-btn { align-self: stretch; }

  .reward-card-footer { flex-direction: column; gap: 12px; align-items: flex-start; }
  .modal-card { padding: 28px 20px; }
  .jackpot-card { padding: 32px 24px; }
}

@media (max-width: 380px) {
  .stats-row { grid-template-columns: 1fr; }
  .code-hints { flex-wrap: wrap; }
}
