/* ============================================
   $CLAWDSTR — Larry the Clawdstr
   Underwater Cyberpunk Crypto Token Website
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Ocean depths palette */
  --bg-abyss: #020a1a;
  --bg-deep: #041428;
  --bg-ocean: #06203d;
  --bg-surface: #0a2e55;

  /* Lobster reds */
  --red-dark: #8b1a1a;
  --red-core: #c62828;
  --red-hot: #e53935;
  --red-glow: #ff5252;

  /* Cyan tech glow */
  --cyan-dim: #0097a7;
  --cyan-core: #00bcd4;
  --cyan-bright: #26c6da;
  --cyan-glow: #4dd0e1;
  --cyan-neon: #80deea;

  /* Sandy accent */
  --gold: #ffd54f;
  --gold-bright: #ffe082;

  /* Text */
  --text-primary: #e0f7fa;
  --text-secondary: #80cbc4;
  --text-muted: #4db6ac;

  /* Glass */
  --glass-bg: rgba(6, 32, 61, 0.55);
  --glass-border: rgba(0, 188, 212, 0.2);
  --glass-hover-border: rgba(0, 188, 212, 0.5);

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.8s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-abyss);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ---------- Underwater Background ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 188, 212, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(198, 40, 40, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(0, 151, 167, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-abyss) 0%, var(--bg-deep) 30%, var(--bg-ocean) 60%, var(--bg-deep) 100%);
  z-index: -2;
  pointer-events: none;
}

/* Caustic light overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    repeating-conic-gradient(from 0deg at 50% 50%,
      rgba(0, 188, 212, 0.01) 0deg 10deg,
      transparent 10deg 20deg);
  opacity: 0.5;
  animation: causticRotate 60s linear infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes causticRotate {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Bubble Canvas ---------- */
#bubble-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-medium);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(2, 10, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  font-size: 28px;
  filter: drop-shadow(0 0 8px var(--red-glow));
}

.nav-logo-text {
  font-family: 'Bangers', cursive;
  font-size: 26px;
  color: var(--red-hot);
  letter-spacing: 3px;
  text-shadow: 0 0 20px rgba(229, 57, 53, 0.5);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan-core);
  box-shadow: 0 0 8px var(--cyan-glow);
  transition: width var(--transition-medium);
}

.nav-links a:hover {
  color: var(--cyan-bright);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--red-core), var(--red-hot));
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  border: 1px solid rgba(255, 82, 82, 0.3);
  box-shadow: 0 0 20px rgba(229, 57, 53, 0.3);
  transition: all var(--transition-fast) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  box-shadow: 0 0 35px rgba(229, 57, 53, 0.6);
  transform: translateY(-2px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--cyan-bright);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 40, 40, 0.15) 0%, rgba(0, 188, 212, 0.05) 50%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: heroGlowPulse 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroGlowPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-image-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
  margin-bottom: 10px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(198, 40, 40, 0.4)) drop-shadow(0 0 80px rgba(0, 188, 212, 0.2));
  animation: heroFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.hero-image-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(0, 188, 212, 0.15);
  animation: ringRotate 12s linear infinite;
}

.hero-image-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--cyan-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan-glow);
}

@keyframes ringRotate {
  to {
    transform: rotate(360deg);
  }
}

.hero-ticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 188, 212, 0.1);
  border: 1px solid rgba(0, 188, 212, 0.25);
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan-bright);
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: tickerGlow 2s ease-in-out infinite alternate;
}

@keyframes tickerGlow {
  0% {
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.1);
  }

  100% {
    box-shadow: 0 0 25px rgba(0, 188, 212, 0.25);
  }
}

.hero-ticker .dot {
  width: 8px;
  height: 8px;
  background: var(--cyan-core);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(56px, 10vw, 110px);
  letter-spacing: 6px;
  line-height: 1;
  background: linear-gradient(135deg, var(--red-hot) 0%, var(--gold) 50%, var(--red-glow) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmer 3s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(229, 57, 53, 0.4));
}

@keyframes titleShimmer {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  font-family: 'Bangers', cursive;
  font-size: clamp(18px, 3vw, 28px);
  color: var(--cyan-bright);
  letter-spacing: 4px;
  text-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
}

.hero-desc {
  max-width: 600px;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--red-core), var(--red-hot));
  color: white;
  border: 1px solid rgba(255, 82, 82, 0.3);
  border-radius: 50px;
  font-family: 'Bangers', cursive;
  font-size: 20px;
  letter-spacing: 3px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-medium);
  box-shadow: 0 4px 25px rgba(229, 57, 53, 0.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--red-glow), var(--cyan-core), var(--red-glow));
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  animation: borderShimmer 3s linear infinite;
  transition: opacity var(--transition-medium);
}

@keyframes borderShimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(229, 57, 53, 0.5);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--glass-bg);
  color: var(--cyan-bright);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-family: 'Bangers', cursive;
  font-size: 20px;
  letter-spacing: 3px;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(0, 188, 212, 0.15);
  border-color: var(--glass-hover-border);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 188, 212, 0.2);
}

/* ---------- Section Styling ---------- */
section {
  position: relative;
  z-index: 1;
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cyan-core);
  padding: 6px 18px;
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 50px;
  margin-bottom: 16px;
  background: rgba(0, 188, 212, 0.05);
}

.section-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 4px;
  color: var(--text-primary);
  text-shadow: 0 0 30px rgba(0, 188, 212, 0.15);
}

.section-title .accent {
  color: var(--red-hot);
  text-shadow: 0 0 20px rgba(229, 57, 53, 0.4);
}

/* ---------- About Section ---------- */
.about {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 188, 212, 0.02) 50%, transparent 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(198, 40, 40, 0.3));
  animation: aboutFloat 5s ease-in-out infinite;
}

@keyframes aboutFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-10px) rotate(1deg);
  }

  66% {
    transform: translateY(5px) rotate(-1deg);
  }
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0, 188, 212, 0.15) 0%, transparent 70%);
  filter: blur(8px);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text h3 {
  font-family: 'Bangers', cursive;
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--gold);
  text-shadow: 0 0 15px rgba(255, 213, 79, 0.3);
}

.about-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.about-text .highlight {
  color: var(--cyan-bright);
  font-weight: 600;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.stat-item {
  text-align: center;
  padding: 16px 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: var(--transition-medium);
}

.stat-item:hover {
  border-color: var(--glass-hover-border);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.1);
}

.stat-value {
  font-family: 'Bangers', cursive;
  font-size: 28px;
  color: var(--red-hot);
  letter-spacing: 2px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* ---------- Tokenomics Section ---------- */
.tokenomics {
  background: linear-gradient(180deg, transparent 0%, rgba(198, 40, 40, 0.03) 50%, transparent 100%);
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.token-card {
  position: relative;
  padding: 32px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  text-align: center;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.token-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan-core), transparent);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.token-card:hover {
  border-color: var(--glass-hover-border);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 188, 212, 0.12);
}

.token-card:hover::before {
  opacity: 1;
}

.token-card-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(0, 188, 212, 0.3));
}

.token-card-value {
  font-family: 'Bangers', cursive;
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--gold);
  text-shadow: 0 0 15px rgba(255, 213, 79, 0.3);
  margin-bottom: 8px;
}

.token-card-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
}

/* ---------- How to Buy Section ---------- */
.how-to-buy {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 188, 212, 0.02) 50%, transparent 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  counter-reset: step-counter;
}

.step-card {
  position: relative;
  padding: 36px 28px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  text-align: center;
  counter-increment: step-counter;
  transition: all var(--transition-medium);
  overflow: hidden;
}

.step-card::before {
  content: counter(step-counter);
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--red-core), var(--red-hot));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bangers', cursive;
  font-size: 22px;
  color: white;
  box-shadow: 0 4px 15px rgba(229, 57, 53, 0.3);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-hover-border);
  box-shadow: 0 12px 40px rgba(0, 188, 212, 0.12);
}

.step-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.step-card h3 {
  font-family: 'Bangers', cursive;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--cyan-bright);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- CA Section ---------- */
.ca-section {
  padding: 60px 0;
}

.ca-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background: var(--glass-bg);
  border: 1px solid rgba(229, 57, 53, 0.2);
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.ca-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-hot), var(--gold), var(--red-hot));
  background-size: 200% 200%;
  animation: caShimmer 2s linear infinite;
}

@keyframes caShimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.ca-label {
  font-family: 'Bangers', cursive;
  font-size: 24px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.ca-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.ca-address:hover {
  border-color: var(--glass-hover-border);
  background: rgba(0, 188, 212, 0.05);
}

.ca-address-text {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: var(--cyan-bright);
  letter-spacing: 2px;
  font-weight: 600;
}

.ca-address .copy-icon {
  font-size: 18px;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.ca-address:hover .copy-icon {
  opacity: 1;
}

.ca-copy-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 12px 28px;
  background: var(--red-hot);
  color: white;
  font-family: 'Bangers', cursive;
  font-size: 16px;
  letter-spacing: 2px;
  border-radius: 50px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-medium);
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(229, 57, 53, 0.4);
}

.ca-copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Community Section ---------- */
.community {
  background: linear-gradient(180deg, transparent 0%, rgba(198, 40, 40, 0.03) 50%, transparent 100%);
}

.community-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.community-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.community-text h3 {
  font-family: 'Bangers', cursive;
  font-size: 36px;
  letter-spacing: 3px;
  color: var(--text-primary);
}

.community-text h3 .accent {
  color: var(--red-hot);
}

.community-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  transition: all var(--transition-medium);
  backdrop-filter: blur(10px);
}

.social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 188, 212, 0.15);
}

.social-btn.twitter {
  border-color: rgba(29, 161, 242, 0.3);
}

.social-btn.twitter:hover {
  background: rgba(29, 161, 242, 0.15);
  border-color: rgba(29, 161, 242, 0.5);
  box-shadow: 0 8px 30px rgba(29, 161, 242, 0.2);
}

.social-btn.telegram {
  border-color: rgba(0, 136, 204, 0.3);
}

.social-btn.telegram:hover {
  background: rgba(0, 136, 204, 0.15);
  border-color: rgba(0, 136, 204, 0.5);
  box-shadow: 0 8px 30px rgba(0, 136, 204, 0.2);
}

.social-btn .social-icon {
  font-size: 20px;
}

.community-image-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.community-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(198, 40, 40, 0.3));
  animation: communityBounce 3s ease-in-out infinite;
}

@keyframes communityBounce {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.02);
  }
}

.community-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(229, 57, 53, 0.15) 0%, transparent 70%);
  filter: blur(10px);
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  padding: 48px 0 24px;
  border-top: 1px solid var(--glass-border);
  background: rgba(2, 10, 26, 0.5);
  backdrop-filter: blur(10px);
  z-index: 1;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-icon {
  font-size: 24px;
}

.footer-logo-text {
  font-family: 'Bangers', cursive;
  font-size: 22px;
  color: var(--red-hot);
  letter-spacing: 3px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--cyan-bright);
}

.footer-disclaimer {
  width: 100%;
  text-align: center;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(0, 188, 212, 0.08);
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.6;
  line-height: 1.6;
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ---------- Marquee Ticker ---------- */
.marquee-section {
  padding: 20px 0;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(0, 188, 212, 0.02);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marqueeScroll 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-family: 'Bangers', cursive;
  font-size: 20px;
  letter-spacing: 4px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.marquee-item .sep {
  color: var(--red-hot);
  font-size: 16px;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---------- SVG Icon System ---------- */
.icon {
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  flex-shrink: 0;
}

/* Logo icon — nav & footer */
.icon-logo {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(229, 57, 53, 0.5));
}

/* Button icons */
.icon-btn {
  width: 24px;
  height: 24px;
}

/* Tokenomics card icons */
.icon-card {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 10px rgba(0, 188, 212, 0.3));
}

/* How-to-buy step icons */
.icon-step {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 0 8px rgba(0, 188, 212, 0.25));
}

/* Marquee separator icons */
.icon-marquee {
  width: 22px;
  height: 22px;
}

/* Inline text icons */
.icon-inline {
  width: 28px;
  height: 28px;
  vertical-align: -4px;
}

/* Small inline (footer, toast) */
.icon-inline-sm {
  width: 18px;
  height: 18px;
  vertical-align: -3px;
}

/* Stat value icon */
.icon-stat {
  width: 32px;
  height: 32px;
}

/* Social button icons */
.icon-social {
  width: 22px;
  height: 22px;
}

/* Copy button icon */
.icon-copy-btn {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.ca-address:hover .icon-copy-btn {
  opacity: 1;
}

/* Icon container tweaks */
.token-card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.step-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.nav-logo-icon {
  display: flex;
  align-items: center;
}

.footer-logo-icon {
  display: flex;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
}

.copy-icon {
  display: flex;
  align-items: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {

  .about-grid,
  .community-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-image-wrapper {
    order: -1;
  }

  .about-stats {
    max-width: 400px;
    margin: 12px auto 0;
  }

  .social-links {
    justify-content: center;
  }

  .community-image-wrapper {
    order: -1;
  }

  .hero-image-wrapper {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    flex-direction: column;
    background: rgba(2, 10, 26, 0.97);
    backdrop-filter: blur(20px);
    padding: 80px 30px 30px;
    gap: 24px;
    transition: right var(--transition-medium);
    border-left: 1px solid var(--glass-border);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero-image-wrapper {
    width: 240px;
    height: 240px;
  }

  .tokenomics-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}