/* ===========================
   JOYBOYCAT — style.css v2
   =========================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:        #08050f;
  --bg2:       #0e0a1a;
  --card:      #130f22;
  --border:    #2a1f45;
  --gold:      #f7df1e;
  --gold2:     #ffc107;
  --cyan:      #00ffc8;
  --teal:      #00c8c8;
  --red:       #ff4757;
  --purple:    #7c3aed;
  --tg-blue:   #229ed9;
  --text:      #eeeaf8;
  --muted:     #7a6fa0;
  --font-head: 'Pirata One', cursive;
  --font-body: 'Nunito', sans-serif;
  --radius:    14px;
  --nav-h:     68px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

#particles {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ===========================
   NAVBAR — clean, minimal
   =========================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(8,5,15,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(42,31,69,0.6);
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(8,5,15,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1140px; margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; align-items: center;
  gap: 16px;
}

.nav-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon { font-size: 26px; }
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(247,223,30,0.4);
  box-shadow: 0 0 10px rgba(247,223,30,0.25);
  flex-shrink: 0;
}
.logo-img-overlay {
  width: 44px;
  height: 44px;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 22px; color: var(--text); letter-spacing: 1px;
}
.logo-accent { color: var(--gold); }

.nav-cta {
  margin-left: auto;
  display: inline-flex; align-items: center;
  padding: 9px 22px;
  background: var(--gold); color: #000;
  border-radius: 100px;
  font-weight: 900; font-size: 14px;
  text-decoration: none; white-space: nowrap;
  transition: all 0.2s; flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold2); transform: scale(1.05); }

/* HAMBURGER */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: 1px solid var(--border);
  cursor: pointer; padding: 10px 12px;
  border-radius: 8px; flex-shrink: 0;
  transition: border-color 0.2s;
}
.hamburger:hover { border-color: var(--gold); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   NAV OVERLAY — fullscreen tabs
   =========================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(5,3,10,0.97);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.overlay-bg-deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(247,223,30,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(124,58,237,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.overlay-close {
  position: absolute;
  top: 24px; right: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text);
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.overlay-close:hover { background: rgba(247,223,30,0.15); border-color: var(--gold); color: var(--gold); }

.overlay-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 600px;
  padding: 0 24px;
}

.overlay-logo {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 8px;
  font-family: var(--font-head);
  font-size: 28px; color: var(--gold);
}

.overlay-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}

/* TAB NAV — tombol besar terpisah */
.overlay-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.otab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
  transition: all 0.2s;
  text-align: left;
}
.otab:hover {
  background: rgba(247,223,30,0.08);
  border-color: rgba(247,223,30,0.4);
  color: var(--gold);
  transform: translateX(4px);
}
.otab-icon { font-size: 22px; flex-shrink: 0; }
.otab-text { font-size: 16px; }

/* Social row inside overlay */
.overlay-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.osocial {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.2s;
}
.osocial:hover {
  background: rgba(247,223,30,0.12);
  border-color: var(--gold);
  transform: scale(1.1);
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; gap: 60px;
  position: relative; z-index: 2;
}
.hero-waves {
  position: absolute; bottom: 0; left: -100px; right: -100px; height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%230e0a1a' d='M0,60 C240,120 480,0 720,60 C960,120 1200,0 1440,60 L1440,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat bottom center / cover;
  pointer-events: none;
}
.hero-content { flex: 1; animation: fadeUp 0.8s ease both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; background: rgba(247,223,30,0.1);
  border: 1px solid rgba(247,223,30,0.3); border-radius: 100px;
  font-size: 13px; font-weight: 700; color: var(--gold);
  margin-bottom: 20px; letter-spacing: 0.5px;
}
.hero-title { font-family: var(--font-head); line-height: 0.9; margin-bottom: 8px; }
.title-line1 { display: block; font-size: clamp(64px, 10vw, 120px); color: var(--text); text-shadow: 0 0 40px rgba(247,223,30,0.3); }
.title-line2 { display: block; font-size: clamp(64px, 10vw, 120px); color: var(--gold); text-shadow: 0 0 60px rgba(247,223,30,0.6); }
.hero-ticker { font-size: 20px; font-weight: 900; color: var(--cyan); letter-spacing: 4px; margin-bottom: 20px; }
.hero-desc { font-size: 17px; color: var(--muted); line-height: 1.8; margin-bottom: 28px; max-width: 520px; }
.hero-desc strong { color: var(--text); }
.hero-desc em { color: var(--gold); font-style: normal; }

.ca-box {
  display: flex; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 16px; margin-bottom: 28px; flex-wrap: wrap;
}
.ca-label { font-weight: 900; color: var(--gold); font-size: 13px; letter-spacing: 1px; flex-shrink: 0; }
.ca-value { font-family: 'Courier New', monospace; font-size: 13px; color: var(--muted); flex: 1; word-break: break-all; }
.ca-copy { background: var(--gold); color: #000; border: none; border-radius: 8px; padding: 6px 14px; font-weight: 800; font-size: 12px; cursor: pointer; transition: all 0.2s; flex-shrink: 0; }
.ca-copy:hover { background: var(--gold2); }

.hero-btns { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 100px;
  font-weight: 900; font-size: 15px;
  text-decoration: none; transition: all 0.25s;
  border: 2px solid transparent;
}
.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(247,223,30,0.4); }
.btn-telegram { background: var(--tg-blue); color: #fff; }
.btn-telegram:hover { background: #1a8fc1; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(34,158,217,0.35); }
.btn-outline { border-color: var(--border); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-stats { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-head); font-size: 32px; color: var(--gold); line-height: 1; }
.stat-label { display: block; font-size: 11px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

.hero-img-wrap {
  flex-shrink: 0; position: relative;
  width: 400px; height: 400px;
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(247,223,30,0.15); animation: spin linear infinite; }
.ring1 { width: 380px; height: 380px; animation-duration: 20s; }
.ring2 { width: 300px; height: 300px; animation-duration: 15s; border-color: rgba(0,255,200,0.1); animation-direction: reverse; }
.ring3 { width: 430px; height: 430px; animation-duration: 30s; border-color: rgba(124,58,237,0.1); }
.hero-img {
  width: 280px; height: 280px; object-fit: cover;
  border-radius: 50%; border: 3px solid rgba(247,223,30,0.3);
  box-shadow: 0 0 60px rgba(247,223,30,0.2), 0 0 120px rgba(247,223,30,0.1);
  position: relative; z-index: 2;
  animation: float 4s ease-in-out infinite;
  transition: opacity 0.3s;
}

@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding-top: calc(var(--nav-h) + 40px); }
  .hero-img-wrap { width: 260px; height: 260px; }
  .ring1 { width: 240px; height: 240px; }
  .ring2 { width: 190px; height: 190px; }
  .ring3 { width: 280px; height: 280px; }
  .hero-img { width: 180px; height: 180px; }
  .hero-desc, .ca-box { margin-left: auto; margin-right: auto; }
  .hero-btns, .hero-stats { justify-content: center; }
}

/* MARQUEE */
.marquee-wrap { background: var(--gold); overflow: hidden; padding: 12px 0; position: relative; z-index: 2; }
.marquee-track { display: flex; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-track span { padding: 0 32px; font-weight: 900; font-size: 14px; color: #000; letter-spacing: 1px; text-transform: uppercase; border-right: 2px solid rgba(0,0,0,0.2); }

/* ===========================
   SECTIONS
   =========================== */
.section { padding: 100px 0; position: relative; z-index: 2; }
.section-tag { display: inline-block; font-size: 11px; font-weight: 900; letter-spacing: 4px; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.section-title { font-family: var(--font-head); font-size: clamp(36px, 5vw, 56px); margin-bottom: 56px; line-height: 1.1; }
.section-title span { color: var(--gold); }

/* ===========================
   ABOUT
   =========================== */
.about-section { background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-text p { color: var(--muted); margin-bottom: 16px; font-size: 16px; line-height: 1.8; }
.about-text strong { color: var(--text); }
.about-text em { color: var(--gold); font-style: normal; }

/* ABOUT LINKS BOX */
.about-links-box {
  margin: 24px 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.about-links-title {
  font-size: 12px; font-weight: 900;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.about-links-row { display: flex; flex-wrap: wrap; gap: 8px; }

.alink {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px; font-weight: 800;
  text-decoration: none;
  border: 1px solid;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.alink.linktree  { background: rgba( 58,196,104,0.1); color: #3ac468; border-color: rgba( 58,196,104,0.3); }
.alink.telegram  { background: rgba( 34,158,217,0.1); color: var(--tg-blue); border-color: rgba(34,158,217,0.3); }
.alink.xtwit     { background: rgba(255,255,255,0.05); color: var(--text); border-color: rgba(255,255,255,0.15); }
.alink.pump      { background: rgba(247, 70, 50,0.1); color: #ff6b52; border-color: rgba(247,70,50,0.3); }
.alink.gh        { background: rgba(255,255,255,0.05); color: var(--muted); border-color: var(--border); }
.alink.disc      { background: rgba(114, 84,200,0.1); color: #a78bfa; border-color: rgba(114,84,200,0.3); }
.alink:hover { transform: translateY(-2px); filter: brightness(1.2); }

.about-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pill { padding: 8px 16px; background: rgba(247,223,30,0.08); border: 1px solid rgba(247,223,30,0.2); border-radius: 100px; font-size: 13px; font-weight: 700; color: var(--gold); }

.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.acard { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: all 0.2s; }
.acard:hover { border-color: rgba(247,223,30,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.acard-icon { font-size: 32px; margin-bottom: 12px; }
.acard h3 { font-size: 15px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.acard p { font-size: 13px; color: var(--muted); line-height: 1.6; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .about-cards { grid-template-columns: 1fr; }
}

/* ===========================
   GALLERY
   =========================== */
.gallery-section { background: var(--bg); }
.gallery-sub { color: var(--muted); font-size: 16px; margin-top: -40px; margin-bottom: 48px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: all 0.25s;
}
.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item:hover {
  border-color: rgba(247,223,30,0.4);
  transform: scale(1.02);
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
  z-index: 10;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  display: flex; align-items: flex-end;
  padding: 16px;
  opacity: 0; transition: opacity 0.25s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 13px; font-weight: 700; color: #fff; }

/* Gallery CTA card */
.gallery-cta-card {
  cursor: default;
  background: linear-gradient(135deg, rgba(34,158,217,0.12), rgba(124,58,237,0.12));
  border-color: rgba(34,158,217,0.3);
  aspect-ratio: 1 / 1;
}
.gallery-cta-card:hover { transform: translateY(-4px); border-color: rgba(34,158,217,0.5); }
.gallery-cta-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 24px; text-align: center; gap: 10px;
}
.gcta-emoji { font-size: 48px; }
.gallery-cta-inner h3 { font-size: 18px; font-weight: 800; color: var(--text); }
.gallery-cta-inner p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 9999;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
}
.lightbox.open { display: flex; }
.lightbox-bg {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
#lightboxImg {
  position: relative; z-index: 2;
  max-width: 90vw; max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
  object-fit: contain;
}
#lightboxCaption {
  position: relative; z-index: 2;
  font-size: 14px; color: var(--muted); font-weight: 700;
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px; z-index: 3;
  background: rgba(255,255,255,0.1); border: 1px solid var(--border);
  color: var(--text); width: 44px; height: 44px; border-radius: 50%;
  font-size: 18px; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(247,223,30,0.2); color: var(--gold); }

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.featured { grid-column: span 2; aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item.featured { grid-column: span 2; aspect-ratio: 4/3; }
}

/* ===========================
   HOW TO BUY
   =========================== */
.buy-section { background: var(--bg2); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.step-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 24px; position: relative; transition: all 0.2s; }
.step-card:hover { border-color: rgba(247,223,30,0.4); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.step-num { position: absolute; top: -18px; left: 24px; font-family: var(--font-head); font-size: 48px; color: rgba(247,223,30,0.12); line-height: 1; pointer-events: none; }
.step-icon { font-size: 40px; margin-bottom: 16px; display: block; }
.step-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.step-card p { font-size: 14px; color: var(--muted); margin-bottom: 10px; line-height: 1.7; }
.step-link { color: var(--cyan); font-weight: 700; font-size: 14px; text-decoration: none; }
.step-link:hover { text-decoration: underline; }
.dex-links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.dex-btn { padding: 6px 14px; background: rgba(247,223,30,0.1); border: 1px solid rgba(247,223,30,0.25); color: var(--gold); border-radius: 8px; font-weight: 800; font-size: 13px; text-decoration: none; transition: all 0.2s; }
.dex-btn:hover { background: rgba(247,223,30,0.2); }
.ca-big-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; text-align: center; }
.ca-big-label { font-size: 12px; font-weight: 900; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.ca-big-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
#caBig { font-family: 'Courier New', monospace; font-size: 14px; color: var(--text); word-break: break-all; }
.ca-big-copy { background: var(--gold); color: #000; border: none; border-radius: 100px; padding: 10px 24px; font-weight: 900; font-size: 14px; cursor: pointer; transition: all 0.2s; }
.ca-big-copy:hover { background: var(--gold2); transform: scale(1.05); }

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

/* ===========================
   TOKENOMICS
   =========================== */
.token-section { background: var(--bg); }
.token-grid { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: center; }
.token-chart-wrap { position: relative; width: 300px; height: 300px; margin: 0 auto; }
#tokenChart { width: 300px !important; height: 300px !important; }
.chart-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; pointer-events: none; }
.chart-big { display: block; font-family: var(--font-head); font-size: 36px; color: var(--gold); line-height: 1; }
.chart-small { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; }
.token-row { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.token-row:last-of-type { border-bottom: none; }
.token-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.token-row h4 { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 2px; }
.token-row p { font-size: 13px; color: var(--muted); }
.token-pct { margin-left: auto; font-family: var(--font-head); font-size: 22px; color: var(--gold); }
.token-highlight { margin-top: 24px; background: rgba(247,223,30,0.07); border: 1px solid rgba(247,223,30,0.2); border-radius: 10px; padding: 16px 20px; font-size: 14px; color: var(--muted); }
.token-highlight strong { color: var(--gold); }

@media (max-width: 768px) {
  .token-grid { grid-template-columns: 1fr; }
  .token-chart-wrap { width: 240px; height: 240px; }
  #tokenChart { width: 240px !important; height: 240px !important; }
}

/* ===========================
   ROADMAP
   =========================== */
.road-section { background: var(--bg2); }
.road-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.road-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; position: relative; transition: all 0.2s; }
.road-card.active { border-color: rgba(247,223,30,0.4); background: linear-gradient(135deg, rgba(247,223,30,0.05), var(--card)); }
.road-card:hover { border-color: rgba(247,223,30,0.3); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.road-badge { display: inline-block; padding: 4px 12px; background: var(--gold); color: #000; border-radius: 100px; font-size: 11px; font-weight: 900; letter-spacing: 1px; margin-bottom: 16px; }
.road-card:not(.active) .road-badge { background: var(--border); color: var(--muted); }
.road-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.road-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 16px; color: var(--text); }
.road-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.road-card li { font-size: 13px; color: var(--muted); line-height: 1.5; }

@media (max-width: 960px) { .road-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .road-grid { grid-template-columns: 1fr; } }

/* ===========================
   FAIRLAUNCH
   =========================== */
.fair-section { background: var(--bg); }
.fair-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }
.fair-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: all 0.2s; }
.fair-card:hover { border-color: rgba(0,255,200,0.3); transform: translateY(-4px); }
.fair-icon { font-size: 40px; display: block; margin-bottom: 14px; }
.fair-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.fair-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.fair-quote { text-align: center; max-width: 640px; margin: 0 auto; background: rgba(0,255,200,0.05); border: 1px solid rgba(0,255,200,0.15); border-radius: var(--radius); padding: 32px 40px; font-size: 18px; color: var(--muted); line-height: 1.8; }
.fair-quote strong { color: var(--cyan); }

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

/* ===========================
   COMMUNITY
   =========================== */
.community-section { background: var(--bg2); }
.community-sub { color: var(--muted); font-size: 17px; margin-top: -40px; margin-bottom: 48px; }

.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.social-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 24px; text-decoration: none; display: block;
  position: relative; overflow: hidden; transition: all 0.25s;
}
.social-card::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s; border-radius: var(--radius); }
.social-card.twitter::before  { background: linear-gradient(135deg, rgba(29,161,242,.1), transparent); }
.social-card.pump::before      { background: linear-gradient(135deg, rgba(247,70,50,.1), transparent); }
.social-card.telegram::before  { background: linear-gradient(135deg, rgba(34,158,217,.1), transparent); }
.social-card.linktree::before  { background: linear-gradient(135deg, rgba(58,196,104,.1), transparent); }
.social-card.discord::before   { background: linear-gradient(135deg, rgba(114,84,200,.1), transparent); }
.social-card.github::before    { background: linear-gradient(135deg, rgba(200,200,200,.05), transparent); }
.social-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.social-card:hover::before { opacity: 1; }
.social-card.twitter:hover  { border-color: rgba(29,161,242,.4); }
.social-card.pump:hover      { border-color: rgba(247,70,50,.4); }
.social-card.telegram:hover  { border-color: rgba(34,158,217,.4); }
.social-card.linktree:hover  { border-color: rgba(58,196,104,.4); }
.social-card.discord:hover   { border-color: rgba(114,84,200,.4); }
.social-card.github:hover    { border-color: rgba(200,200,200,.2); }
.social-icon { font-size: 38px; display: block; margin-bottom: 14px; }
.social-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.social-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.social-arrow { position: absolute; top: 24px; right: 24px; font-size: 18px; color: var(--muted); transition: all 0.2s; }
.social-card:hover .social-arrow { color: var(--gold); transform: translate(4px, -4px); }

/* TELEGRAM BANNER */
.tg-banner {
  background: linear-gradient(135deg, rgba(34,158,217,0.12), rgba(0,60,100,0.2));
  border: 1px solid rgba(34,158,217,0.35);
  border-radius: var(--radius);
  padding: 32px 40px;
}
.tg-banner-inner {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.tg-big-icon { font-size: 52px; flex-shrink: 0; }
.tg-banner-text { flex: 1; min-width: 200px; }
.tg-banner-text h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.tg-banner-text p { font-size: 14px; color: var(--muted); }

@media (max-width: 860px) { .social-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) {
  .social-grid { grid-template-columns: 1fr; }
  .tg-banner { padding: 24px 20px; }
  .tg-banner-inner { flex-direction: column; text-align: center; }
}

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 60px 0 32px; position: relative; z-index: 2; }
.footer-inner { text-align: center; }
.footer-logo { display: flex; justify-content: center; align-items: center; gap: 8px; margin-bottom: 16px; text-decoration: none; }
.footer-desc { color: var(--muted); font-size: 14px; line-height: 1.8; margin-bottom: 28px; }
.footer-desc strong { color: #ff6b6b; }
.footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 700; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-socials { display: flex; justify-content: center; gap: 14px; margin-bottom: 24px; }
.footer-socials a { font-size: 20px; text-decoration: none; opacity: 0.5; transition: opacity 0.2s, transform 0.2s; }
.footer-socials a:hover { opacity: 1; transform: scale(1.2); }
.footer-copy { font-size: 13px; color: rgba(120,100,160,0.5); }

/* BACK TO TOP */
#backToTop {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--gold); color: #000;
  border: none; border-radius: 50%;
  font-size: 20px; font-weight: 900;
  cursor: pointer; z-index: 500;
  opacity: 0; transform: translateY(20px);
  transition: all 0.3s;
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--gold2); transform: scale(1.1); }

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes overlayItemIn {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.nav-overlay.open .otab {
  animation: overlayItemIn 0.3s ease both;
}
.nav-overlay.open .otab:nth-child(1) { animation-delay: 0.05s; }
.nav-overlay.open .otab:nth-child(2) { animation-delay: 0.10s; }
.nav-overlay.open .otab:nth-child(3) { animation-delay: 0.15s; }
.nav-overlay.open .otab:nth-child(4) { animation-delay: 0.20s; }
.nav-overlay.open .otab:nth-child(5) { animation-delay: 0.25s; }
.nav-overlay.open .otab:nth-child(6) { animation-delay: 0.30s; }
.nav-overlay.open .otab:nth-child(7) { animation-delay: 0.35s; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
