/* ==============================
   CSS VARIABLES & RESET
   ============================== */
:root {
  --black: #000000;
  --dark: #0a0a0f;
  --darker: #050508;
  --gold: #d4a845;
  --gold-light: #f0d080;
  --gold-glow: rgba(212, 168, 69, 0.4);
  --gold-glow-strong: rgba(212, 168, 69, 0.7);
  --neon: #39ff14;
  --white: #ffffff;
  --gray: #a0a0b0;
  --gray-dark: #2a2a3a;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-height: 72px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: auto;
}

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

ul { list-style: none; }

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

section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section {
  padding: 100px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.gold-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 32px;
  box-shadow: 0 0 20px var(--gold-glow);
}

/* ==============================
   LOADING SCREEN
   ============================== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 120px;
  margin: 0 auto 24px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

.loader-bar-wrapper {
  width: 240px;
  height: 3px;
  background: var(--gray-dark);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 16px;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: loaderFill 2s ease-in-out forwards;
  box-shadow: 0 0 20px var(--gold-glow);
}

@keyframes loaderFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 6px;
  color: var(--gold);
  animation: loaderTextPulse 1.2s ease-in-out infinite;
}

@keyframes loaderTextPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ==============================
   CURSOR GLOW
   ============================== */
#cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,69,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* ==============================
   PARTICLES CANVAS
   ============================== */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ==============================
   NAVBAR
   ============================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: var(--nav-height);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.6), 0 0 40px rgba(212,168,69,0.03);
}

#navbar.scrolled .nav-inner {
  border-bottom: 1px solid rgba(212, 168, 69, 0.05);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.nav-logo span {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 1.5px;
  color: var(--gray);
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--gold-glow);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gray-dark);
  color: var(--gray);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-2px);
}

.btn-nav-buy {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--gold), #b8922e);
  color: var(--black);
  border-radius: 4px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px var(--gold-glow);
}

.btn-nav-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--gold-glow-strong);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==============================
   HERO SECTION
   ============================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212,168,69,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(57,255,20,0.03) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(255,32,64,0.03) 0%, transparent 40%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-logo-wrapper {
  margin-bottom: 32px;
}

.hero-logo {
  width: clamp(180px, 35vw, 360px);
  margin: 0 auto;
  animation: heroFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(212,168,69,0.3)) drop-shadow(0 0 80px rgba(212,168,69,0.1));
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: 6px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--white);
}

.glow-text {
  text-shadow:
    0 0 20px rgba(212,168,69,0.3),
    0 0 40px rgba(212,168,69,0.2),
    0 0 80px rgba(212,168,69,0.1);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(212,168,69,0.3), 0 0 40px rgba(212,168,69,0.2), 0 0 80px rgba(212,168,69,0.1); }
  50% { text-shadow: 0 0 30px rgba(212,168,69,0.5), 0 0 60px rgba(212,168,69,0.3), 0 0 100px rgba(212,168,69,0.15); }
}

.hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  letter-spacing: 2px;
  color: var(--gold);
  margin: 0 auto 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-desc {
  font-size: clamp(0.85rem, 1.3vw, 1.05rem);
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-ca {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-ca code {
  font-family: 'Courier New', monospace;
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  color: var(--gray);
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--gray-dark);
  border-radius: 6px;
  padding: 8px 16px;
  display: inline-block;
  word-break: break-all;
  max-width: 100%;
  user-select: all;
}

.hero-ca-copy {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  padding: 4px;
}

.hero-ca-copy:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.hero-ca-copy.copied {
  color: var(--neon);
}

.btn-primary,
.btn-secondary {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 2px;
  padding: 14px 36px;
  border-radius: 4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #b8922e);
  color: var(--black);
  box-shadow: 0 0 30px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px var(--gold-glow-strong), 0 10px 30px rgba(0,0,0,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow: 0 0 15px var(--gold-glow);
}

.btn-secondary:hover {
  background: rgba(212, 168, 69, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 0 40px var(--gold-glow-strong);
}

/* ==============================
   ABOUT SECTION
   ============================== */
#about {
  background: linear-gradient(180deg, var(--black) 0%, var(--darker) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-lead {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 20px;
}

.about-card-glow {
  display: grid;
  gap: 20px;
}

.about-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(212,168,69,0.03), transparent, rgba(212,168,69,0.03), transparent);
  animation: cardRotateGlow 6s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-card:hover::before {
  opacity: 1;
}

@keyframes cardRotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about-card:hover {
  border-color: rgba(212, 168, 69, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(212,168,69,0.05), 0 10px 40px rgba(0,0,0,0.3);
}

.about-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 8px;
}

.about-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==============================
   TOKENOMICS SECTION
   ============================== */
#tokenomics {
  background: var(--darker);
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tokenomics-img {
  width: 100%;
}

.tokenomics-total {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 32px;
}

.token-cards {
  display: grid;
  gap: 16px;
}

.token-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.4s ease;
}

.token-card:hover {
  border-color: rgba(212, 168, 69, 0.3);
  transform: translateX(6px);
  box-shadow: 0 0 30px rgba(212,168,69,0.05);
}

.token-card-circle {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.token-card-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.token-card-circle .bg {
  fill: none;
  stroke: var(--gray-dark);
  stroke-width: 6;
}

.token-card-circle .fg {
  fill: none;
  stroke: var(--gold);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 314.16;
  stroke-dashoffset: 314.16;
  transition: stroke-dashoffset 1.5s ease;
}

.token-card.animated .fg {
  stroke-dashoffset: calc(314.16 - (314.16 * var(--pct) / 100));
}

.token-card-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
}

.token-card-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}

.token-card-info p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ==============================
   TREASURY SECTION
   ============================== */
#treasury {
  background: linear-gradient(180deg, var(--darker) 0%, var(--black) 100%);
}

.treasury-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.treasury-content .gold-divider {
  margin: 16px auto 32px;
}

.treasury-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.treasury-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212,168,69,0.2), transparent, rgba(57,255,20,0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.treasury-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 60px rgba(212,168,69,0.05);
}

.treasury-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
  animation: shieldPulse 2s ease-in-out infinite;
}

@keyframes shieldPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

.treasury-label {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}

.treasury-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--gray-dark);
  border-radius: 8px;
  padding: 12px 20px;
  margin-bottom: 20px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.treasury-address code {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--neon);
  word-break: break-all;
}

.btn-copy {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btn-copy:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.btn-copy.copied {
  color: var(--neon);
}

.treasury-note {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.treasury-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--neon);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border: 1px solid rgba(57, 255, 20, 0.2);
  border-radius: 20px;
  background: rgba(57, 255, 20, 0.05);
  animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(57,255,20,0.1); }
  50% { box-shadow: 0 0 20px rgba(57,255,20,0.2); }
}

.treasury-solscan {
  padding: 8px 22px;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  gap: 6px;
  margin-top: 16px;
}

/* ==============================
   ROADMAP SECTION
   ============================== */
#roadmap {
  background: var(--darker);
  overflow: hidden;
}

#roadmap .section-title,
#roadmap .gold-divider {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.roadmap-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold), var(--gold), transparent);
  transform: translateX(-50%);
  box-shadow: 0 0 20px var(--gold-glow);
}

.roadmap-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.roadmap-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.roadmap-item:nth-child(odd) {
  flex-direction: row;
}

.roadmap-item:nth-child(even) {
  flex-direction: row-reverse;
}

.roadmap-dot {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px var(--gold-glow), 0 0 40px var(--gold-glow);
  z-index: 2;
  transition: all 0.3s ease;
}

.roadmap-item:hover .roadmap-dot {
  transform: translateX(-50%) scale(1.5);
  box-shadow: 0 0 40px var(--gold-glow-strong), 0 0 80px var(--gold-glow-strong);
}

.roadmap-card {
  width: calc(50% - 40px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.4s ease;
  position: relative;
}

.roadmap-item:nth-child(odd) .roadmap-card {
  margin-right: auto;
}

.roadmap-item:nth-child(even) .roadmap-card {
  margin-left: auto;
}

.roadmap-card:hover {
  border-color: rgba(212, 168, 69, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(212,168,69,0.05);
}

.roadmap-phase {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 4px;
}

.roadmap-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}

.roadmap-target {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.roadmap-card ul {
  list-style: disc;
  padding-left: 20px;
}

.roadmap-card ul li {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.8;
}

/* ==============================
   FEES / UTILITIES SECTION
   ============================== */
#fees {
  background: linear-gradient(180deg, var(--black) 0%, var(--darker) 100%);
}

#fees .section-title,
#fees .gold-divider,
#fees .fees-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.fees-intro {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.fees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fee-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.fee-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,168,69,0.03), transparent);
  transition: left 0.6s ease;
}

.fee-card:hover::after {
  left: 100%;
}

.fee-card:hover {
  border-color: rgba(212, 168, 69, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(212,168,69,0.05), 0 15px 40px rgba(0,0,0,0.3);
}

.fee-icon-wrapper {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fee-icon {
  font-size: 2.2rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.fee-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,69,0.15), transparent 70%);
  animation: feeGlowPulse 2s ease-in-out infinite;
}

@keyframes feeGlowPulse {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

.fee-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 8px;
}

.fee-card p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ==============================
   COMMUNITY SECTION
   ============================== */
#community {
  background: linear-gradient(180deg, var(--darker) 0%, var(--black) 100%);
  position: relative;
  overflow: hidden;
}

#community::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,69,0.03), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: communityGlow 4s ease-in-out infinite;
}

@keyframes communityGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.community-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.community-content .gold-divider {
  margin-left: auto;
  margin-right: auto;
}

.community-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 4px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.community-text {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 36px;
}

.community-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-community {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 2px;
  padding: 14px 36px;
  border-radius: 4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-community.telegram {
  background: linear-gradient(135deg, #0088cc, #006699);
  color: white;
  box-shadow: 0 0 30px rgba(0, 136, 204, 0.3);
}

.btn-community.telegram:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(0, 136, 204, 0.5);
}

.btn-community.twitter {
  background: linear-gradient(135deg, var(--black), #1a1a2e);
  color: var(--white);
  border: 2px solid var(--gray-dark);
}

.btn-community.twitter:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(212,168,69,0.2);
}

/* ==============================
   FOOTER
   ============================== */
#footer {
  background: var(--darker);
  padding: 60px 0 30px;
  position: relative;
}

.footer-gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 40px;
  box-shadow: 0 0 30px var(--gold-glow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 48px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: var(--gray);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--gold);
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.footer-social-icons .social-icon {
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--gray-dark);
}

.footer-bottom p {
  color: var(--gray);
  font-size: 0.8rem;
}

/* ==============================
   REVEAL ANIMATION
   ============================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   MOBILE RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
  .about-grid,
  .tokenomics-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tokenomics-image {
    order: -1;
  }

  .fees-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  #navbar {
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-dark);
  }

  .hamburger {
    display: flex;
  }

  .social-icon {
    display: none;
  }

  .btn-nav-buy {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .about-grid,
  .tokenomics-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fees-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-item:nth-child(odd),
  .roadmap-item:nth-child(even) {
    flex-direction: row;
    padding-left: 30px;
  }

  .roadmap-line {
    left: 8px;
  }

  .roadmap-dot {
    left: 8px;
  }

  .roadmap-card {
    width: 100%;
  }

  .roadmap-item:nth-child(odd) .roadmap-card,
  .roadmap-item:nth-child(even) .roadmap-card {
    margin: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-logo {
    width: 96px;
    margin: 0 auto 12px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .hero-sub {
    white-space: normal;
    max-width: 90%;
  }

  .section-title {
    text-align: center;
  }

  .gold-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .token-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  #navbar {
    background: rgba(5, 5, 8, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .section {
    padding: 60px 0;
  }

  .hero-logo {
    width: 300px;
  }

  .hero-sub {
    white-space: normal;
    max-width: 90%;
  }

  .footer-logo {
    width: 96px;
    margin: 0 auto 12px;
  }

  .section-title {
    text-align: center;
  }

  .gold-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .treasury-address {
    flex-direction: column;
    gap: 8px;
  }
}

/* ==============================
   SMOOTH SCROLL
   ============================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
