/* ============================================
   ANTONYM BLOCKCHAIN — Dark Crypto Theme
   ============================================ */

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #161622;
  --bg-card-hover: #1c1c2e;
  --border: #2a2a3e;
  --accent-cyan: #00f0ff;
  --accent-purple: #a855f7;
  --accent-green: #00ff88;
  --accent-red: #ff4444;
  --accent-orange: #ff8800;
  --accent-blue: #3b82f6;
  --accent-pink: #ff0080;
  --text-primary: #e8e8f0;
  --text-secondary: #8888a0;
  --text-muted: #555570;
  --gradient-main: linear-gradient(135deg, #00f0ff, #a855f7);
  --gradient-fire: linear-gradient(135deg, #ff4444, #ff8800);
  --gradient-water: linear-gradient(135deg, #3b82f6, #00f0ff);
  --gradient-grass: linear-gradient(135deg, #00ff88, #22c55e);
  --glow-cyan: 0 0 30px rgba(0, 240, 255, 0.3);
  --glow-purple: 0 0 30px rgba(168, 85, 247, 0.3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--accent-cyan); text-decoration: none; transition: all 0.3s; }
a:hover { color: #fff; }

/* ---- Animated Background ---- */
.bg-grid {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(0,240,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,240,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.bg-orb-1 {
  width: 600px; height: 600px;
  background: rgba(0, 240, 255, 0.08);
  top: -200px; right: -200px;
  animation: float-orb 20s ease-in-out infinite;
}

.bg-orb-2 {
  width: 500px; height: 500px;
  background: rgba(168, 85, 247, 0.08);
  bottom: -100px; left: -200px;
  animation: float-orb 25s ease-in-out infinite reverse;
}

.bg-orb-3 {
  width: 400px; height: 400px;
  background: rgba(0, 255, 136, 0.05);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: float-orb 30s ease-in-out infinite;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(50px, -30px); }
  50% { transform: translate(-20px, 50px); }
  75% { transform: translate(30px, 20px); }
}

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.navbar-brand .logo-icon {
  width: 36px; height: 36px;
  background: var(--gradient-main);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: #000;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar-links a:hover { color: #fff; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-main);
  color: #000;
  font-weight: 700;
}

.btn-primary:hover {
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
  color: #000;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.btn-secondary:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; border-radius: 12px; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }

/* ---- Hero ---- */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 240, 255, 0.1); }
  50% { box-shadow: 0 0 40px rgba(0, 240, 255, 0.2); }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-fire {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 800px;
  width: 100%;
}

.hero-stat {
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.hero-stat:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-4px);
}

.hero-stat .number {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- Ticker Bar ---- */
.ticker-bar {
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  gap: 3rem;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.ticker-item .symbol {
  color: var(--accent-cyan);
}

.ticker-item .price {
  color: var(--accent-green);
}

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

/* ---- Sections ---- */
.section {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.15);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ---- Feature Cards ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.15);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- Tokenomics ---- */
.tokenomics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.token-chart {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.token-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent-cyan) 0deg 180deg,
    var(--accent-purple) 180deg 270deg,
    var(--accent-green) 270deg 324deg,
    var(--accent-orange) 324deg 360deg
  );
  padding: 8px;
  animation: spin-slow 60s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.token-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.token-ring-inner .amount {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.token-ring-inner .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.token-details { list-style: none; }

.token-details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.token-details li:last-child { border-bottom: none; }

.token-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.token-details .value {
  margin-left: auto;
  font-weight: 700;
  color: var(--text-primary);
}

/* ---- Monster Cards ---- */
.monsters-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.monster-card {
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.monster-card.fire {
  background: linear-gradient(180deg, rgba(255, 68, 68, 0.1), var(--bg-card));
  border-color: rgba(255, 68, 68, 0.2);
}

.monster-card.water {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.1), var(--bg-card));
  border-color: rgba(59, 130, 246, 0.2);
}

.monster-card.grass {
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.1), var(--bg-card));
  border-color: rgba(0, 255, 136, 0.2);
}

.monster-card:hover { transform: translateY(-8px) scale(1.02); }
.monster-card.fire:hover { box-shadow: 0 20px 60px rgba(255, 68, 68, 0.15); }
.monster-card.water:hover { box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15); }
.monster-card.grass:hover { box-shadow: 0 20px 60px rgba(0, 255, 136, 0.15); }

.monster-emoji {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.monster-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.monster-element {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.monster-element.fire { background: rgba(255,68,68,0.15); color: #ff6666; }
.monster-element.water { background: rgba(59,130,246,0.15); color: #6ea8fe; }
.monster-element.grass { background: rgba(0,255,136,0.15); color: #55ffaa; }

.monster-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

.monster-stat-item {
  padding: 0.5rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}

.monster-stat-item .val {
  font-size: 1.2rem;
  font-weight: 800;
}

.monster-stat-item .lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- Breed Names Grid ---- */
.breed-names-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.breed-name {
  padding: 0.5rem 1.2rem;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: all 0.3s;
  cursor: default;
}

.breed-name:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.breed-name.fire-glow {
  border-color: rgba(255, 68, 68, 0.3);
  color: #ff8888;
}
.breed-name.fire-glow:hover {
  border-color: rgba(255, 68, 68, 0.6);
  box-shadow: 0 8px 20px rgba(255, 68, 68, 0.15);
}

.breed-name.water-glow {
  border-color: rgba(59, 130, 246, 0.3);
  color: #88bbff;
}
.breed-name.water-glow:hover {
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.breed-name.grass-glow {
  border-color: rgba(0, 255, 136, 0.3);
  color: #77ffbb;
}
.breed-name.grass-glow:hover {
  border-color: rgba(0, 255, 136, 0.6);
  box-shadow: 0 8px 20px rgba(0, 255, 136, 0.15);
}

/* ---- Bridge & Liquidity ---- */
.bridge-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.bridge-step {
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.bridge-step:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.3);
}

.bridge-step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bridge-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0.75rem auto 1rem;
  border: 1px solid;
}

.bridge-step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.bridge-step p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bridge-step-tag {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bridge-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-cyan);
  padding-top: 4rem;
  opacity: 0.5;
}

.bridge-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.bridge-detail-card {
  padding: 2rem;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.bridge-detail-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.bridge-detail-example {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bridge-example-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}

.bridge-example-row.highlight-cyan {
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--accent-cyan);
}

.bridge-example-row.highlight-green {
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.2);
  color: var(--accent-green);
  font-size: 1.1rem;
}

.bridge-example-row.highlight-purple {
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: var(--accent-purple);
}

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

.bridge-reverse-flow {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bridge-reverse-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.bridge-reverse-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent-purple);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bridge-assets {
  padding: 2rem;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.bridge-assets-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.bridge-asset {
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.bridge-asset:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-3px);
}

.bridge-asset-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.bridge-asset-name {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.bridge-asset-wrapped {
  font-size: 0.7rem;
  color: var(--accent-cyan);
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

/* ---- Token Launch / Memecoins ---- */
.meme-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: flex-start;
}

.meme-flow-step {
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.meme-flow-step:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.3);
}

.meme-flow-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meme-flow-icon {
  font-size: 2rem;
  margin: 0.5rem 0 0.75rem;
}

.meme-flow-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.meme-flow-step p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.meme-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-cyan);
  padding-top: 3.5rem;
  opacity: 0.5;
}

/* Memecoin Cards */
.meme-examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.meme-coin-card {
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.4s;
  cursor: default;
}

.meme-coin-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.meme-coin-card.fire-theme {
  background: linear-gradient(180deg, rgba(255,68,68,0.08), var(--bg-card));
  border-color: rgba(255,68,68,0.2);
}
.meme-coin-card.fire-theme:hover { box-shadow: 0 15px 40px rgba(255,68,68,0.12); }
.meme-coin-card.fire-theme .meme-coin-symbol { color: #ff6666; }

.meme-coin-card.purple-theme {
  background: linear-gradient(180deg, rgba(168,85,247,0.08), var(--bg-card));
  border-color: rgba(168,85,247,0.2);
}
.meme-coin-card.purple-theme:hover { box-shadow: 0 15px 40px rgba(168,85,247,0.12); }
.meme-coin-card.purple-theme .meme-coin-symbol { color: #a855f7; }

.meme-coin-card.cyan-theme {
  background: linear-gradient(180deg, rgba(0,240,255,0.08), var(--bg-card));
  border-color: rgba(0,240,255,0.2);
}
.meme-coin-card.cyan-theme:hover { box-shadow: 0 15px 40px rgba(0,240,255,0.12); }
.meme-coin-card.cyan-theme .meme-coin-symbol { color: #00f0ff; }

.meme-coin-card.green-theme {
  background: linear-gradient(180deg, rgba(0,255,136,0.08), var(--bg-card));
  border-color: rgba(0,255,136,0.2);
}
.meme-coin-card.green-theme:hover { box-shadow: 0 15px 40px rgba(0,255,136,0.12); }
.meme-coin-card.green-theme .meme-coin-symbol { color: #00ff88; }

.meme-coin-card.orange-theme {
  background: linear-gradient(180deg, rgba(255,136,0,0.08), var(--bg-card));
  border-color: rgba(255,136,0,0.2);
}
.meme-coin-card.orange-theme:hover { box-shadow: 0 15px 40px rgba(255,136,0,0.12); }
.meme-coin-card.orange-theme .meme-coin-symbol { color: #ff8800; }

.meme-coin-card.pink-theme {
  background: linear-gradient(180deg, rgba(255,0,128,0.08), var(--bg-card));
  border-color: rgba(255,0,128,0.2);
}
.meme-coin-card.pink-theme:hover { box-shadow: 0 15px 40px rgba(255,0,128,0.12); }
.meme-coin-card.pink-theme .meme-coin-symbol { color: #ff0080; }

.meme-coin-logo {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.meme-coin-symbol {
  font-size: 1.3rem;
  font-weight: 900;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 0.1rem;
}

.meme-coin-name {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.meme-coin-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.meme-coin-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
}

.meme-coin-pair {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent-cyan);
  font-weight: 600;
}

/* ATM Benefit Section */
.meme-atm-benefit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,240,255,0.04), rgba(168,85,247,0.04));
  border: 1px solid rgba(0,240,255,0.12);
}

.meme-benefit-left h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.meme-benefit-left > p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.meme-benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.meme-benefit-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.meme-check {
  color: var(--accent-green);
  font-weight: 800;
  flex-shrink: 0;
}

.meme-benefit-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.meme-benefit-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.meme-benefit-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.meme-token-tag {
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-primary);
}

.meme-benefit-arrow-down {
  font-size: 1rem;
  color: var(--accent-cyan);
  opacity: 0.6;
  font-weight: 600;
}

.meme-benefit-atm-box {
  padding: 1rem 2rem;
  border-radius: 12px;
  background: rgba(0, 240, 255, 0.06);
  border: 2px solid rgba(0, 240, 255, 0.25);
  text-align: center;
}

.meme-atm-symbol {
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.meme-atm-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meme-benefit-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  background: rgba(0, 255, 136, 0.06);
  border: 1px solid rgba(0, 255, 136, 0.2);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--accent-green);
}

/* ---- Developer Platform ---- */
.dev-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: flex-start;
}

.dev-hero-card {
  padding: 2rem;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}

.dev-hero-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.dev-hero-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.dev-hero-label {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dev-hero-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.dev-hero-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-cyan);
  padding-top: 3rem;
  opacity: 0.5;
}

.dev-build-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.dev-build-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.dev-build-card:hover {
  border-color: rgba(0, 240, 255, 0.2);
  transform: translateY(-2px);
}

.dev-build-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.dev-build-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.dev-build-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Flywheel */
.dev-flywheel {
  margin-top: 3rem;
  padding: 2.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0,240,255,0.04), rgba(168,85,247,0.04));
  border: 1px solid rgba(0, 240, 255, 0.12);
  text-align: center;
}

.dev-flywheel h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.dev-flywheel-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.flywheel-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.flywheel-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  width: 100%;
  transition: all 0.3s;
}

.flywheel-step:hover {
  border-color: rgba(0, 240, 255, 0.3);
}

.flywheel-step.highlight {
  background: rgba(0, 240, 255, 0.06);
  border-color: rgba(0, 240, 255, 0.25);
  font-weight: 700;
  color: var(--accent-cyan);
}

.flywheel-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: #000;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flywheel-arrow {
  font-size: 1.2rem;
  color: var(--accent-cyan);
  opacity: 0.4;
}

/* Dev Stats */
.dev-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.dev-stat {
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}

.dev-stat:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-3px);
}

.dev-stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.dev-stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.dev-stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Gaming Advantage */
.dev-advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.dev-advantage-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.dev-advantage-item:hover {
  border-color: rgba(0, 240, 255, 0.2);
}

.dev-advantage-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.dev-advantage-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.dev-advantage-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---- Roadmap ---- */
.roadmap {
  position: relative;
  padding-left: 3rem;
}

.roadmap::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple), var(--accent-green));
}

.roadmap-item {
  position: relative;
  padding: 0 0 3rem 2rem;
}

.roadmap-item:last-child { padding-bottom: 0; }

.roadmap-dot {
  position: absolute;
  left: -2.5rem;
  top: 0.3rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 3px solid var(--accent-cyan);
  background: var(--bg-primary);
}

.roadmap-item.active .roadmap-dot {
  background: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.roadmap-item.future .roadmap-dot {
  border-color: var(--text-muted);
}

.roadmap-phase {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  margin-bottom: 0.3rem;
}

.roadmap-item.future .roadmap-phase { color: var(--text-muted); }

.roadmap-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.roadmap-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- Tech Stack ---- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.tech-card {
  padding: 1.5rem;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}

.tech-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-3px);
}

.tech-card .tech-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.tech-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.tech-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- CTA Section ---- */
.cta-section {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6rem 2rem;
  margin: 4rem 2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0,240,255,0.05), rgba(168,85,247,0.05));
  border: 1px solid rgba(0,240,255,0.15);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Footer ---- */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer a { color: var(--text-secondary); }
.footer a:hover { color: var(--accent-cyan); }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

/* ---- Code Block ---- */
.code-block {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.85rem;
  overflow-x: auto;
  margin-top: 2rem;
}

.code-block .comment { color: var(--text-muted); }
.code-block .keyword { color: var(--accent-purple); }
.code-block .string { color: var(--accent-green); }
.code-block .number { color: var(--accent-orange); }
.code-block .fn { color: var(--accent-cyan); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .monsters-showcase { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .tokenomics-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .navbar-links { gap: 1rem; }
  .navbar-links a.nav-hide-mobile { display: none; }
  .bridge-flow {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .bridge-arrow {
    padding-top: 0;
    transform: rotate(90deg);
    font-size: 1.2rem;
  }
  .bridge-details-grid { grid-template-columns: 1fr; }
  .bridge-assets-grid { grid-template-columns: repeat(3, 1fr); }
  .dev-hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .dev-hero-arrow {
    padding-top: 0;
    transform: rotate(90deg);
    font-size: 1.2rem;
  }
  .dev-build-grid { grid-template-columns: 1fr; }
  .dev-stats-row { grid-template-columns: 1fr; }
  .dev-advantage-grid { grid-template-columns: 1fr; }
  .meme-flow {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .meme-flow-arrow {
    padding-top: 0;
    transform: rotate(90deg);
    font-size: 1.2rem;
  }
  .meme-examples-grid { grid-template-columns: 1fr 1fr; }
  .meme-atm-benefit { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .navbar { padding: 0.8rem 1rem; }
  .bridge-assets-grid { grid-template-columns: repeat(2, 1fr); }
  .meme-examples-grid { grid-template-columns: 1fr; max-width: 350px; margin-left: auto; margin-right: auto; }
}

/* ---- Coin Animations ---- */
@keyframes coin-spin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

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

@keyframes coin-glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(255, 170, 0, 0.4)) drop-shadow(0 0 30px rgba(255, 136, 0, 0.2)); }
  50% { filter: drop-shadow(0 0 25px rgba(255, 170, 0, 0.7)) drop-shadow(0 0 50px rgba(255, 136, 0, 0.4)); }
}

@keyframes coin-entrance {
  0% { opacity: 0; transform: scale(0.5) rotate(-20deg); }
  60% { transform: scale(1.1) rotate(5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.hero-coin-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  perspective: 800px;
}

.hero-coin {
  width: 160px;
  height: 160px;
  animation: coin-entrance 0.8s ease-out, coin-float 4s ease-in-out infinite;
  animation-delay: 0s, 0.8s;
  animation-fill-mode: backwards, none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero-coin:hover {
  animation-play-state: paused, paused;
  transform: scale(1.15) rotate(0deg);
}

.hero-coin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  animation: coin-glow-pulse 3s ease-in-out infinite;
}

.hero-coin:nth-child(2) {
  animation-delay: 0.2s, 1s;
}

.hero-coin:nth-child(2) img {
  animation-delay: 0.5s;
}

.hero-coin-label {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Spinning coin for tokenomics */
.token-coin-spin {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  perspective: 800px;
}

.token-coin-spin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  animation: coin-spin 6s linear infinite, coin-glow-pulse 3s ease-in-out infinite;
}

.token-coin-spin:hover img {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .hero-coin-container { gap: 1rem; }
  .hero-coin { width: 110px; height: 110px; }
  .token-coin-spin { width: 150px; height: 150px; }
}
