/* =====================================================================
   Night Bass Hunter — Nocturnal-Neon Promo Site
   Midnight blue + lantern gold + moonlight silver + bioluminescent teal
   ===================================================================== */

:root {
  --midnight: #0E1726;
  --bog-black: #1B2129;
  --twilight-slate: #2C3340;
  --slate-rise: #363E4C;
  --moonlight-silver: #C4CDD6;
  --bone-white: #E8E4D8;
  --lantern-gold: #D9A23E;
  --lantern-gold-deep: #B07F2A;
  --teal-bio: #4FCFB8;
  --aurora-violet: #7E5BBE;
  --ember-red: #E26A6A;
  --marsh-green: #6FBF95;
  --text-secondary: #A8B0BC;
  --text-tertiary: #7A8290;

  --font-display: 'Spectral', 'Georgia', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bog-black);
  color: var(--bone-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* ====== Typography ====== */
.font-display { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
.italic-flourish { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--moonlight-silver); }
.gold-text { color: var(--lantern-gold); }
.bone-text { color: var(--bone-white); }
.silver-text { color: var(--moonlight-silver); }

.gradient-headline {
  background: linear-gradient(135deg, #D9A23E 0%, #7E5BBE 60%, #4FCFB8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.outline-headline {
  -webkit-text-stroke: 1.5px var(--lantern-gold);
  color: transparent;
  text-shadow: 0 0 24px rgba(217, 162, 62, 0.4);
}

/* ====== Page scaffold ====== */
.page-bg {
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(126, 91, 190, 0.12), transparent 60%),
    radial-gradient(900px 600px at 80% 10%, rgba(79, 207, 184, 0.08), transparent 70%),
    linear-gradient(180deg, var(--midnight) 0%, var(--bog-black) 100%);
  min-height: 100vh;
}

.bioluminescent-specks {
  position: relative;
}
.bioluminescent-specks::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 12% 20%, rgba(79, 207, 184, 0.7), transparent),
    radial-gradient(2px 2px at 78% 35%, rgba(217, 162, 62, 0.6), transparent),
    radial-gradient(1px 1px at 30% 70%, rgba(126, 91, 190, 0.6), transparent),
    radial-gradient(2px 2px at 60% 85%, rgba(79, 207, 184, 0.5), transparent),
    radial-gradient(1px 1px at 88% 60%, rgba(232, 228, 216, 0.5), transparent);
  background-size: 100% 100%;
  pointer-events: none;
  opacity: 0.7;
  animation: speckle 8s ease-in-out infinite alternate;
}
@keyframes speckle {
  from { opacity: 0.5; }
  to { opacity: 0.9; }
}

/* ====== Top navigation ====== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 23, 38, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196, 205, 214, 0.12);
}
.topbar .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--bone-white);
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(217, 162, 62, 0.4);
  background: var(--midnight);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px; font-weight: 500;
}
.nav-links a {
  color: var(--moonlight-silver);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--lantern-gold); }
.nav-toggle {
  display: none;
  background: transparent; border: 0; color: var(--bone-white);
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--twilight-slate);
    padding: 20px;
    border-bottom: 1px solid rgba(196, 205, 214, 0.12);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ====== Layout containers ====== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 96px 0;
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
}

/* ====== Hero ====== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  background:
    linear-gradient(180deg, rgba(14, 23, 38, 0.4) 0%, rgba(27, 33, 41, 0.85) 75%, var(--bog-black) 100%),
    url('images/hero_bg.webp') center / cover no-repeat;
}
.hero::after {
  /* Moon glow upper-right */
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 205, 214, 0.5) 0%, rgba(196, 205, 214, 0.1) 40%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(217, 162, 62, 0.5);
  border-radius: 999px;
  background: rgba(217, 162, 62, 0.08);
  color: var(--lantern-gold);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow .lantern-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lantern-gold);
  box-shadow: 0 0 12px rgba(217, 162, 62, 0.9);
  animation: flicker 2.4s ease-in-out infinite;
}
@keyframes flicker {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px rgba(217, 162, 62, 0.9); }
  45% { opacity: 0.78; box-shadow: 0 0 8px rgba(217, 162, 62, 0.6); }
  55% { opacity: 0.95; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 7.5vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.hero-title .row { display: block; }
.hero-title .moonlit {
  color: var(--moonlight-silver);
  font-weight: 600;
  font-style: italic;
  font-size: 0.78em;
  letter-spacing: 0;
}
.hero-title .lantern {
  background: linear-gradient(135deg, #D9A23E 0%, #FFD27A 50%, #B07F2A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(217, 162, 62, 0.4);
}
.hero-title .big-bass {
  -webkit-text-stroke: 1.8px var(--lantern-gold);
  color: transparent;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--moonlight-silver);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: left;
}
.hero-sub strong {
  color: var(--bone-white);
  font-weight: 600;
}

.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 36px;
}

.compliance-stripe {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: rgba(79, 207, 184, 0.08);
  border: 1px solid rgba(79, 207, 184, 0.3);
  border-radius: 999px;
  font-size: 13px; color: var(--teal-bio);
  font-weight: 500;
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  min-height: 52px;
}
.btn-primary {
  background: linear-gradient(180deg, #E8B448 0%, #D9A23E 50%, #B07F2A 100%);
  color: var(--bog-black);
  box-shadow: 0 0 0 0 rgba(217, 162, 62, 0.5), 0 6px 18px rgba(0, 0, 0, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(217, 162, 62, 0.5), 0 10px 24px rgba(0, 0, 0, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--bone-white);
  border: 1.5px solid var(--moonlight-silver);
}
.btn-ghost:hover {
  border-color: var(--lantern-gold);
  color: var(--lantern-gold);
}
.btn-block { width: 100%; }

/* ====== Section utility ====== */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-align: center;
  margin: 0 0 16px;
}
.section-sub {
  text-align: center;
  color: var(--moonlight-silver);
  max-width: 640px;
  margin: 0 auto 56px;
  font-size: 17px;
}

.divider-moonline {
  display: block;
  width: 80px;
  height: 1px;
  margin: 16px auto 24px;
  background: linear-gradient(90deg, transparent, var(--lantern-gold) 50%, transparent);
}

/* ====== Compliance / no-betting banner ====== */
.no-betting-banner {
  display: flex; gap: 24px; align-items: center;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(126, 91, 190, 0.12), rgba(79, 207, 184, 0.08));
  border: 1.5px solid rgba(79, 207, 184, 0.35);
  border-radius: 20px;
  max-width: 900px; margin: 0 auto;
}
.no-betting-banner .icon-wrap {
  flex: 0 0 64px; height: 64px;
  border-radius: 50%;
  background: var(--bog-black);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-bio);
  border: 1.5px solid rgba(79, 207, 184, 0.5);
}
.no-betting-banner .body { flex: 1; min-width: 0; }
.no-betting-banner .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-bio);
  font-weight: 700;
  margin-bottom: 6px;
}
.no-betting-banner h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--bone-white);
}
.no-betting-banner p {
  margin: 0; color: var(--moonlight-silver); font-size: 15px; line-height: 1.55;
}
@media (max-width: 600px) {
  .no-betting-banner { flex-direction: column; text-align: center; padding: 24px; }
}

/* ====== Feature cards ====== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature-card {
  background: linear-gradient(180deg, rgba(54, 62, 76, 0.6) 0%, rgba(44, 51, 64, 0.95) 100%);
  border: 1px solid rgba(196, 205, 214, 0.12);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 162, 62, 0.4);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 24px rgba(217, 162, 62, 0.12);
}
.feature-card .feature-art {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  margin-bottom: 18px;
  background: var(--bog-black) center / contain no-repeat;
  border: 1px solid rgba(196, 205, 214, 0.08);
  background-blend-mode: normal;
  position: relative;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--bone-white);
}
.feature-card p {
  margin: 0;
  color: var(--moonlight-silver);
  font-size: 14px;
  line-height: 1.6;
}
.feature-card .tier-badge {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--font-body); font-weight: 600;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(217, 162, 62, 0.12);
  border: 1px solid rgba(217, 162, 62, 0.4);
  color: var(--lantern-gold);
}

/* ====== App preview / screenshots ====== */
.preview-section {
  position: relative;
  background:
    linear-gradient(180deg, var(--bog-black) 0%, var(--midnight) 100%);
}
.swiper-container {
  padding: 8px 0 48px;
}
.device-frame {
  width: 250px;
  margin: 0 auto;
  background: var(--midnight);
  padding: 14px 10px;
  border-radius: 36px;
  border: 1.5px solid rgba(196, 205, 214, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 32px rgba(217, 162, 62, 0.08);
  position: relative;
}
.device-frame::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 6px;
  background: var(--bog-black);
  border-radius: 999px;
  z-index: 2;
}
.device-frame img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
  max-height: 380px;
  object-fit: cover;
}
.swiper-pagination-bullet {
  background: var(--moonlight-silver);
  opacity: 0.4;
}
.swiper-pagination-bullet-active {
  background: var(--lantern-gold);
  opacity: 1;
  box-shadow: 0 0 10px rgba(217, 162, 62, 0.6);
}

/* ====== Trophy 5 / catalog row ====== */
.trophy-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 720px) {
  .trophy-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 380px) {
  .trophy-row { grid-template-columns: 1fr; }
}
.trophy-item {
  padding: 18px 12px;
  background: rgba(44, 51, 64, 0.6);
  border: 1px solid rgba(126, 91, 190, 0.3);
  border-radius: 14px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.trophy-item:hover {
  border-color: var(--lantern-gold);
  transform: translateY(-2px);
}
.trophy-item .star {
  font-size: 12px; color: var(--lantern-gold); margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.trophy-item .name {
  font-family: var(--font-display); font-weight: 600;
  font-size: 14px; color: var(--bone-white); line-height: 1.25;
}
.trophy-item .region {
  font-size: 10px; color: var(--moonlight-silver);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-top: 6px;
}

/* ====== Rank ladder ====== */
.rank-ladder {
  display: flex; justify-content: space-between; gap: 8px;
  background: var(--twilight-slate);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(196, 205, 214, 0.1);
  margin-top: 40px;
  overflow-x: auto;
}
.rank-pill {
  flex: 1;
  min-width: 110px;
  padding: 12px 10px;
  border-radius: 999px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(196, 205, 214, 0.25);
  color: var(--moonlight-silver);
  white-space: nowrap;
}
.rank-pill.active {
  background: linear-gradient(135deg, #D9A23E, #B07F2A);
  color: var(--bog-black);
  border-color: transparent;
  box-shadow: 0 0 16px rgba(217, 162, 62, 0.5);
}

/* ====== CTA section ====== */
.cta-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(14, 23, 38, 0.85), rgba(27, 33, 41, 0.9)),
    url('images/cta_bg.webp') center / cover no-repeat;
}
.cta-inner {
  text-align: center;
  max-width: 720px; margin: 0 auto;
  position: relative; z-index: 2;
}

/* ====== Legal pages ====== */
.legal-shell {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 20px 96px;
}
.legal-shell h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--bone-white);
}
.legal-shell .updated {
  color: var(--text-tertiary);
  font-size: 13px;
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}
.legal-shell h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 40px 0 12px;
  color: var(--lantern-gold);
}
.legal-shell h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin: 28px 0 10px;
  color: var(--bone-white);
}
.legal-shell p, .legal-shell li {
  color: var(--moonlight-silver);
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
}
.legal-shell a {
  color: var(--lantern-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-shell a:hover { color: var(--teal-bio); }
.legal-shell ul, .legal-shell ol {
  padding-left: 22px;
  margin: 12px 0;
}
.legal-shell li { margin-bottom: 6px; }

/* ====== Contact form ====== */
.contact-form {
  background: var(--twilight-slate);
  border: 1px solid rgba(196, 205, 214, 0.14);
  border-radius: 18px;
  padding: 32px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--bone-white);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.form-row input[type=text],
.form-row input[type=email],
.form-row input[type=file],
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bog-black);
  border: 1.5px solid rgba(196, 205, 214, 0.25);
  border-radius: 12px;
  color: var(--bone-white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-row input:focus, .form-row textarea:focus {
  border-color: var(--lantern-gold);
  box-shadow: 0 0 0 3px rgba(217, 162, 62, 0.18);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-help {
  color: var(--text-tertiary);
  font-size: 12px;
  margin-top: 6px;
}

/* ====== Footer ====== */
.site-footer {
  background: var(--midnight);
  border-top: 1px solid rgba(196, 205, 214, 0.1);
  padding: 48px 0 32px;
  margin-top: 64px;
}
.site-footer .footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 20px;
  display: flex; flex-wrap: wrap; gap: 32px;
  justify-content: space-between;
}
.site-footer .footer-brand {
  flex: 1 1 240px;
}
.site-footer .footer-brand p {
  color: var(--moonlight-silver); font-size: 13px; line-height: 1.6;
  margin: 8px 0 0;
}
.site-footer .footer-links {
  display: flex; gap: 32px; flex-wrap: wrap;
}
.site-footer .footer-links a {
  color: var(--moonlight-silver);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.site-footer .footer-links a:hover { color: var(--lantern-gold); }
.site-footer .footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 24px 20px 0;
  border-top: 1px solid rgba(196, 205, 214, 0.1);
  font-size: 12px;
  color: var(--text-tertiary);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ====== Privacy acceptance button (Flutter bridge) ====== */
.privacy-accept-btn {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 20px 24px;
  background: linear-gradient(180deg, rgba(27, 33, 41, 0) 0%, rgba(27, 33, 41, 0.92) 35%, var(--bog-black) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.privacy-accept-btn.hidden { display: none; }
.privacy-accept-btn .accept-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 54px;
  padding: 14px 36px;
  background: linear-gradient(180deg, #E8B448, #D9A23E 50%, #B07F2A);
  color: var(--bog-black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(217, 162, 62, 0.5), 0 8px 24px rgba(0, 0, 0, 0.55);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  width: 100%;
  max-width: 480px;
}
.privacy-accept-btn .accept-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(217, 162, 62, 0.65), 0 10px 28px rgba(0, 0, 0, 0.6);
}

/* ====== Misc / utility ====== */
.center { text-align: center; }
.subtle-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 205, 214, 0.25), transparent);
  margin: 48px 0;
}
.pill-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pill-tag.teal { background: rgba(79, 207, 184, 0.12); color: var(--teal-bio); border: 1px solid rgba(79, 207, 184, 0.4); }
.pill-tag.violet { background: rgba(126, 91, 190, 0.12); color: var(--aurora-violet); border: 1px solid rgba(126, 91, 190, 0.4); }
.pill-tag.gold { background: rgba(217, 162, 62, 0.12); color: var(--lantern-gold); border: 1px solid rgba(217, 162, 62, 0.4); }
