/* ===========================================================
   Lucky Fruit Sweets — promo website styles
   Theme extracted from interactive_mockup/src/styles/theme.css
   =========================================================== */

:root {
  /* Brand */
  --brand-purple-deep: #2A0B3F;
  --brand-purple: #4A1361;
  --brand-magenta: #7B1F8E;
  --brand-magenta-bright: #B23AB8;
  --brand-gold: #F5C24A;
  --brand-gold-deep: #C8901F;
  --brand-gold-light: #FFE08A;
  --brand-cherry: #E5294A;
  --brand-juice-pink: #FF6FA8;

  /* Surfaces */
  --surface-app: linear-gradient(180deg, #2A0B3F 0%, #4A1361 50%, #7B1F8E 100%);
  --surface-card: rgba(59, 20, 83, 0.92);
  --surface-card-elev: #4E1B6E;

  /* Text */
  --text-primary: #FFF6E6;
  --text-secondary: #D9C2E7;
  --text-tertiary: #9276A4;
  --text-on-accent: #2A0B3F;

  /* Rarity */
  --rarity-common: #9E7BB5;
  --rarity-rare: #4FB6F0;
  --rarity-legendary: #F5C24A;

  /* Gradients */
  --grad-app-bg: linear-gradient(180deg, #2A0B3F 0%, #4A1361 50%, #7B1F8E 100%);
  --grad-gold: linear-gradient(135deg, #FFE08A 0%, #F5C24A 50%, #C8901F 100%);
  --grad-gold-button: linear-gradient(180deg, #F5C24A 0%, #E0A82E 100%);
  --grad-cherry: linear-gradient(180deg, #FF4D6D 0%, #C71B3C 100%);

  /* Effects */
  --glow-legendary: 0 0 24px rgba(245, 194, 74, 0.45), 0 0 8px rgba(255, 224, 138, 0.6);
  --glow-cherry: 0 0 24px rgba(229, 41, 74, 0.45);
  --shadow-card: 0 6px 18px rgba(0, 0, 0, 0.30);
  --shadow-elev: 0 14px 36px rgba(0, 0, 0, 0.45);
  --shadow-cta: 0 8px 22px rgba(200, 144, 31, 0.35);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* Fonts */
  --font-display: 'Fredoka', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-data: 'Lilita One', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--brand-purple-deep);
  background-image:
    radial-gradient(ellipse at 12% 8%, rgba(178, 58, 184, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 88% 0%, rgba(245, 194, 74, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(123, 31, 142, 0.45) 0%, transparent 55%),
    var(--grad-app-bg);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ============= Typography ============= */

.font-display { font-family: var(--font-display); }
.font-data    { font-family: var(--font-data); letter-spacing: 0.5px; }

.headline-mega {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.headline-mega .accent-italic {
  font-family: var(--font-data);
  font-style: normal;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(245, 194, 74, 0.35);
  letter-spacing: 0.5px;
}

.headline-mega .accent-cherry {
  background: linear-gradient(135deg, #FF6FA8 0%, #E5294A 60%, #C71B3C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.headline-outline {
  font-family: var(--font-data);
  -webkit-text-stroke: 1.5px var(--brand-gold);
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-gold));
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}

.section-title .gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ============= Navigation ============= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(42, 11, 63, 0.85) 0%, rgba(42, 11, 63, 0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s ease;
}

.nav.scrolled {
  background: rgba(42, 11, 63, 0.92);
  border-bottom: 1px solid rgba(245, 194, 74, 0.14);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.nav-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

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

.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  transition: color 0.15s;
  position: relative;
}

.nav-links a:hover { color: var(--brand-gold); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

/* ============= Buttons ============= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, filter 0.12s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  user-select: none;
}

.btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: var(--grad-gold-button);
  color: var(--text-on-accent);
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(245, 194, 74, 0.45); }

.btn-secondary {
  background: transparent;
  color: var(--brand-gold);
  border: 1.5px solid var(--brand-gold);
}
.btn-secondary:hover {
  background: rgba(245, 194, 74, 0.10);
}

.btn-cherry {
  background: var(--grad-cherry);
  color: #fff;
  box-shadow: 0 8px 22px rgba(229, 41, 74, 0.32);
}

.btn-md { height: 44px; padding: 0 20px; font-size: 0.9rem; }
.btn-lg { height: 58px; padding: 0 34px; font-size: 1.05rem; }

/* ============= Hero ============= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 24px 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero_bg.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: -2;
  /* Fallback */
  background-color: var(--brand-purple);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(42, 11, 63, 0.30) 0%, rgba(42, 11, 63, 0.65) 60%, rgba(42, 11, 63, 0.92) 100%),
    linear-gradient(180deg, rgba(42, 11, 63, 0.45) 0%, transparent 35%, rgba(42, 11, 63, 0.95) 100%);
  z-index: -1;
}

.hero-inner {
  max-width: 880px;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: rgba(245, 194, 74, 0.16);
  border: 1px solid rgba(245, 194, 74, 0.4);
  color: var(--brand-gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.hero-badge .badge-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--brand-gold);
  box-shadow: 0 0 10px var(--brand-gold);
  animation: pulse 1.6s infinite ease-in-out;
}

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

.hero-headline {
  margin: 0 0 1.25rem;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 2rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 2.5rem;
  color: var(--text-tertiary);
  font-size: 0.85rem;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-meta-item strong {
  color: var(--brand-gold);
  font-family: var(--font-data);
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

/* ============= Reel strip (decorative below hero) ============= */

.reel-strip {
  display: flex;
  gap: 18px;
  padding: 28px 16px;
  overflow: hidden;
  border-top: 1px solid rgba(245, 194, 74, 0.18);
  border-bottom: 1px solid rgba(245, 194, 74, 0.18);
  background: linear-gradient(90deg, rgba(42, 11, 63, 0.6), rgba(123, 31, 142, 0.4), rgba(42, 11, 63, 0.6));
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.reel-strip-track {
  display: flex;
  gap: 18px;
  animation: scroll-x 28s linear infinite;
  flex-shrink: 0;
}

.reel-symbol {
  flex-shrink: 0;
  width: 84px; height: 84px;
  border-radius: 14px;
  background: var(--surface-card);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.reel-symbol img {
  width: 72px; height: 72px;
  object-fit: contain;
  display: block;
}

@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============= Sections ============= */

.section {
  padding: 96px 24px;
  position: relative;
}

.section-narrow {
  max-width: 1180px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

/* ============= Tab features (hash → #5 Tab-based) ============= */

.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2.5rem;
  padding: 8px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.feature-tab {
  flex: 1 1 auto;
  min-width: 0;
  padding: 11px 18px;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.feature-tab.active {
  background: var(--grad-gold-button);
  color: var(--text-on-accent);
  box-shadow: var(--shadow-cta);
}

.feature-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  background: var(--surface-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-elev);
}

@media (min-width: 768px) {
  .feature-panel {
    grid-template-columns: 220px 1fr;
    padding: 48px;
    gap: 48px;
  }
}

.feature-panel-art {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-panel-art::before {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 194, 74, 0.30), transparent 70%);
  z-index: 0;
}

.feature-panel-art img {
  width: 200px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5));
}

.feature-panel-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}

.feature-panel-body p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.feature-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.45;
}

.feature-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--brand-gold);
  margin-top: 9px;
  box-shadow: 0 0 8px rgba(245, 194, 74, 0.6);
}

/* ============= Screenshot carousel (hash → #4 Interactive Slider) ============= */

.screens-section {
  padding: 96px 24px;
}

.screens-stage {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.swiper-screens {
  padding: 20px 0 60px;
  overflow: visible;
}

.swiper-screens .swiper-slide {
  width: 280px;
  display: flex;
  justify-content: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.4;
  transform: scale(0.85);
}

.swiper-screens .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.device-frame {
  width: 280px;
  aspect-ratio: 420 / 912;
  border-radius: 36px;
  background: #0c0418;
  padding: 8px;
  position: relative;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(245, 194, 74, 0.12),
    0 0 0 4px rgba(0, 0, 0, 0.6);
}

.device-frame::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #0c0418;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.device-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.swiper-screens .swiper-pagination-bullet {
  background: var(--text-tertiary);
  opacity: 0.5;
}

.swiper-screens .swiper-pagination-bullet-active {
  background: var(--brand-gold);
  opacity: 1;
  width: 22px;
  border-radius: 4px;
}

.screens-caption {
  text-align: center;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1.02rem;
  min-height: 1.5em;
  transition: opacity 0.2s;
}

.screens-caption-sub {
  color: var(--text-tertiary);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* ============= Recipe rarity strip ============= */

.rarity-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 2rem;
}

@media (min-width: 720px) {
  .rarity-strip { grid-template-columns: repeat(3, 1fr); }
}

.rarity-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--surface-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.rarity-card-label {
  font-family: var(--font-data);
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.rarity-card.common .rarity-card-label { color: var(--rarity-common); }
.rarity-card.rare   .rarity-card-label { color: var(--rarity-rare); }
.rarity-card.legendary .rarity-card-label {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rarity-card-count {
  font-family: var(--font-data);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.rarity-card-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.45;
}

.rarity-card.legendary {
  border-color: rgba(245, 194, 74, 0.35);
  box-shadow: var(--glow-legendary), var(--shadow-card);
}
.rarity-card.rare {
  border-color: rgba(79, 182, 240, 0.30);
}

/* ============= CTA section ============= */

.cta {
  position: relative;
  padding: 120px 24px;
  margin: 0 24px 80px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/cta_bg.webp');
  background-size: cover;
  background-position: center;
  z-index: -2;
  background-color: var(--brand-purple);
}

.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(42, 11, 63, 0.20) 0%, rgba(42, 11, 63, 0.85) 80%),
    linear-gradient(180deg, rgba(42, 11, 63, 0.4) 0%, rgba(42, 11, 63, 0.92) 100%);
  z-index: -1;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.cta-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.55;
}

/* ============= Trust bar ============= */

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  padding: 28px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-tertiary);
  font-size: 0.92rem;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-bar-item svg {
  width: 18px; height: 18px;
  color: var(--brand-gold);
}

/* ============= Footer ============= */

.footer {
  background: rgba(0, 0, 0, 0.3);
  padding: 64px 24px 32px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand .nav-icon { width: 44px; height: 44px; }

.footer-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--brand-gold);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--brand-gold); }

.footer-bottom {
  max-width: 1180px;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: var(--text-tertiary);
  font-size: 0.85rem;
}

/* ============= Legal pages (privacy / terms) ============= */

.legal-page {
  padding: 130px 24px 80px;
}

.legal-shell {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  box-shadow: var(--shadow-elev);
}

@media (min-width: 720px) {
  .legal-shell { padding: 56px 60px; }
}

.legal-shell h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 0.5rem;
}

.legal-shell .last-updated {
  color: var(--text-tertiary);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-shell h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--brand-gold);
  margin: 2.4rem 0 0.8rem;
}

.legal-shell h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--text-primary);
  margin: 1.8rem 0 0.6rem;
}

.legal-shell p,
.legal-shell li {
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.98rem;
  text-align: left;
}

.legal-shell ul, .legal-shell ol {
  padding-left: 1.4rem;
  margin: 0.5rem 0 1rem;
}

.legal-shell li { margin-bottom: 0.4rem; }

.legal-shell a {
  color: var(--brand-gold);
  text-decoration: underline;
  text-decoration-color: rgba(245, 194, 74, 0.4);
}

.legal-shell strong { color: var(--text-primary); }

.legal-shell .data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0 1.25rem;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
}

.legal-shell .data-table th,
.legal-shell .data-table td {
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-shell .data-table th {
  background: rgba(245, 194, 74, 0.08);
  color: var(--brand-gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.legal-shell .data-table tr:last-child td { border-bottom: 0; }

.legal-shell .data-table a { word-break: break-word; }

/* ============= Contact form ============= */

.contact-shell {
  max-width: 620px;
  margin: 0 auto;
  background: var(--surface-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  box-shadow: var(--shadow-elev);
}

@media (min-width: 720px) {
  .contact-shell { padding: 52px 48px; }
}

.contact-shell h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 0.5rem;
  text-align: center;
}

.contact-shell p.intro {
  color: var(--text-secondary);
  text-align: center;
  margin: 0 0 2rem;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 6px;
  text-align: left;
}

.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.98rem;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--brand-gold);
  background: rgba(245, 194, 74, 0.05);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-tertiary);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field-file label.file-drop {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border: 1.5px dashed rgba(245, 194, 74, 0.35);
  border-radius: 12px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  font-size: 0.92rem;
}

.field-file label.file-drop:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
}

.field-file input { display: none; }
.field-file .file-name {
  font-size: 0.85rem;
  color: var(--brand-gold);
  margin-top: 6px;
}

.contact-form button.btn { width: 100%; }

.success-msg {
  background: rgba(63, 203, 124, 0.12);
  border: 1px solid rgba(63, 203, 124, 0.4);
  color: #74e0a4;
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.success-msg.show { display: block; }

/* ============= Privacy acceptance button (Flutter integration) ============= */

.privacy-accept-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px 24px;
  background: linear-gradient(180deg, rgba(42, 11, 63, 0) 0%, rgba(42, 11, 63, 0.95) 30%, rgba(42, 11, 63, 1) 100%);
  z-index: 9999;
}

.privacy-accept-btn.hidden { display: none; }

.accept-btn {
  width: 100%;
  max-width: 420px;
  height: 54px;
  border: none;
  border-radius: 14px;
  background: var(--grad-gold-button);
  color: var(--text-on-accent);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.accept-btn:hover { filter: brightness(1.05); }
.accept-btn:active { transform: scale(0.98); }

/* ============= Misc utilities ============= */

.divider-fade {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 194, 74, 0.35), transparent);
  border: none;
  margin: 0;
}

[data-aos] { will-change: transform, opacity; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reel-strip-track { animation: none; }
}
