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

:root {
  --bg:       #0d1a14;
  --bg2:      #111f18;
  --bg3:      #0a1510;
  --surface:  #1c2e22;
  --surface2: #223628;
  --accent:   #4ade80;
  --accent2:  #86efac;
  --accent3:  #22c55e;
  --gold:     #fbbf24;
  --muted:    #6b8f75;
  --text:     #e2f0e7;
  --text2:    #a8c5b0;
  --border:   rgba(74,222,128,0.15);
  --river:    #142218;
  --radius:   20px;
  --nav-h:    64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── Utility ──────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 5rem 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.section-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: .5rem;
  letter-spacing: -.5px;
}

.section-sub {
  color: var(--text2);
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* ─── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 2rem;
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #0a1a0e;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ─── Navigation ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(13,26,20,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.nav-logo {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.5px;
}
.nav-logo span { color: var(--text2); font-weight: 400; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text2);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .2s;
  border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cart {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .45rem 1.1rem;
  border-radius: 999px;
  font-family: 'Nunito', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.nav-cart:hover { border-color: var(--accent); color: var(--accent); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ─── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 4rem) 2rem 8rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(34,197,94,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 15% 75%, rgba(74,222,128,.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 85% 55%, rgba(16,185,129,.05) 0%, transparent 55%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .35rem 1.1rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent2);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  animation: fadeUp .6s ease both;
}

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

.hero-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(3.2rem, 10vw, 7rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -2px;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
  animation: fadeUp .7s .1s ease both;
}
.hero-title .line1 { color: var(--text);   display: block; }
.hero-title .line2 { color: var(--accent); display: block; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text2);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  animation: fadeUp .7s .2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  animation: fadeUp .7s .3s ease both;
}

.social-pills {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: fadeUp .7s .4s ease both;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .35rem .9rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--text2);
  transition: all .2s;
}
.social-pill:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

/* River waves */
.river-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  pointer-events: none;
}
.wave {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 100%;
  animation: waveMove 8s ease-in-out infinite;
}
.wave:nth-child(2) { animation-delay: -3s; opacity: .5; }
.wave:nth-child(3) { animation-delay: -5s; opacity: .3; }
.wave svg { width: 100%; height: 100%; }

@keyframes waveMove {
  0%, 100% { transform: translateX(-25%) scaleY(1); }
  50%       { transform: translateX(0)   scaleY(1.08); }
}

/* ─── Merch ─────────────────────────────────────────────────────────────── */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.merch-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s;
  cursor: pointer;
  display: block;
  position: relative;
}
.merch-card:hover {
  transform: translateY(-5px);
  border-color: rgba(74,222,128,.4);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

.merch-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--bg3);
}

.merch-info {
  padding: .9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.merch-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
}

.merch-price {
  font-size: .82rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(74,222,128,.1);
  border-radius: 999px;
  padding: .2rem .65rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.merch-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: #1a0a00;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .2rem .65rem;
}

.merch-center { text-align: center; margin-top: 2.5rem; }

/* ─── Community strip ───────────────────────────────────────────────────── */
.community-strip {
  background: var(--river);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
  text-align: center;
}

.community-inner { max-width: 680px; margin: 0 auto; }

.community-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: .75rem;
  letter-spacing: -.5px;
}

.community-sub {
  color: var(--text2);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.community-buttons { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ─── Content feed ───────────────────────────────────────────────────────── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.platform-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

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

.platform-name {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.platform-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 900;
}
.tiktok-icon  { background: rgba(255,0,80,.15);  color: #ff5170; }
.youtube-icon { background: rgba(255,60,60,.15);  color: #ff4444; }

.platform-visit {
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent);
  transition: color .2s;
}
.platform-visit:hover { color: var(--accent2); }

.video-list { display: flex; flex-direction: column; gap: .75rem; }

.video-item {
  display: flex;
  gap: .75rem;
  align-items: center;
  padding: .6rem;
  border-radius: 12px;
  transition: background .2s;
}
.video-item:hover { background: var(--surface2); }

.video-thumb {
  width: 72px; height: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg3);
}

.video-title {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── About page ─────────────────────────────────────────────────────────── */
.about-hero {
  padding: calc(var(--nav-h) + 5rem) 2rem 5rem;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
}

.stat-value {
  font-family: 'Baloo 2', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-size: .78rem;
  color: var(--text2);
  font-weight: 600;
  letter-spacing: .04em;
}

/* ─── Page heroes (inner pages) ─────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4rem;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-brand { max-width: 280px; }
.footer-logo {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: .5rem;
}
.footer-tagline { color: var(--text2); font-size: .85rem; line-height: 1.6; }

.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }

.footer-col h4 {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .75rem;
}
.footer-col a {
  display: block;
  color: var(--text2);
  font-size: .85rem;
  margin-bottom: .4rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy { color: var(--muted); font-size: .8rem; }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { color: var(--muted); font-size: .8rem; transition: color .2s; }
.footer-legal a:hover { color: var(--accent); }

/* ─── 404 ────────────────────────────────────────────────────────────────── */
.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.not-found-code {
  font-family: 'Baloo 2', sans-serif;
  font-size: 8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  opacity: .25;
  margin-bottom: .5rem;
}
.not-found h2 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 2rem;
  margin-bottom: .75rem;
}
.not-found p { color: var(--text2); margin-bottom: 2rem; }

/* ─── Animations ─────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .about-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    z-index: 99;
  }
  .nav-hamburger { display: flex; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 2rem; }
  .stat-cards { grid-template-columns: 1fr; }
}
