

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--gold4); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 40px rgba(255,215,0,0.08);
  border-bottom: 1px solid rgba(255,215,0,0.1);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #FFD700, #B8860B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--dark);
  box-shadow: 0 0 20px rgba(255,215,0,0.4);
  position: relative;
  overflow: hidden;
}
.brand-logo::after {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  animation: shine 3s infinite;
}
@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text span:first-child {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}
.brand-text span:last-child {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px !important;
  transition: all 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link:hover { color: var(--gold) !important; }
.btn-nav-cta {
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: var(--dark) !important;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 24px !important;
  border-radius: 4px;
  border: none;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
}
.btn-nav-cta:hover {
  background: linear-gradient(135deg, #fff, #FFD700);
  box-shadow: 0 6px 30px rgba(255,215,0,0.5);
  transform: translateY(-1px);
}
.navbar-toggler {
  border: 1px solid rgba(255,215,0,0.3);
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,215,0,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 80%, rgba(184,134,11,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 20%, rgba(255,215,0,0.05) 0%, transparent 50%),
              linear-gradient(180deg, #050505 0%, #0a0a0a 50%, #0d0a00 100%);
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,215,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,215,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* Circuit lines */
.circuit-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Floating particles */
.particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.8; transform: scale(1); }
  90% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-120vh) scale(0.5); }
}

/* Glowing orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: orbPulse 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  animation: orbPulse 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,215,0,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: orbPulse 6s ease-in-out infinite;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* Hero coin */
.hero-coin-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-coin {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff8dc, #FFD700 30%, #D4AF37 55%, #8B6914 80%, #3d2e00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: coinFloat 6s ease-in-out infinite, coinSpin 20s linear infinite;
  box-shadow:
    0 0 60px rgba(255,215,0,0.4),
    0 0 120px rgba(255,215,0,0.2),
    inset 0 4px 20px rgba(255,255,255,0.3),
    inset 0 -4px 20px rgba(0,0,0,0.5);
  opacity: 0.12;
}
.hero-coin-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,215,0,0.15);
  animation: ringExpand 3s ease-out infinite;
}
.ring-1 { width: 480px; height: 480px; animation-delay: 0s; }
.ring-2 { width: 580px; height: 580px; animation-delay: 1s; }
.ring-3 { width: 680px; height: 680px; animation-delay: 2s; }
@keyframes ringExpand {
  0% { opacity: 0.6; transform: scale(0.9); }
  100% { opacity: 0; transform: scale(1.1); }
}
@keyframes coinFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes coinSpin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

/* Floating mini coins */
.mini-coin {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff8dc, #FFD700 40%, #D4AF37 70%, #8B6914 100%);
  box-shadow: 0 0 20px rgba(255,215,0,0.3);
  animation: miniCoinFloat linear infinite;
  opacity: 0.7;
  font-family: 'Orbitron', sans-serif;
  font-size: 7px;
  font-weight: 900;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
}
@keyframes miniCoinFloat {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding:50px 20px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 40px;
  padding: 8px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold3);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.hero-title .gold-text {
  background: linear-gradient(135deg, #fff8dc 0%, #FFD700 30%, #D4AF37 60%, #F5C542 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(255,215,0,0.4));
}
.hero-title .dmt-badge {
  display: inline-block;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 8px;
  padding: 4px 16px;
  font-size: 0.55em;
  font-weight: 700;
  color: var(--gold3);
  vertical-align: middle;
  margin-left: 12px;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn-gold {
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: var(--dark);
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(255,215,0,0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #fffde7, #FFD700);
  box-shadow: 0 12px 40px rgba(255,215,0,0.5);
  transform: translateY(-2px);
  color: var(--dark);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 4px;
  border: 1px solid rgba(255,215,0,0.4);
  text-decoration: none;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-gold:hover {
  background: rgba(255,215,0,0.08);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(255,215,0,0.2);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.trust-badge i { color: var(--gold3); }

/* Live Stats */
.hero-stats-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-card-hero {
  background: rgba(255,215,0,0.04);
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: 12px;
  padding: 18px 28px;
  backdrop-filter: blur(20px);
  text-align: center;
  min-width: 140px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.stat-card-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.4), transparent);
}
.stat-card-hero:hover {
  border-color: rgba(255,215,0,0.3);
  box-shadow: 0 0 30px rgba(255,215,0,0.1);
  transform: translateY(-3px);
}
.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 11px;
  color: var(--gray2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Rajdhani', sans-serif;
}

/* Contract address bar */
.contract-bar {
  background: rgba(255,215,0,0.04);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: 8px;
  padding: 14px 24px;
  margin-top: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.contract-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  color: var(--gold3);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.contract-addr {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  word-break: break-all;
}
.copy-btn {
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.2);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
}
.copy-btn:hover { background: rgba(255,215,0,0.2); }

/* ===== SECTION STYLES ===== */
section { padding: 100px 0; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold3);
  margin-bottom: 16px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title span {
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 600px;
}
.divider-gold {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
}

/* ===== LIVE STATS SECTION ===== */
#stats {
  padding: 0 0 80px;
  background: linear-gradient(180deg, transparent, rgba(184,134,11,0.04), transparent);
}
.hex-card {
  position: relative;
  background: rgba(255,215,0,0.04);
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s;
  overflow: hidden;
  clip-path: polygon(0 10%, 10% 0, 90% 0, 100% 10%, 100% 90%, 90% 100%, 10% 100%, 0 90%);
}
.hex-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(255,215,0,0.05) 0%, transparent 70%);
  transition: opacity 0.4s;
  opacity: 0;
}
.hex-card:hover::before { opacity: 1; }
.hex-card:hover {
  border-color: rgba(255,215,0,0.35);
  box-shadow: 0 0 40px rgba(255,215,0,0.12), inset 0 1px 0 rgba(255,215,0,0.15);
  transform: translateY(-5px);
}
.hex-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--gold);
  transition: all 0.3s;
}
.hex-card:hover .hex-icon {
  background: rgba(255,215,0,0.15);
  box-shadow: 0 0 20px rgba(255,215,0,0.2);
}
.hex-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  line-height: 1;
}
.hex-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: var(--gray2);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== ABOUT SECTION ===== */
#about {
  background: radial-gradient(ellipse at 0% 50%, rgba(255,215,0,0.04) 0%, transparent 50%);
}
.about-card {
  background: rgba(255,215,0,0.03);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.about-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.about-card:hover::after { transform: scaleX(1); }
.about-card:hover {
  border-color: rgba(255,215,0,0.25);
  box-shadow: 0 20px 60px rgba(255,215,0,0.08);
  transform: translateY(-4px);
}
.about-card-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.about-card h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold3);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.about-card p, .about-card li {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.about-card ul { padding-left: 0; list-style: none; }
.about-card ul li {
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-card ul li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
}
.info-bar {
  background: rgba(255,215,0,0.04);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: 12px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
}
.info-bar:hover {
  border-color: rgba(255,215,0,0.2);
  background: rgba(255,215,0,0.06);
}
.info-bar-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,215,0,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.info-bar-label {
  font-size: 11px;
  color: var(--gray2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 2px;
}
.info-bar-value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  word-break: break-all;
}

/* ===== FEATURES ===== */
#features {
  background: linear-gradient(180deg, transparent, rgba(20,16,0,0.8), transparent);
}
.feature-card {
  background: rgba(255,215,0,0.03);
  border: 1px solid rgba(255,215,0,0.08);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,215,0,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  border-color: rgba(255,215,0,0.25);
  box-shadow: 0 20px 60px rgba(255,215,0,0.1);
  transform: translateY(-6px) perspective(500px) rotateX(2deg);
}
.feature-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  position: relative;
}
.feature-icon-inner {
  width: 100%;
  height: 100%;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  transition: all 0.4s;
  position: relative;
  z-index: 1;
}
.feature-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(255,215,0,0.1);
  animation: rotateSlow 20s linear infinite;
}
@keyframes rotateSlow {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}
.feature-card:hover .feature-icon-inner {
  background: rgba(255,215,0,0.15);
  box-shadow: 0 0 30px rgba(255,215,0,0.25);
}
.feature-card h5 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ===== STAKING ===== */
#staking {
  background: radial-gradient(ellipse at 100% 50%, rgba(255,215,0,0.05) 0%, transparent 50%);
}
.staking-hero-card {
  background: linear-gradient(135deg, rgba(255,215,0,0.06), rgba(255,215,0,0.02));
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.staking-hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.staking-metric {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}
.staking-metric:hover {
  border-color: rgba(255,215,0,0.25);
  transform: translateY(-3px);
}
.staking-metric-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.staking-metric-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  color: var(--gray2);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.staking-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,215,0,0.06);
}
.staking-step:last-child { border-bottom: none; }
.step-num {
  width: 40px;
  height: 40px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.step-text h6 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold3);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.step-text p {
  font-size: 13px;
  color: var(--gray2);
  line-height: 1.5;
  margin: 0;
}

/* ===== TOKENOMICS ===== */
#tokenomics {
  background: linear-gradient(180deg, transparent, rgba(20,15,0,0.6), transparent);
}
.tokenomics-table {
  background: rgba(255,215,0,0.03);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: 16px;
  overflow: hidden;
}
.ttoken-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255,215,0,0.06);
  transition: all 0.3s;
}
.ttoken-row:last-child { border-bottom: none; }
.ttoken-row:hover { background: rgba(255,215,0,0.04); }
.ttoken-name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
}
.ttoken-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.ttoken-pct {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
}
.ttoken-bar-bg {
  height: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}
.ttoken-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold4), var(--gold));
  transition: width 1.5s ease;
}

.donut-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.donut-center {
  position: absolute;
  text-align: center;
}
.donut-center-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
}
.donut-center-label {
  font-size: 11px;
  color: var(--gray2);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== EXCHANGES ===== */
#exchanges {
  background: radial-gradient(ellipse at 50% 50%, rgba(255,215,0,0.04) 0%, transparent 60%);
}
.exchange-card {
  background: rgba(255,215,0,0.03);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.exchange-card::before {
  content: 'UPCOMING ON';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold3);
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 20px;
  padding: 3px 12px;
  white-space: nowrap;
}
.exchange-card:hover {
  border-color: rgba(255,215,0,0.3);
  box-shadow: 0 20px 60px rgba(255,215,0,0.1);
  transform: translateY(-6px);
}
.exchange-logo {
  width: 64px;
  height: 64px;
  background: rgba(255,215,0,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 36px auto 16px;
  font-size: 28px;
  font-weight: 900;
  font-family: 'Orbitron', sans-serif;
  transition: all 0.3s;
}
.exchange-card:hover .exchange-logo {
  background: rgba(255,215,0,0.12);
  box-shadow: 0 0 20px rgba(255,215,0,0.2);
}
.exchange-card h5 {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.exchange-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  margin-bottom: 12px;
}
.exchange-tags {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}
.exchange-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold3);
  border: 1px solid rgba(255,215,0,0.15);
  border-radius: 3px;
  padding: 2px 8px;
  text-transform: uppercase;
}

/* ===== ROADMAP ===== */
#roadmap {
  background: linear-gradient(180deg, transparent, rgba(15,12,0,0.7), transparent);
}
.roadmap-phase {
  position: relative;
}
.roadmap-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255,215,0,0.3), rgba(255,215,0,0.15), transparent);
  transform: translateX(-50%);
}
.roadmap-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  position: relative;
}
.roadmap-item.right {
  flex-direction: row-reverse;
}
.roadmap-card {
  width: calc(50% - 50px);
  background: rgba(255,215,0,0.03);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: 16px;
  padding: 28px 32px;
  transition: all 0.4s;
  position: relative;
}
.roadmap-card:hover {
  border-color: rgba(255,215,0,0.25);
  box-shadow: 0 20px 60px rgba(255,215,0,0.08);
  transform: translateY(-4px);
}
.roadmap-dot {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255,215,0,0.5);
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 24px;
}
.roadmap-dot.active {
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(255,215,0,0.5); }
  50% { box-shadow: 0 0 30px rgba(255,215,0,0.9), 0 0 60px rgba(255,215,0,0.3); }
}
.phase-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  background: rgba(255,215,0,0.08);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 3px;
  border: 1px solid rgba(255,215,0,0.15);
}
.roadmap-card h5 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.roadmap-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.roadmap-card ul li {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
}
.roadmap-card ul li::before {
  content: '▸';
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
#howitworks {
  background: radial-gradient(ellipse at 50% 100%, rgba(255,215,0,0.05) 0%, transparent 60%);
}
.how-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  position: relative;
  flex-wrap: wrap;
}
.how-connector {
  position: absolute;
  top: 50px;
  width: calc(100% - 200px);
  height: 2px;
  left: 100px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.2), rgba(255,215,0,0.2), transparent);
}
.how-step {
  width: 200px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}
.how-step-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,215,0,0.06);
  border: 1px solid rgba(255,215,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  color: var(--gold);
  transition: all 0.4s;
  position: relative;
}
.how-step-circle::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(255,215,0,0.1);
  animation: rotateSlow 15s linear infinite;
}
.how-step:hover .how-step-circle {
  background: rgba(255,215,0,0.12);
  box-shadow: 0 0 30px rgba(255,215,0,0.25);
  transform: translateY(-5px);
}
.how-step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
}
.how-step h5 {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.how-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ===== TERMS ===== */
#terms {
  background: linear-gradient(180deg, transparent, rgba(15,12,0,0.6), transparent);
}
.terms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.terms-card {
  background: rgba(255,215,0,0.03);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.terms-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), transparent);
}
.terms-card:hover {
  border-color: rgba(255,215,0,0.25);
  box-shadow: 0 15px 50px rgba(255,215,0,0.1);
  transform: translateY(-4px);
}
.terms-num {
  width: 48px;
  height: 48px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}
.terms-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
}
.terms-card h6 {
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.terms-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin: 0;
}

/* ===== FAQ ===== */
#faq {
  background: radial-gradient(ellipse at 30% 50%, rgba(255,215,0,0.04) 0%, transparent 50%);
}
.faq-item {
  background: rgba(255,215,0,0.03);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item.open {
  border-color: rgba(255,215,0,0.25);
  box-shadow: 0 10px 40px rgba(255,215,0,0.08);
}
.faq-question {
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
  transition: all 0.3s;
}
.faq-question:hover { background: rgba(255,215,0,0.03); }
.faq-question-text {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
}
.faq-q-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,215,0,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
}
.faq-toggle {
  width: 30px;
  height: 30px;
  background: rgba(255,215,0,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle {
  background: rgba(255,215,0,0.12);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer-inner {
  padding: 0 28px 24px 76px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
#cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,215,0,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(212,175,55,0.1) 0%, transparent 50%),
    linear-gradient(135deg, #0f0c00, #0a0a0a, #0d0800);
}
.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaGlow 4s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%,-50%) scale(1.2); opacity: 1; }
}
#cta .section-title { font-size: clamp(2.2rem, 5vw, 3.5rem); }

/* ===== FOOTER ===== */
footer {
  background: #060606;
  border-top: 1px solid rgba(255,215,0,0.08);
  padding: 80px 0 30px;
}
footer .brand-text span:first-child { font-size: 18px; }
.footer-about {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin: 16px 0;
}
.footer-heading {
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--gold4);
  font-size: 16px;
}
.footer-links a:hover { color: var(--gold3); padding-left: 4px; }
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,215,0,0.06);
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
}
.social-btn:hover {
  background: rgba(255,215,0,0.12);
  border-color: rgba(255,215,0,0.3);
  color: var(--gold);
  transform: translateY(-2px);
}
.newsletter-input-wrap {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.newsletter-input {
  flex: 1;
  background: rgba(255,215,0,0.04);
  border: 1px solid rgba(255,215,0,0.12);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
}
.newsletter-input:focus { border-color: rgba(255,215,0,0.3); }
.newsletter-input::placeholder { color: var(--gray2); }
.newsletter-btn {
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  color: var(--dark);
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.newsletter-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,215,0,0.3); }
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.12), transparent);
  margin: 40px 0 24px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  margin: 0;
}
.footer-tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  color: var(--gold4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== COUNTER ANIMATION ===== */
.count-up { transition: all 0.3s; }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 16px;
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 500;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover { box-shadow: 0 8px 25px rgba(255,215,0,0.4); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .roadmap-line { display: none; }
  .roadmap-item, .roadmap-item.right { flex-direction: column; }
  .roadmap-card { width: 100%; }
  .roadmap-dot { display: none; }
  .terms-grid { grid-template-columns: repeat(2, 1fr); }
  .how-connector { display: none; }
  .how-steps { gap: 20px; }
  .how-step { width: 180px; }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .hero-coin { width: 260px; height: 260px; }
  .ring-1 { width: 340px; height: 340px; }
  .ring-2 { width: 420px; height: 420px; }
  .ring-3 { width: 500px; height: 500px; }
  .staking-hero-card { padding: 28px 20px; }
  .terms-grid { grid-template-columns: 1fr 1fr; }
  .faq-answer-inner { padding-left: 28px; }
  .how-step { width: 100%; max-width: 300px; }
}
@media (max-width: 576px) {
  .terms-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:576px){
    #tv-lightweight-charts{
        width:none !important;
    }
    
}