:root {
  --accent: #14f195;
  --accent-secondary: #9945ff;
  --accent-glow: rgba(20, 241, 149, 0.35);
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: #1a1f35;
  --bg-card-hover: #222845;
  --text-primary: #f0f4ff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border: rgba(148, 163, 184, 0.12);
  --danger: #ff3b3b;
  --gold: #ffd700;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --font-comic: 'Bangers', cursive;
  --font-body: 'Inter', system-ui, sans-serif;
  --anim-speed: 1;
  --gallery-scale: 1;
  --header-h: 72px;
}

[data-theme="light"] {
  --bg-primary: #f0f4ff;
  --bg-secondary: #e2e8f0;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border: rgba(15, 23, 42, 0.1);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

[data-comic-font="false"] {
  --font-comic: var(--font-body);
}

[data-reduced-motion="true"] *,
[data-reduced-motion="true"] *::before,
[data-reduced-motion="true"] *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: crosshair;
}

/* Global FX layers */
.aurora-canvas,
.cursor-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.aurora-canvas.hidden,
.cursor-canvas.hidden { display: none; }

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  transition: opacity 0.3s;
}

.scanlines.active { opacity: 1; }

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: noise-shift 0.5s steps(2) infinite;
}

@keyframes noise-shift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-2%, -1%); }
  100% { transform: translate(1%, 2%); }
}

.spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(20, 241, 149, 0.06), transparent 60%);
  transition: opacity 0.4s;
}

.spotlight.active { opacity: 1; }

main, .header, .footer, .ticker, .settings-panel, .toast {
  position: relative;
  z-index: 2;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Ticker */
.ticker {
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent));
  color: #0a0e1a;
  font-family: var(--font-comic);
  font-size: 0.95rem;
  letter-spacing: 1px;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}

.ticker.hidden { display: none; }

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker calc(30s / var(--anim-speed)) linear infinite;
}

.ticker-track span { flex-shrink: 0; }

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

[data-theme="light"] .header {
  background: rgba(240, 244, 255, 0.9);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  flex-shrink: 0;
}

.logo-img {
  border-radius: 50%;
  border: 2px solid var(--accent);
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-comic);
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  font-family: inherit;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #0a0e1a;
}

.btn-primary:hover {
  box-shadow: 0 0 24px var(--accent-glow);
}

.btn-hero {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: #0a0e1a;
  font-family: var(--font-comic);
  font-size: 1.15rem;
  letter-spacing: 1px;
  padding: 16px 36px;
  border-radius: var(--radius);
}

.btn-hero:hover {
  box-shadow: 0 0 40px var(--accent-glow);
}

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

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

.btn-icon {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
}

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

/* Cool Navbar Buy Button */
.nav-buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px 9px 14px;
  background: linear-gradient(135deg, #14f195 0%, #9945ff 100%);
  color: #0a0e1a;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 9999px;
  border: 2px solid rgba(255,255,255,0.35);
  box-shadow: 
    0 0 0 1px rgba(255,255,255,0.2),
    0 0 24px rgba(20, 241, 149, 0.5),
    0 4px 15px rgba(0, 0, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  animation: buy-btn-pulse 3.5s ease-in-out infinite;
}

@keyframes buy-btn-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.2), 0 0 24px rgba(20, 241, 149, 0.5), 0 4px 15px rgba(0, 0, 0, 0.35); }
  50% { box-shadow: 0 0 0 1px rgba(255,255,255,0.3), 0 0 32px rgba(20, 241, 149, 0.75), 0 4px 18px rgba(0, 0, 0, 0.35); }
}

.nav-buy-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 0 0 1px rgba(255,255,255,0.3),
    0 0 36px rgba(20, 241, 149, 0.7),
    0 0 70px rgba(153, 69, 255, 0.4),
    0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: rgba(255,255,255,0.55);
}

.nav-buy-btn:active {
  transform: scale(0.98);
}

.nav-buy-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.45),
    transparent
  );
  transition: left 0.5s;
}

.nav-buy-btn:hover::before {
  left: 200%;
}

.nav-buy-icon {
  font-size: 1.1rem;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.nav-buy-label {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.nav-buy-main {
  font-family: var(--font-comic);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  font-weight: 900;
}

.nav-buy-sub {
  font-size: 0.65rem;
  opacity: 0.85;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: -1px;
}

/* Hero */
.hero {
  min-height: calc(100vh - var(--header-h) - 36px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
  /* Night city cyberpunk view background from resources */
  background: url('assets/gallery/gallery-banner-tg.jpg') 55% center / cover no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(10, 14, 26, 0.88) 0%,
      rgba(10, 14, 26, 0.72) 38%,
      rgba(10, 14, 26, 0.55) 62%,
      rgba(10, 14, 26, 0.78) 100%
    ),
    linear-gradient(to bottom, rgba(10, 14, 26, 0.45) 0%, rgba(10, 14, 26, 0.72) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(153, 69, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(20, 241, 149, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-rays {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg at 50% 50%,
    transparent 0deg,
    rgba(20, 241, 149, 0.03) 30deg,
    transparent 60deg,
    rgba(153, 69, 255, 0.04) 120deg,
    transparent 150deg,
    rgba(255, 59, 59, 0.03) 210deg,
    transparent 240deg,
    rgba(20, 241, 149, 0.03) 300deg,
    transparent 360deg
  );
  animation: rays-spin calc(20s / var(--anim-speed)) linear infinite;
  pointer-events: none;
}

@keyframes rays-spin {
  to { transform: rotate(360deg); }
}

.floating-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: orb-float calc(8s / var(--anim-speed)) ease-in-out infinite;
}

.orb-1 { width: 200px; height: 200px; background: var(--accent); opacity: 0.15; top: 10%; left: 5%; animation-delay: 0s; }
.orb-2 { width: 150px; height: 150px; background: var(--accent-secondary); opacity: 0.12; top: 60%; right: 10%; animation-delay: -2s; }
.orb-3 { width: 100px; height: 100px; background: var(--danger); opacity: 0.1; bottom: 20%; left: 30%; animation-delay: -4s; }
.orb-4 { width: 120px; height: 120px; background: var(--gold); opacity: 0.08; top: 30%; right: 30%; animation-delay: -6s; }

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.pulse-badge {
  animation: badge-pulse calc(2s / var(--anim-speed)) ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 20px 4px var(--accent-glow); }
}

.neon-text {
  text-shadow:
    0 0 7px var(--accent),
    0 0 20px var(--accent-glow),
    0 0 40px var(--accent-glow);
  animation: neon-flicker calc(4s / var(--anim-speed)) ease-in-out infinite;
}

@keyframes neon-flicker {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  93% { opacity: 0.8; }
  94% { opacity: 1; }
  96% { opacity: 0.9; }
  97% { opacity: 1; }
}

.glitch {
  position: relative;
}

[data-bull-mode="true"] .glitch::before,
[data-bull-mode="true"] .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

[data-bull-mode="true"] .glitch::before {
  color: var(--accent);
  animation: glitch-1 calc(0.8s / var(--anim-speed)) infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  text-shadow: -2px 0 var(--accent-secondary);
}

[data-bull-mode="true"] .glitch::after {
  color: var(--danger);
  animation: glitch-2 calc(0.6s / var(--anim-speed)) infinite linear alternate-reverse;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  text-shadow: 2px 0 var(--accent);
}

@keyframes glitch-1 {
  0% { transform: translate(0); }
  20% { transform: translate(-3px, 1px); }
  40% { transform: translate(3px, -1px); }
  60% { transform: translate(-1px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}

@keyframes glitch-2 {
  0% { transform: translate(0); }
  25% { transform: translate(2px, -1px); }
  50% { transform: translate(-2px, 1px); }
  75% { transform: translate(1px, 2px); }
  100% { transform: translate(0); }
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ring-1 { width: 110%; height: 110%; animation: ring-pulse calc(3s / var(--anim-speed)) ease-in-out infinite; }
.ring-2 { width: 125%; height: 125%; border-color: var(--accent-secondary); animation: ring-pulse calc(3s / var(--anim-speed)) ease-in-out infinite 0.5s; }
.ring-3 { width: 140%; height: 140%; border-color: var(--danger); opacity: 0.15; animation: ring-pulse calc(3s / var(--anim-speed)) ease-in-out infinite 1s; }

@keyframes ring-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.15; }
}

.hero-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
  animation: shine-sweep calc(4s / var(--anim-speed)) ease-in-out infinite;
  pointer-events: none;
  border-radius: var(--radius);
}

@keyframes shine-sweep {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.gallery-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.12) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
  z-index: 2;
}

.gallery-item:hover .gallery-shine {
  transform: translateX(100%);
}

.btn-hero {
  position: relative;
  overflow: hidden;
}

.btn-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: translateX(-100%);
  animation: btn-shine calc(3s / var(--anim-speed)) ease-in-out infinite;
}

@keyframes btn-shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

[data-bull-mode="true"] .section-title {
  animation: title-shake calc(0.15s / var(--anim-speed)) ease-in-out infinite alternate;
}

@keyframes title-shake {
  from { transform: translateX(-1px); }
  to { transform: translateX(1px); }
}

.comic-panel,
.token-card {
  position: relative;
  overflow: hidden;
}

.comic-panel::after,
.token-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  transition: left 0.5s ease;
}

.comic-panel:hover::after,
.token-card:hover::after {
  left: 150%;
}

.ripple {
  position: fixed;
  border-radius: 50%;
  border: 2px solid var(--accent);
  pointer-events: none;
  z-index: 9999;
  animation: ripple-expand 0.8s ease-out forwards;
}

@keyframes ripple-expand {
  from { width: 0; height: 0; opacity: 0.8; margin: 0; }
  to { width: 120px; height: 120px; opacity: 0; margin: -60px 0 0 -60px; }
}

.gallery-item {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
  box-shadow: 0 8px 40px var(--accent-glow), 0 0 60px rgba(153, 69, 255, 0.15);
}

[data-bull-mode="true"] body {
  animation: bull-shake calc(6s / var(--anim-speed)) ease-in-out infinite;
}

@keyframes bull-shake {
  0%, 100% { transform: translateX(0); }
  10% { transform: translateX(-0.5px); }
  20% { transform: translateX(0.5px); }
  30% { transform: translateX(0); }
}

.particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.6;
}

.particle-canvas.hidden { display: none; }

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-block;
  background: rgba(20, 241, 149, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-comic);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title-line {
  display: block;
  font-size: 1.5rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
}

.hero-title-main {
  display: block;
  font-size: clamp(3.5rem, 8vw, 6rem);
  letter-spacing: 3px;
  text-shadow: 3px 3px 0 var(--accent-secondary);
}

.hero-title-symbol {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--accent);
  letter-spacing: 6px;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

#copyCaBtn {
  font-family: monospace;
  font-size: 0.85rem;
}

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

.copy-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat { text-align: center; }

.stat-value {
  display: block;
  font-family: var(--font-comic);
  font-size: 1.8rem;
  color: var(--accent);
  letter-spacing: 2px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: min(420px, 100%);
  perspective: 800px;
}

.hero-mascot {
  width: 100%;
  border-radius: var(--radius);
  border: 3px solid var(--accent);
  box-shadow: var(--shadow), 0 0 60px var(--accent-glow);
  animation: float calc(4s / var(--anim-speed)) ease-in-out infinite;
}

[data-bull-mode="true"] .hero-mascot {
  animation: float calc(2s / var(--anim-speed)) ease-in-out infinite, pulse-glow calc(1.5s / var(--anim-speed)) ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  z-index: -1;
  animation: pulse-glow calc(3s / var(--anim-speed)) ease-in-out infinite;
}

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

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-comic);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 2px;
}

.section-desc {
  color: var(--text-secondary);
  margin-top: 12px;
  font-size: 1.05rem;
}

/* About */
.about { background: var(--bg-secondary); }

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

.comic-panel {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.comic-panel:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.comic-panel.featured {
  border-color: var(--accent-secondary);
  background: linear-gradient(135deg, var(--bg-card), rgba(153, 69, 255, 0.08));
}

.panel-number {
  font-family: var(--font-comic);
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  right: 20px;
}

.comic-panel h3 {
  font-family: var(--font-comic);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--accent);
}

.comic-panel p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Tokenomics */
.token-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.token-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: 0.3s;
}

.token-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.token-card.highlight {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card), rgba(20, 241, 149, 0.06));
}

.token-icon { font-size: 2rem; display: block; margin-bottom: 12px; }

.token-card h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.token-card p {
  font-family: var(--font-comic);
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.token-card .mono {
  font-family: monospace;
  font-size: 0.85rem;
  word-break: break-all;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.3s;
  border: 2px solid var(--border);
  color: var(--text-primary);
}

.social-btn:hover {
  transform: translateY(-2px);
}

.social-btn.twitter:hover {
  border-color: #1da1f2;
  color: #1da1f2;
  box-shadow: 0 0 20px rgba(29, 161, 242, 0.2);
}

.social-btn.telegram:hover {
  border-color: #26a5e4;
  color: #26a5e4;
  box-shadow: 0 0 20px rgba(38, 165, 228, 0.2);
}

.social-btn.dex:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Gallery */
.gallery { background: var(--bg-secondary); }

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: 0.2s;
  font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: #0a0e1a;
  border-color: var(--accent);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 2px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
  transform: scale(var(--gallery-scale));
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item:hover {
  border-color: var(--accent);
  transform: scale(calc(var(--gallery-scale) * 1.02));
}

.gallery-item.hidden-item { display: none; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 26, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay h3 {
  font-family: var(--font-comic);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--accent);
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.btn-gallery-dl {
  background: var(--accent);
  color: #0a0e1a;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  font-family: inherit;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.gallery-lightbox[hidden] { display: none; }

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 75vh;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
}

.gallery-lightbox p {
  color: var(--text-secondary);
  margin-top: 16px;
  font-family: var(--font-comic);
  font-size: 1.2rem;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

/* Roadmap */
.roadmap-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-secondary));
  border-radius: 2px;
}

.roadmap-item {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
}

.roadmap-marker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--text-muted);
  flex-shrink: 0;
  margin-top: 4px;
  z-index: 1;
}

.roadmap-item.done .roadmap-marker {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.roadmap-item.active .roadmap-marker {
  background: var(--accent-secondary);
  border-color: var(--accent-secondary);
  animation: pulse-marker calc(2s / var(--anim-speed)) ease-in-out infinite;
}

@keyframes pulse-marker {
  0%, 100% { box-shadow: 0 0 0 0 rgba(153, 69, 255, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(153, 69, 255, 0); }
}

.roadmap-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  flex: 1;
}

.phase {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.roadmap-content h3 {
  font-family: var(--font-comic);
  font-size: 1.4rem;
  margin: 6px 0 12px;
  letter-spacing: 1px;
}

.roadmap-content ul {
  list-style: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.roadmap-content li::before {
  content: '🐂 ';
}

/* CTA Final */
.cta-final { padding: 80px 0; }

.cta-box {
  background: linear-gradient(135deg, rgba(20, 241, 149, 0.08), rgba(153, 69, 255, 0.08));
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
}

.cta-mascot {
  border-radius: 50%;
  border: 3px solid var(--accent);
  margin-bottom: 20px;
  object-fit: cover;
}

.cta-box h2 {
  font-family: var(--font-comic);
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.cta-box p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner { text-align: center; }

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-comic);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.footer-brand img { border-radius: 50%; }

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.8rem;
  max-width: 500px;
  margin: 0 auto 12px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Settings Panel */
.settings-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 90vw);
  height: 100vh;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.settings-panel.open { transform: translateX(0); }

.settings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg-card);
  z-index: 1;
}

.settings-header h2 {
  font-family: var(--font-comic);
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.settings-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1;
}

.settings-body { padding: 24px; }

.setting-group { margin-bottom: 28px; }

.setting-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.9rem;
}

.setting-label input[type="checkbox"] { display: none; }

.toggle {
  width: 48px;
  height: 26px;
  background: var(--bg-secondary);
  border-radius: 100px;
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
}

.toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s;
}

.setting-label input:checked + .toggle {
  background: var(--accent);
}

.setting-label input:checked + .toggle::after {
  transform: translateX(22px);
  background: #0a0e1a;
}

.setting-range {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.setting-range input[type="color"] {
  width: 100%;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: none;
}

.setting-range input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.btn-reset { width: 100%; margin-top: 8px; }

.settings-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 250;
}

.settings-backdrop[hidden] { display: none; }

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-card);
  border: 1px solid var(--accent);
  color: var(--text-primary);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  z-index: 400;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow);
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* Confetti */
.confetti-piece {
  position: fixed;
  width: 10px;
  height: 10px;
  top: -10px;
  z-index: 500;
  pointer-events: none;
  animation: confetti-fall linear forwards;
}

@keyframes confetti-fall {
  to {
    transform: translateY(110vh) rotate(720deg);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 48px 24px; }
  .hero-tagline { margin: 0 auto 32px; }
  .hero-cta, .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-image-frame { width: min(300px, 80%); }
  .about-grid { grid-template-columns: 1fr; }
  .token-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .nav-buy-btn { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-card);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
  .token-grid { grid-template-columns: 1fr 1fr; }
}

/* ========================================
   SUPERBULL EXTRA EFFECTS & CURSOR LIGHT
   ======================================== */

/* Powerful cursor following light effect */
.cursor-light {
  position: fixed;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(20, 241, 149, 0.65) 0%,
    rgba(153, 69, 255, 0.32) 18%,
    rgba(255, 215, 0, 0.12) 35%,
    transparent 68%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 9994;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  filter: blur(28px);
  opacity: 0;
  transition: opacity 0.2s ease, width 0.1s ease, height 0.1s ease;
  will-change: transform, left, top;
}

.cursor-glow {
  position: fixed;
  width: 36px;
  height: 36px;
  background: radial-gradient(circle, #ffffff 5%, var(--accent) 32%, rgba(153,69,255,0.7) 55%, transparent 78%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  filter: blur(2px);
  box-shadow: 
    0 0 18px var(--accent),
    0 0 38px var(--accent-glow),
    0 0 72px rgba(153, 69, 255, 0.5);
  transition: width 0.08s, height 0.08s, opacity 0.2s;
  opacity: 0;
}

/* When bull mode: brighter intense light */
[data-bull-mode="true"] .cursor-light {
  width: 620px;
  height: 620px;
  opacity: 1;
}

[data-bull-mode="true"] .cursor-glow {
  width: 52px;
  height: 52px;
  box-shadow: 0 0 26px var(--accent), 0 0 58px var(--accent-glow), 0 0 110px #9945ff;
}

/* Spark burst particles */
.spark {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: spark-fly 0.7s ease-out forwards;
  box-shadow: 0 0 8px var(--accent);
}

@keyframes spark-fly {
  to {
    transform: translate(var(--tx), var(--ty)) scale(0.1);
    opacity: 0;
  }
}

/* Energy field overlay on hero */
.energy-field {
  position: absolute;
  inset: -30%;
  background: 
    radial-gradient(circle at 30% 20%, rgba(20,241,149,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(153,69,255,0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
  animation: energy-pulse calc(6s / var(--anim-speed)) ease-in-out infinite;
  border-radius: 50%;
}

@keyframes energy-pulse {
  0%, 100% { opacity: 0.6; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* Enhanced comic shine / light sweeps */
.comic-panel, .token-card, .gallery-item {
  position: relative;
}

.comic-panel::before,
.token-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 40%; height: 200%;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.14), transparent);
  transform: rotate(25deg);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.comic-panel:hover::before,
.token-card:hover::before {
  left: 140%;
}

/* Extra neon pulse for symbols */
.neon-text, .hero-title-symbol {
  animation: neon-flicker calc(3.5s / var(--anim-speed)) ease-in-out infinite, neon-pulse calc(2.2s / var(--anim-speed)) ease-in-out infinite;
}

@keyframes neon-pulse {
  0%, 100% { text-shadow: 0 0 7px var(--accent), 0 0 20px var(--accent-glow), 0 0 44px var(--accent-glow); }
  50% { text-shadow: 0 0 14px var(--accent), 0 0 32px var(--accent-glow), 0 0 80px var(--accent-glow); }
}

/* Floating meme coins / particles extra */
.floating-coin {
  position: absolute;
  font-size: 1.1rem;
  animation: coin-float calc(7s / var(--anim-speed)) ease-in-out infinite;
  opacity: 0.75;
  pointer-events: none;
  z-index: 1;
  text-shadow: 0 0 10px var(--accent);
}

/* Meme rain effect (toggleable) */
.meme-rain {
  position: fixed;
  top: -30px;
  font-size: 18px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
  animation: rain-fall linear infinite;
  text-shadow: 0 0 4px currentColor;
}

@keyframes rain-fall {
  to { transform: translateY(110vh); }
}

/* Enhanced button light sweeps */
.btn-hero::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-25deg);
  animation: hero-sweep calc(2.6s / var(--anim-speed)) ease-in-out infinite;
}

@keyframes hero-sweep {
  0% { left: -120%; }
  30% { left: 140%; }
  100% { left: 140%; }
}

/* Gallery hover extra intense glow */
.gallery-item:hover {
  box-shadow: 0 0 0 1px var(--accent), 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 80px var(--accent-glow);
}

/* Settings extras */
.setting-label:hover {
  color: var(--accent);
}

/* Cursor light active states */
.cursor-light.active,
.cursor-glow.active {
  opacity: 1;
}

/* More dramatic tilt on hero */
.hero-image-frame {
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

/* Blockchain grid subtle background */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(20,241,149,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153,69,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  animation: grid-move calc(30s / var(--anim-speed)) linear infinite;
}

@keyframes grid-move {
  to { background-position: 64px 64px; }
}