/* ==============================
   THEME
   ============================== */
:root {
  --bg: #050816;
  --bg-alt: #070d1f;
  --bg-soft: #0a1022;
  --card: #0b1326;
  --accent: #f6c560;
  --accent-soft: rgba(246, 197, 96, 0.2);
  --accent2: #46e0a0;
  --text: #f5f7ff;
  --muted: #9aa4c6;
  --danger: #ff6b6b;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
  --border-soft: rgba(255, 255, 255, 0.06);
  --gold: #f6c560;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background:
    radial-gradient(circle at top, #111a33 0, transparent 60%),
    radial-gradient(circle at bottom, #02030a 0, #020413 70%);
  color: var(--text);
  scroll-behavior: smooth;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.no-scroll {
  overflow: hidden;
}

/* Mouse beam */
#beam {
  position: fixed;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(246, 197, 96, 0.22) 0,
    rgba(246, 197, 96, 0.04) 55%,
    transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.16s ease-out;
  z-index: 0;
}

/* ==============================
   LAYOUT HELPERS
   ============================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  position: relative;
  z-index: 1;
}

.block {
  padding: 38px 0;
  position: relative;
}

.section-head {
  text-align: left;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0 0 4px;
  font-size: 1.6rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-main-title {
  margin: 0 0 18px;
  text-align: center;
  font-size: 1.6rem;
}

.accent {
  color: var(--accent);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 30px;
}

.section-title {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
}

.i-sol {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, #9945ff, #14f195);
  display: inline-block;
}

/* ==============================
   HEADER
   ============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(
    to bottom,
    rgba(5, 8, 23, 0.95),
    rgba(5, 8, 23, 0.9)
  );
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.scrolled {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.85);
}

.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  padding: 1px;
  background: #050814;
  border: 1px solid rgba(246, 197, 96, 0.8);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.8);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.brand-main {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.brand-text small {
  font-size: 0.7rem;
  color: var(--muted);
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-trade {
  padding-inline: 16px;
  font-size: 0.88rem;
}

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease,
    transform 0.1s ease,
    box-shadow 0.18s ease;
}

.btn.gold {
  background: radial-gradient(
    circle at 18% 0,
    #ffe9aa 0,
    #f6c560 32%,
    #f1a53c 80%
  );
  border-color: rgba(213, 172, 87, 0.9);
  color: #1b1106;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.9);
}

.btn.gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.95);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.02);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn.ghost-soft {
  background: rgba(255, 255, 255, 0.01);
  border-style: dashed;
}

.btn.ghost-soft:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 38px;
  height: 32px;
  padding: 6px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #050819;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #f6f5ff;
  margin: 4px 0;
}

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  padding: 80px 0 44px;
  overflow: hidden;
}

.bgfx {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 5%, rgba(83, 108, 255, 0.28), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(246, 197, 96, 0.22), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-in {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.hero-copy h1 {
  font-size: 2.6rem;
  letter-spacing: 0.03em;
  margin: 0 0 10px;
}

.hero-copy p {
  margin: 0 0 16px;
  color: var(--muted);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.hero-badges span {
  font-size: 0.82rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.coin-orbit {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px dashed rgba(246, 197, 96, 0.4);
  opacity: 0.7;
}

.coin-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 20%,
    rgba(255, 244, 199, 0.9) 0,
    rgba(246, 197, 96, 0.45) 30%,
    rgba(0, 0, 0, 0.9) 76%
  );
  top: 8px;
  filter: blur(1px);
}

.coin {
  position: relative;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset;
  animation: floatCoin 4.4s ease-in-out infinite;
}

.hero-tagline {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(5, 10, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: var(--muted);
  white-space: nowrap;
}

.hero-tagline span {
  color: var(--accent2);
  margin-left: 4px;
}

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

.hero-chip {
  font-size: 0.82rem;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.hero-chip-muted {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--muted);
}

.hero-chip-accent {
  background: linear-gradient(90deg, #f6c560, #46e0a0);
  border: 0;
  color: #1a1205;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.9);
}

.hero-coin-wrap::after {
  content: "";
  position: absolute;
  inset: auto;
  bottom: -18px;
  left: 12%;
  right: 12%;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.8);
  filter: blur(10px);
  z-index: 0;
}

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

/* ==============================
   ADDRESS
   ============================== */
.address .ca-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 9px 10px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
}

.address input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: monospace;
  font-size: 0.9rem;
  outline: none;
}

.address .copy {
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  padding: 6px 10px;
}

.ca-note {
  margin-top: 6px;
}

/* ==============================
   PANELS & TEXT HELPERS
   ============================== */
.panel {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 16px 18px 18px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.panel-head .icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: radial-gradient(
    circle at 20% 10%,
    rgba(246, 197, 96, 0.85),
    rgba(246, 197, 96, 0.18)
  );
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.panel-head h3 {
  margin: 0;
  font-size: 1.02rem;
}

.panel-body {
  margin-top: 6px;
}

.center {
  text-align: center;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 0.86rem;
}

/* Chip */
.chip {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(246, 197, 96, 0.7);
  background: rgba(246, 197, 96, 0.06);
  color: var(--accent);
  font-size: 0.84rem;
  margin: 6px 0 4px;
}

.powered {
  margin: 10px 0 6px;
  font-size: 0.86rem;
}

/* Guardarian widget */
.cc-widget {
  margin: 10px 0 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85);
}

.cc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.hint {
  font-size: 0.86rem;
  margin-top: 6px;
}

/* Pill buttons */
.exchange-icon {
  width: 18px;
  height: 18px;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    background 0.15s ease,
    transform 0.1s ease,
    box-shadow 0.18s ease,
    border-color 0.16s ease;
}

.pill-btn.big {
  padding: 10px 16px;
}

.pill-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.8);
}

/* Buy / Docs grids */
.actions .btn-grid,
.docs .btn-grid,
.security .btn-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.security .btn-grid.single {
  grid-template-columns: minmax(0, 1fr);
}

/* ==============================
   VALUE SECTION
   ============================== */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.value-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.8);
  font-size: 0.9rem;
}

.value-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

/* ==============================
   UTILITY
   ============================== */
.utility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.utility-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  border: 1px solid var(--border-soft);
  font-size: 0.9rem;
}

.utility-card h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

/* ==============================
   LIVE STATS
   ============================== */
.live-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.live-header-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.live-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.stat-card {
  background: rgba(8, 13, 32, 0.98);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  padding: 11px 11px 9px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.stat-card.big {
  grid-column: span 2;
}

.stat-card.chart-card {
  grid-column: span 3;
  padding-top: 13px;
}

.stat-card label {
  font-size: 0.8rem;
  color: #c6c6c6;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.stat-card span {
  margin-top: 4px;
  font-size: 1.12rem;
  font-weight: 700;
  display: block;
  color: #f5d06c;
}

.stat-card small {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: #a9b6d3;
}

.pos {
  color: #48e58a;
}
.neg {
  color: #ff6b6b;
}

/* Pool badge */
.pool-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: #a9f5c9;
  white-space: nowrap;
}

.pool-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd15c;
}

.pool-status.live .dot {
  background: #41e19b;
}
.pool-status.low .dot {
  background: #ffd15c;
}
.pool-status.off .dot {
  background: #ff6b6b;
  color: #ffc9c9;
}

.chart-card svg {
  width: 100%;
  height: 44px;
  margin-top: 6px;
  color: #f5d06c;
}

/* Highlight when pool goes live */
.live-stats.pool-highlight .panel {
  animation: poolGlow 1.7s ease-out;
}

@keyframes poolGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(246, 197, 96, 0.6), 0 16px 40px rgba(0, 0, 0, 0.75);
    transform: scale(1.01);
  }
  60% {
    box-shadow: 0 0 0 10px rgba(246, 197, 96, 0), 0 12px 32px rgba(0, 0, 0, 0.55);
    transform: scale(1.005);
  }
  100% {
    box-shadow: var(--shadow);
    transform: scale(1);
  }
}

/* ==============================
   TOKENOMICS
   ============================== */
.tokenomics-in {
  align-items: center;
}

.tok-copy h2 {
  margin-top: 0;
  margin-bottom: 6px;
}

.tok-copy .small {
  margin-bottom: 8px;
}

.facts {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  font-size: 0.9rem;
}

.facts li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.facts li span:first-child {
  color: var(--muted);
}

.locked {
  font-size: 0.82rem;
  color: var(--muted);
}

.note {
  margin-top: 10px;
  font-size: 0.86rem;
}

.vesting-box {
  margin-top: 10px;
  padding: 9px 11px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(246, 197, 96, 0.6);
  background: rgba(246, 197, 96, 0.06);
  font-size: 0.85rem;
}

/* Donut */
.donut-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.donut {
  max-width: 220px;
}

.donut-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 3;
}

.slice {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
}

.slice.presale {
  stroke: #f6c560;
}
.slice.lp {
  stroke: #f1a53c;
}
.slice.airdrop {
  stroke: #ff8f5a;
}
.slice.eco {
  stroke: #3cf2b1;
}
.slice.team {
  stroke: #57a5ff;
}
.slice.cex {
  stroke: #a16bff;
}
.slice.tre {
  stroke: #ffceff;
}
.slice.cha {
  stroke: #ff6b9c;
}

.donut-text text {
  fill: #fdf7e8;
}

/* ==============================
   AIRDROP
   ============================== */
.airdrop .panel {
  padding-bottom: 18px;
}

.air-grid {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.air-grid.single {
  flex-direction: column;
}

.air-card {
  flex: 1;
  border-radius: var(--radius-md);
  padding: 10px 12px 12px;
  background: #050a18;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.9);
  font-size: 0.9rem;
}

.air-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.air-card h4 {
  margin: 0;
  font-size: 0.96rem;
}

.air-card .timer {
  margin-top: 6px;
  font-size: 0.9rem;
}

/* progress bar */
.bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  margin: 10px 0 6px;
}

#progress-bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #f6c560, #46e0a0);
}

/* X button */
.x-btn {
  margin-top: 6px;
  padding-inline: 18px;
}

/* ==============================
   CTA
   ============================== */
.cta-finance {
  position: relative;
}

.cta-bg {
  position: absolute;
  inset: 10px 0 0;
  background: linear-gradient(
    135deg,
    rgba(246, 197, 96, 0.16),
    rgba(84, 250, 164, 0.07)
  );
  filter: blur(12px);
  opacity: 0.6;
}

.cta-in {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, #060b1a, #0d182c);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.cta-actions {
  flex-shrink: 0;
}

/* ==============================
   ROADMAP
   ============================== */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.phase {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 12px 12px 14px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.8);
  position: relative;
}

.phase::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 8px;
  width: 3px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(to bottom, #f6c560, #46e0a0);
  opacity: 0.75;
}

.phase h3 {
  margin: 0 0 8px 10px;
  font-size: 1rem;
}

.phase ul {
  margin: 0 0 0 22px;
  padding: 0;
  font-size: 0.9rem;
}

/* ==============================
   PARTNERS
   ============================== */
.partners .section-main-title {
  margin-bottom: 16px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.partner-card {
  background: #050a18;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
}

.partner-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.partner-card img {
  max-height: 32px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
}

/* ==============================
   CONTACT
   ============================== */
#contact .two-col {
  align-items: flex-start;
}

#contact .notice {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  border: 1px solid var(--border-soft);
  font-size: 0.9rem;
}

#contact .links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: #030614;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.foot-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal {
  margin-top: 6px;
  padding-top: 4px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.legal h5 {
  margin: 3px 0 5px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d0d3e6;
}

.legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==============================
   BACK TO TOP
   ============================== */
.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: radial-gradient(
    circle at 20% 0,
    #ffe9aa 0,
    #f6c560 40%,
    #f1a53c 90%
  );
  color: #1a1205;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.95);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.1s ease;
  z-index: 50;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  transform: translateY(-2px);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: inline-flex;
  }
  .hero {
    padding-top: 86px;
  }
  .hero-in {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-art {
    order: -1;
    margin-bottom: 10px;
  }
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }
  .actions .btn-grid,
  .docs .btn-grid,
  .security .btn-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .utility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .live-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card.big {
    grid-column: span 2;
  }
  .stat-card.chart-card {
    grid-column: span 2;
  }
  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cta-in {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 2.1rem;
  }
  .actions .btn-grid,
  .docs .btn-grid,
  .security .btn-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .value-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .utility-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .live-stats .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-card.big,
  .stat-card.chart-card {
    grid-column: span 1;
  }
  .roadmap-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .foot-in {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 420px) {
  .header-in {
    padding-inline: 12px;
  }
  .container {
    padding-inline: 14px;
  }
}

/* ==============================
   Manifesto & Legal Pages
   ============================== */
.legal-page {
  padding-top: 110px; /* fixed header altında nefes alanı */
  padding-bottom: 80px;
}

.legal-page .page-head {
  max-width: 840px;
  margin: 0 auto 32px;
}

.legal-page .page-head .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}

.legal-page .page-head h1 {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}

.legal-page .page-head .page-subtitle {
  color: var(--muted);
  max-width: 640px;
}

.manifesto-panel {
  max-width: 920px;
  margin: 0 auto;
}

.manifesto-panel h2 {
  margin-top: 2.2rem;
  font-size: 1.15rem;
}

.manifesto-panel p {
  margin-top: 0.35rem;
  line-height: 1.7;
}

.manifesto-quote {
  margin: 2rem 0;
  padding: 1.2rem 1.5rem;
  border-left: 3px solid rgba(246, 197, 96, 0.85);
  background:
    radial-gradient(circle at 0 0, rgba(246, 197, 96, 0.15), rgba(3, 7, 20, 0.98));
  font-style: italic;
}

.manifesto-meta {
  margin-top: 1.8rem;
  text-align: right;
  font-size: 0.85rem;
}

/* Küçük ekran optimizasyonu */
@media (max-width: 768px) {
  .legal-page {
    padding-top: 96px;
    padding-bottom: 56px;
  }
  .legal-page .page-head {
    text-align: left;
  }
  .legal-page .page-head h1 {
    font-size: 1.8rem;
  }
}

/* ==============================
   Media Kit Page
   ============================== */
.media-page .page-head {
  max-width: 840px;
  margin: 0 auto 32px;
}

.media-page .page-head h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.media-page .page-head .page-subtitle {
  color: var(--muted);
  max-width: 640px;
}

.media-panel {
  max-width: 980px;
  margin: 0 auto;
}

.media-section + .media-section {
  margin-top: 2.2rem;
}

.media-section h2 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.media-section p {
  margin-top: 0.35rem;
  line-height: 1.7;
}

.media-list {
  margin: 0.75rem 0 0.25rem;
  padding-left: 1.2rem;
}

.media-list li {
  margin-bottom: 0.25rem;
}

/* Logos grid */
.media-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0.9rem 0 0.4rem;
}

.media-card {
  background: radial-gradient(circle at 0 0, rgba(246, 197, 96, 0.08), rgba(3, 7, 20, 0.98));
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 18px 14px;
  max-width: 260px;
}

.media-logo-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 8px;
}

.media-logo-preview img {
  max-width: 130px;
  height: auto;
}

.media-card-title {
  font-weight: 500;
  margin-top: 4px;
}

.media-card-meta {
  margin-top: 2px;
  margin-bottom: 8px;
}

.btn-small {
  font-size: 0.82rem;
  padding: 6px 12px;
}

/* Gallery */
.media-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin: 0.9rem 0 1.2rem;
}

.media-shot {
  background: rgba(3, 7, 20, 0.95);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 10px 12px;
}

.media-shot img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.media-shot figcaption {
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--muted);
}

.media-meta {
  margin-top: 1.6rem;
  text-align: right;
  font-size: 0.85rem;
}

/* Highlight link */
.highlight {
  color: var(--gold);
  font-weight: 500;
  text-decoration: none;
}

.highlight:hover {
  text-decoration: underline;
}

/* Responsive */
@media (min-width: 720px) {
  .media-grid {
    justify-content: flex-start;
  }
  .media-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .media-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ==============================
   Press / PR Page
   ============================== */
.press-page .page-head {
  max-width: 840px;
  margin: 0 auto 32px;
}

.press-page .page-head h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.press-page .page-head .page-subtitle {
  color: var(--muted);
  max-width: 640px;
}

.press-panel {
  max-width: 980px;
  margin: 0 auto;
}

.press-item + .press-item {
  margin-top: 1.9rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.press-item h2 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.press-item p {
  margin-top: 0.35rem;
  line-height: 1.7;
}

.press-list {
  margin: 0.65rem 0 0.2rem;
  padding-left: 1.2rem;
}

.press-list li {
  margin-bottom: 0.25rem;
}

.press-highlight {
  margin-top: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  display: inline-block;
  font-size: 0.9rem;
  background: linear-gradient(90deg, rgba(246, 197, 96, 0.16), rgba(70, 224, 160, 0.12));
  border: 1px solid rgba(246, 197, 96, 0.4);
}

.social-links {
  margin: 0.6rem 0 0.2rem;
  padding-left: 1.2rem;
}

.social-links li {
  margin-bottom: 0.15rem;
}

.social-links a {
  text-decoration: none;
  color: var(--gold);
}

.social-links a:hover {
  text-decoration: underline;
}

.press-meta {
  margin-top: 1.8rem;
  text-align: right;
  font-size: 0.85rem;
}

/* Responsive küçük ayar */
@media (max-width: 768px) {
  .press-page .page-head h1 {
    font-size: 1.8rem;
  }
}

/* ==============================
   Whitepaper Page
   ============================== */
.whitepaper-page .page-head {
  max-width: 840px;
  margin: 0 auto 32px;
}

.whitepaper-page .page-head h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.whitepaper-page .page-head .page-subtitle {
  color: var(--muted);
  max-width: 640px;
}

.whitepaper-panel {
  max-width: 980px;
  margin: 0 auto;
}

.wp-section + .wp-section {
  margin-top: 2.1rem;
}

.wp-section h2 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.wp-section p {
  margin-top: 0.35rem;
  line-height: 1.7;
}

.wp-section ul {
  margin: 0.65rem 0 0.2rem;
  padding-left: 1.25rem;
}

.wp-section ul li {
  margin-bottom: 0.25rem;
}

.whitepaper-meta {
  margin-top: 1.8rem;
  text-align: right;
  font-size: 0.85rem;
}

/* Küçük ekran ayarı */
@media (max-width: 768px) {
  .whitepaper-page .page-head h1 {
    font-size: 1.8rem;
  }
}

/* ==============================
   Privacy Page
   ============================== */
.privacy-page .page-head {
  max-width: 840px;
  margin: 0 auto 32px;
}

.privacy-page .page-head h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.privacy-page .page-head .page-subtitle {
  color: var(--muted);
  max-width: 640px;
}

.privacy-panel {
  max-width: 980px;
  margin: 0 auto;
}

.legal-section + .legal-section {
  margin-top: 2rem;
}

.legal-section h2 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.legal-section p {
  margin-top: 0.35rem;
  line-height: 1.7;
}

.privacy-meta {
  margin-top: 1.8rem;
  text-align: right;
  font-size: 0.85rem;
}

/* Küçük ekran ayarı */
@media (max-width: 768px) {
  .privacy-page .page-head h1 {
    font-size: 1.8rem;
  }
}

/* ==============================
   Risk Disclosures Page
   ============================== */
.risk-page .page-head {
  max-width: 840px;
  margin: 0 auto 32px;
}

.risk-page .page-head h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.risk-page .page-head .page-subtitle {
  color: var(--muted);
  max-width: 640px;
}

.risk-panel {
  max-width: 980px;
  margin: 0 auto;
}

.risk-panel .legal-section + .legal-section {
  margin-top: 2rem;
}

.risk-panel .legal-section h2 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.risk-panel .legal-section p {
  margin-top: 0.35rem;
  line-height: 1.7;
}

.risk-meta {
  margin-top: 1.8rem;
  text-align: right;
  font-size: 0.85rem;
}

/* Küçük ekran ayarı */
@media (max-width: 768px) {
  .risk-page .page-head h1 {
    font-size: 1.8rem;
  }
}

/* ==============================
   Terms of Service Page
   ============================== */
.terms-page .page-head {
  max-width: 840px;
  margin: 0 auto 32px;
}

.terms-page .page-head h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.terms-page .page-head .page-subtitle {
  color: var(--muted);
  max-width: 640px;
}

.terms-panel {
  max-width: 980px;
  margin: 0 auto;
}

.terms-panel .legal-section + .legal-section {
  margin-top: 2rem;
}

.terms-panel .legal-section h2 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.terms-panel .legal-section p {
  margin-top: 0.35rem;
  line-height: 1.7;
}

.terms-meta {
  margin-top: 1.8rem;
  text-align: right;
  font-size: 0.85rem;
}

/* Küçük ekran ayarı */
@media (max-width: 768px) {
  .terms-page .page-head h1 {
    font-size: 1.8rem;
  }
}

/* ==============================
   Token Use & Acquisition Terms Page
   ============================== */
.token-terms-page .page-head {
  max-width: 840px;
  margin: 0 auto 32px;
}

.token-terms-page .page-head h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.token-terms-page .page-head .page-subtitle {
  color: var(--muted);
  max-width: 640px;
}

.token-terms-panel {
  max-width: 980px;
  margin: 0 auto;
}

.token-terms-panel .legal-section + .legal-section {
  margin-top: 2rem;
}

.token-terms-panel .legal-section h2 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.token-terms-panel .legal-section p {
  margin-top: 0.35rem;
  line-height: 1.7;
}

.token-terms-meta {
  margin-top: 1.8rem;
  text-align: right;
  font-size: 0.85rem;
}

/* Küçük ekran ayarı */
@media (max-width: 768px) {
  .token-terms-page .page-head h1 {
    font-size: 1.8rem;
  }
}

/* ==============================
   MOBILE FULLSCREEN DRAWER + MASK
   (OLD SITE STYLE, MOBILE NAV)
   ============================== */

/* Drawer: sadece menü kutuları, arka planı mask kapatıyor */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 1001;
  padding: 84px 16px 24px; /* üstte header + boşluk */
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  background: transparent;
}

/* Açıkken */
.drawer.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Menü linkleri: kart gibi */
.drawer a {
  display: block;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 1rem;
  color: #f9fbff;
  text-decoration: none;
  background: #101523;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
}

/* Hover / dokunma efekti */
.drawer a:hover {
  background: #181f33;
}

/* Altın butonu tam genişlik */
.drawer .btn.block {
  width: 100%;
  justify-content: center;
  text-align: center;
  font-weight: 600;
}

/* Kapatma butonu (sağ üstte X kutusu) */
.close-drawer {
  position: fixed;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: none;
  background: #181f33;
  color: #ffffff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1002;
}

/* Tam ekran arka plan maskesi */
.drawer-mask {
  position: fixed;
  inset: 0;
  background: #050817 !important; /* Tam opak koyu arka plan */
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  transition: opacity 0.22s ease;
}

/* Mask aktifken */
.drawer-mask.show {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer sadece mobilde */
@media (min-width: 961px) {
  .drawer {
    display: none !important;
  }
}

/* Drawer içindeki altın Trade butonunda yazı her zaman beyaz olsun */
.drawer .btn.gold,
.drawer .btn.gold:hover,
.drawer .btn.gold:active {
  color: #ffffff !important;
}

/* ==============================
   SOLSCAN OVAL BUTTON (WTBC STYLE)
   ============================== */
.solscan-box {
  margin-top: 18px;
  display: flex;
  justify-content: flex-start;
}

.solscan-btn-oval {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: 0.25s ease;
}

.solscan-btn-oval:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.22);
}

.solscan-btn-oval:active {
  transform: translateY(0);
  box-shadow: none;
}

.solscan-icon {
  width: 22px;
  height: 22px;
  opacity: 0.9;
}

/* ==============================
   FAIRLAUNCH STATUS
   ============================== */
.fairlaunch .panel {
  margin-top: 40px;
}

.fair-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.fair-card {
  background: #0f111a;
  border: 1px solid #1a1d27;
  padding: 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.fair-card label {
  font-size: 13px;
  opacity: 0.65;
  margin-bottom: 6px;
}

.fair-card span {
  font-size: 16px;
  font-weight: 600;
}

.fair-card.wide {
  grid-column: span 4;
}

.fair-bar {
  width: 100%;
  height: 12px;
  background: #1a1d27;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 6px;
}

#fair-bar-fill {
  height: 12px;
  width: 0%;
  background: linear-gradient(90deg, #ffb347, #ffcc33);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.fair-btn-wrap {
  margin-top: 26px;
  text-align: center;
}

/* Fairlaunch Button */
.fair-btn {
  display: inline-block;
  padding: 14px 24px;
  background: #f6d067;
  color: #000;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.fair-btn:hover {
  background: #0f111a;
  color: #f6d067;
  border-color: #f6d067;
  box-shadow: 0 0 12px rgba(246, 208, 103, 0.25);
}

/* Mobile */
@media (max-width: 768px) {
  .fair-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fair-card.wide {
    grid-column: span 2;
  }
}

/* ==============================
   WTBC Chart panel
   ============================== */
.wtbc-chart-panel {
  margin-top: 24px;
}

/* responsive iframe container */
.chart-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  border-radius: 18px;
  overflow: hidden;
}

/* iframe full-size */
.chart-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==============================
   FAQ
   ============================== */
.faq .panel {
  margin-top: 8px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.faq-item {
  background: #050a18;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  padding: 12px 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.85);
}

.faq-item h4 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #f9fbff;
}

.faq-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Mobile: tek sütun */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-item {
    padding: 12px;
  }
}

/* ===========================
   THEME TOGGLE & LIGHT THEME
   =========================== */
.theme-toggle {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 8, 22, 0.7);
  color: #f9fafb;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  margin-left: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.theme-toggle:active {
  transform: translateY(0);
}

/* Light theme overrides (minimal, site default dark kalıyor) */
:root[data-theme="light"] body {
  background: #f5f5f7;
  color: #050816;
}

:root[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

:root[data-theme="light"] .hero {
  background: radial-gradient(circle at top, #ffffff 0, #e5ecff 40%, #d8e5ff 100%);
}

:root[data-theme="light"] .hero .bgfx {
  opacity: 0.35;
}

:root[data-theme="light"] .panel {
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

:root[data-theme="light"] .block {
  background: transparent;
}

:root[data-theme="light"] .footer {
  background: #0f172a;
  color: #e5e7eb;
}

:root[data-theme="light"] .btn.gold {
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.35);
}

:root[data-theme="light"] .nav-links a {
  color: #020617;
}

:root[data-theme="light"] .nav-links a:hover {
  color: #f97316;
}

:root[data-theme="light"] .value-card,
:root[data-theme="light"] .utility-card,
:root[data-theme="light"] .phase,
:root[data-theme="light"] .trans-card,
:root[data-theme="light"] .ecosystem-panel {
  background: #ffffff;
}

/* ===========================
   ECOSYSTEM MAP
   =========================== */
.ecosystem-panel {
  position: relative;
  overflow: hidden;
}

.ecosystem-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: center;
}

.ecosystem-copy p {
  margin-bottom: 10px;
}

.ecosystem-nodes {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Turuncu WTBC core (desktop) */
.ecosystem-core {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  background: radial-gradient(circle at 30% 0%, #fbbf24, #f97316 40%, #78350f 100%);
  color: #111827;
  box-shadow: 0 18px 40px rgba(248, 181, 55, 0.55);
  z-index: 2;
}

/* Çevresindeki kartlar (desktop orbit) */
.eco-node {
  position: absolute;
  max-width: 190px;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.4;
  background: rgba(10, 16, 30, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  z-index: 3;
}

.eco-node .title {
  display: block;
  font-weight: 600;
  margin-bottom: 3px;
}

.eco-node .desc {
  display: block;
  color: #9ca3af;
}

/* Desktop orbit pozisyonları */
.eco-treasury {
  top: 3%;
  left: 52%;
  transform: translate(-50%, 0);
}

.eco-cex {
  top: 22%;
  right: -4%;
  transform: translate(0, 0);
}

.eco-otc {
  bottom: 10%;
  right: -2%;
  transform: translate(0, 0);
}

.eco-eco {
  bottom: -2%;
  left: 50%;
  transform: translate(-50%, 0);
}

.eco-gov {
  top: 22%;
  left: -4%;
  transform: translate(0, 0);
}

/* Tablet & Mobil: orbit yerine dikey stack */
@media (max-width: 1024px) {
  .ecosystem-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .ecosystem-nodes {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    padding-bottom: 8px;
  }

  .ecosystem-core {
    margin: 0 auto 12px;
  }

  .eco-node {
    position: static;
    max-width: 100%;
    width: 100%;
    transform: none;
  }
}

/* Ek mobil iyileştirme */
@media (max-width: 900px) {
  .ecosystem-copy {
    max-width: 100%;
    text-align: left;
  }

  .ecosystem-nodes {
    margin: 0 auto;
    max-width: 360px;
  }

  .ecosystem-core {
    margin-bottom: 16px;
  }
}

/* ===========================
   TOKEN LEGEND HOVER
   =========================== */
.donut-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.token-legend {
  list-style: none;
  margin: 0;
  padding: 10px 12px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7));
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 14px;
  font-size: 12px;
  width: 100%;
  max-width: 360px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 999px;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  cursor: default;
}

.legend-item .swatch {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex-shrink: 0;
}

.legend-item .label {
  font-weight: 500;
}

.legend-item .value {
  margin-left: auto;
  opacity: 0.75;
}

/* Swatch colors – mevcut slice renkleriyle uyumlu */
.legend-item.presale .swatch {
  background: #facc15;
}
.legend-item.lp .swatch {
  background: #22c55e;
}
.legend-item.airdrop .swatch {
  background: #38bdf8;
}
.legend-item.eco .swatch {
  background: #6366f1;
}
.legend-item.team .swatch {
  background: #f97316;
}
.legend-item.cex .swatch {
  background: #e11d48;
}
.legend-item.tre .swatch {
  background: #14b8a6;
}
.legend-item.cha .swatch {
  background: #a855f7;
}

.legend-item:hover {
  background: rgba(248, 250, 252, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.6);
}

/* Light theme legend */
:root[data-theme="light"] .token-legend {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(148, 163, 184, 0.6);
}

:root[data-theme="light"] .legend-item:hover {
  background: rgba(15, 23, 42, 0.06);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.09);
}

/* ===========================
   AUDIT EXTRA (LP BURN BOX)
   =========================== */
.audit-extra {
  margin-top: 24px;
  padding: 14px 16px;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(248, 113, 113, 0.16), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(248, 113, 113, 0.45);
}

.audit-extra h4 {
  margin-bottom: 6px;
}

.audit-extra .tiny {
  font-size: 10px;
  margin-top: 6px;
}

/* ===========================
   TRANSPARENCY GRID
   =========================== */
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.trans-card {
  border-radius: 16px;
  padding: 14px 16px;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 13px;
}

.trans-card h4 {
  margin-bottom: 6px;
}

.trans-card ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.trans-card li {
  margin-bottom: 4px;
  color: #e5e7eb;
}

.trans-card li:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .transparency-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ===========================
   ROADMAP CEX PANEL
   =========================== */
.roadmap-cex {
  margin-top: 24px;
}

.roadmap-cex-body ul {
  margin: 0 0 8px 0;
  padding-left: 18px;
  font-size: 13px;
}

.roadmap-cex-body li {
  margin-bottom: 4px;
}

.roadmap-cex-body p {
  margin: 0;
}

/* ===========================
   PARTNER "MORE COMING" CARD
   =========================== */
.partner-card.partner-more {
  display: flex;
  align-items: stretch;
}

.partner-card.partner-more .more-inner {
  border-radius: 18px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.16), rgba(15, 23, 42, 0.96));
  padding: 14px 12px;
  text-align: center;
  font-size: 12px;
  line-height: 1.4;
  color: #e5e7eb;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: partnerGlow 2.6s ease-in-out infinite;
}

.partner-card.partner-more .tag {
  display: inline-block;
  align-self: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(34, 197, 94, 0.2);
  color: #bbf7d0;
  margin-bottom: 6px;
}

@keyframes partnerGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(56, 189, 248, 0);
  }
  50% {
    box-shadow: 0 0 26px rgba(56, 189, 248, 0.45);
  }
}

/* ===========================
   SMALL UTIL CLASSES
   =========================== */
.muted.tiny {
  font-size: 10px;
}
