:root {
  --bg-color: #050505;
  --bg-secondary: #0a0a0a;
  --bg-panel: rgba(15, 15, 15, 0.7);
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  
  /* Brand Colors */
  --primary: #E8162D; /* F1 Red */
  --primary-glow: rgba(232, 22, 45, 0.5);
  --secondary: #FF6B00;
  --gold: #FFD700;
  --cyan: #00E5FF;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --grad-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  --grad-dark: linear-gradient(180deg, transparent 0%, #050505 100%);
  
  /* UI */
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-glow: rgba(232, 22, 45, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  /* Fonts */
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --trans-fast: 0.2s ease;
  --trans-base: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --trans-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--primary);
  color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-color);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity var(--trans-slow);
}

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

.loader-inner {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.loader-ring {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--primary);
  border-bottom-color: var(--primary);
  animation: spin 1.5s linear infinite;
}

.loader-ring-2 {
  width: 120px;
  height: 120px;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: var(--gold);
  border-right-color: var(--gold);
  animation: spin-reverse 1s linear infinite;
}

.loader-coin-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px var(--primary-glow);
  margin-top: 180px;
}

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes spin-reverse { 100% { transform: rotate(-360deg); } }

/* Cursor */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
  box-shadow: 0 0 10px var(--primary);
}

.cursor-trail {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(232, 22, 45, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}

.cursor.hovering { transform: translate(-50%, -50%) scale(0); }
.cursor-trail.hovering {
  width: 60px;
  height: 60px;
  border-color: var(--primary);
  background: rgba(232, 22, 45, 0.1);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: background var(--trans-base), padding var(--trans-base);
  backdrop-filter: blur(0px);
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 15px var(--primary-glow);
}

.nav-logo-text .accent { color: var(--primary); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: color var(--trans-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--trans-fast);
}

.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  background: var(--grad-primary);
  color: #fff;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--primary-glow);
}

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

.hamburger span {
  width: 30px;
  height: 2px;
  background: var(--text-main);
  transition: var(--trans-fast);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--bg-color);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right var(--trans-base);
}

.mobile-menu.active { right: 0; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin-bottom: 30px; }

.mob-link {
  color: var(--text-main);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mob-cta {
  display: inline-block;
  color: var(--primary);
  margin-top: 20px;
}

/* Sections Base */
.section {
  padding: 120px 0;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.section-tag {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 60px;
}

/* Buttons */
.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px var(--primary-glow);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background var(--trans-fast), border-color var(--trans-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-color) 0%, rgba(5,5,5,0.6) 50%, var(--bg-color) 100%),
              linear-gradient(0deg, var(--bg-color) 0%, transparent 50%, var(--bg-color) 100%);
  z-index: 1;
  opacity: 0.2;
}

.speed-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0%, transparent 49%, rgba(255,255,255,0.03) 50%, transparent 51%, transparent 100%);
  background-size: 100px 100%;
  z-index: 1;
  opacity: 0.5;
  animation: moveLines 2s linear infinite;
}

@keyframes moveLines { 0% { background-position: 0 0; } 100% { background-position: 100px 0; } }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 22, 45, 0.1);
  border: 1px solid var(--border-glow);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 30px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 22, 45, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(232, 22, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 22, 45, 0); }
}

.hero-title {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.title-line-1, .title-line-2, .title-line-3 {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
}

.title-line-2 { animation-delay: 0.2s; }
.title-line-3 { animation-delay: 0.4s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: flex-start;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.stat-card {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  background: var(--border-subtle);
  height: 40px;
  align-self: center;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: flex-start;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

.hero-contract {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 15px;
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}

.contract-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contract-addr {
  font-family: monospace;
  color: var(--gold);
  font-weight: bold;
}

.copy-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  transition: color var(--trans-fast);
}

.copy-btn:hover { color: var(--primary); }

.hero-coin-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeInScale 1s 0.5s forwards;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.hero-coin {
  width: 400px;
  height: 400px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(232, 22, 45, 0.4));
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.coin-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 1;
  filter: blur(40px);
  animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
  from { transform: scale(1); opacity: 0.2; }
  to { transform: scale(1.2); opacity: 0.4; }
}

.coin-orbit {
  position: absolute;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 50%;
  z-index: 1;
}

.coin-orbit-1 {
  width: 450px;
  height: 450px;
  animation: spin 20s linear infinite;
}

.coin-orbit-2 {
  width: 550px;
  height: 550px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(232, 22, 45, 0.1) transparent;
  animation: spin-reverse 30s linear infinite;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeUp 1s 1.5s forwards;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(15px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* Ticker Tape */
.ticker-wrap {
  width: 100%;
  background: var(--primary);
  padding: 15px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transform: rotate(-2deg);
  margin-top: -20px;
  position: relative;
  z-index: 10;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  padding: 0 40px;
  text-transform: uppercase;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.about-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  transition: transform var(--trans-base), box-shadow var(--trans-base), border-color var(--trans-base);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans-base);
}

.about-card:hover {
  transform: translateY(-10px);
  border-color: rgba(232, 22, 45, 0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.about-card:hover::before { transform: scaleX(1); }

.about-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.about-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.token-chart-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.donut-svg {
  width: 100%;
  height: auto;
  transform: rotate(-90deg);
}

.donut-segment {
  fill: transparent;
  stroke-width: 30;
  stroke-dasharray: 0 1000;
  transition: stroke-dasharray 1.5s ease-out;
  cursor: pointer;
}

.donut-segment:hover {
  stroke-width: 35;
  filter: drop-shadow(0 0 10px currentColor);
}

.donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.donut-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
}

.donut-label {
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 2px;
}

.token-breakdown {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.token-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: center;
  padding: 15px;
  background: var(--bg-panel);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  transition: transform var(--trans-fast);
}

.token-item:hover { transform: translateX(10px); border-color: rgba(255,255,255,0.2); }

.token-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.token-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.token-name { font-weight: 600; }
.token-pct { font-family: monospace; font-size: 1.1rem; color: #fff; }

.token-bar-wrap {
  grid-column: 2;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.token-bar {
  height: 100%;
  width: 0;
  background: var(--c);
  transition: width 1.5s ease-out;
}

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

.tax-card {
  background: linear-gradient(180deg, rgba(20,20,20,0.8) 0%, rgba(10,10,10,0.8) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
}

.tax-icon { font-size: 2rem; margin-bottom: 15px; }
.tax-val { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 5px; }
.tax-label { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; }

/* Roadmap Section */
.roadmap-section {
  background: var(--bg-secondary);
}

.race-track-wrap {
  position: relative;
  margin-top: 80px;
  padding-left: 50px;
}

.race-track-line {
  position: absolute;
  top: 0;
  left: 20px;
  width: 4px;
  height: 100%;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}

.race-track-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--grad-primary);
  transition: height 0.5s;
  /* Updated by JS */
}

.race-car-anim {
  position: absolute;
  left: -2px;
  top: 0;
  font-size: 2rem;
  transform: translateX(-50%);
  z-index: 10;
  transition: top 0.5s ease-out;
}

.roadmap-phases {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.phase-card {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 40px;
  margin-left: 20px;
  transition: transform var(--trans-base);
}

.phase-card::before {
  content: '';
  position: absolute;
  top: 40px;
  left: -40px;
  width: 20px;
  height: 2px;
  background: var(--border-subtle);
}

.phase-card:hover { transform: translateX(10px); }

.phase-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.done-badge { background: rgba(0, 255, 100, 0.1); color: #00ff64; border: 1px solid rgba(0, 255, 100, 0.2); }
.active-badge { background: rgba(232, 22, 45, 0.1); color: var(--primary); border: 1px solid var(--border-glow); box-shadow: 0 0 10px rgba(232, 22, 45, 0.3); }
.pending-badge { background: rgba(255, 255, 255, 0.05); color: var(--text-muted); border: 1px solid var(--border-subtle); }

.phase-num {
  font-family: var(--font-heading);
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 5px;
}

.phase-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.phase-list {
  list-style: none;
}

.phase-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: var(--text-muted);
}

.phase-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.phase-done .phase-list li { color: #fff; }
.phase-pending .phase-list li::before { content: '○'; color: var(--text-muted); }



/* Community Section */
.community-section { background: var(--bg-secondary); }

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.social-card {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform var(--trans-base);
}

.social-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.2;
  transition: opacity var(--trans-base), transform var(--trans-base);
}

.tg-bg { background: #0088cc; }
.tw-bg { background: #1da1f2; }
.dc-bg { background: #5865F2; }
.dx-bg { background: var(--cyan); }

.social-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.2); }
.social-card:hover .social-bg { opacity: 0.5; transform: scale(1.5); }

.social-icon { font-size: 2.5rem; margin-bottom: 20px; position: relative; z-index: 2; }
.social-name { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin-bottom: 5px; position: relative; z-index: 2; }
.social-members { color: var(--text-muted); font-size: 0.9rem; position: relative; z-index: 2; }
.social-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 1.5rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--trans-fast);
}

.social-card:hover .social-arrow { opacity: 1; transform: translateX(0); }

.community-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 60px;
}

.cstat { text-align: center; }
.cstat-num { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.cstat-label { color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* Footer */
.footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 20px 30px;
  background: #000;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-name { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; margin-left: 10px; vertical-align: middle; }
.footer-logo { width: 40px; vertical-align: middle; }
.footer-tagline { color: var(--text-muted); margin: 20px 0; line-height: 1.5; }
.footer-socials { display: flex; gap: 15px; }
.fsoc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: background var(--trans-fast);
}
.fsoc:hover { background: var(--primary); }

.footer-links-group h4 { margin-bottom: 20px; color: #fff; }
.footer-links-group a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color var(--trans-fast);
}
.footer-links-group a:hover { color: var(--primary); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-disclaimer { margin-bottom: 15px; max-width: 800px; margin: 0 auto 20px; line-height: 1.5; }

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-title { font-size: 4rem; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-badge { margin: 0 auto 30px; }
  .hero-stats, .hero-buttons { justify-content: center; }
  .hero-coin-wrap { order: -1; margin-bottom: 40px; }
  .hero-coin { width: 300px; height: 300px; }
  .coin-orbit-1 { width: 350px; height: 350px; }
  .coin-orbit-2 { width: 450px; height: 450px; }
  
  .tokenomics-layout { grid-template-columns: 1fr; }
  .tax-grid { grid-template-columns: repeat(2, 1fr); }
  .community-stats { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; z-index: 1000; }
  .hero-title { font-size: 3rem; }
  .section-title { font-size: 2.5rem; }
  
  .footer-top { grid-template-columns: 1fr; }
}
