/* ============================================
   $COLDBULL — Coldest Bull Breathing
   Winter Theme · Horizontal Sections
   ============================================ */

:root {
  --ice-50: #f0f9ff;
  --ice-100: #e0f2fe;
  --ice-200: #bae6fd;
  --ice-300: #7dd3fc;
  --ice-400: #38bdf8;
  --ice-500: #0ea5e9;
  --ice-600: #0284c7;
  --ice-glow: #67e8f9;
  --frost: rgba(186, 230, 253, 0.15);
  --glass: rgba(10, 30, 60, 0.55);
  --glass-border: rgba(125, 211, 252, 0.2);
  --deep: #030712;
  --navy: #0a1628;
  --navy-mid: #0f2847;
  --navy-light: #1a3a5c;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --section-width: 100vw;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  overflow: hidden;
  height: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--deep);
  color: var(--ice-100);
  overflow: hidden;
  height: 100%;
  cursor: default;
}

/* ---- Weather Canvas ---- */
#weather-canvas {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.frost-vignette {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(3, 7, 18, 0.6) 100%),
    radial-gradient(ellipse at top left, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(56, 189, 248, 0.06) 0%, transparent 50%);
}

.wind-streaks {
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  overflow: hidden;
}

.wind-streaks::before,
.wind-streaks::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(186, 230, 253, 0.08), transparent);
  animation: windStreak 4s linear infinite;
}

.wind-streaks::before { top: 30%; animation-delay: 0s; }
.wind-streaks::after { top: 70%; animation-delay: 2s; animation-duration: 5s; }

@keyframes windStreak {
  0% { transform: translateX(-50%); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(0%); opacity: 0; }
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  height: var(--nav-height);
  background: rgba(3, 7, 18, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ice-100);
}

.nav-logo img {
  border-radius: 50%;
  border: 2px solid var(--glass-border);
  transition: box-shadow 0.3s;
}

.nav-logo:hover img {
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--ice-200), var(--ice-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--ice-300);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ice-400);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--ice-100);
  text-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-social {
  display: flex;
  gap: 0.75rem;
}

.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  color: var(--ice-300);
  transition: all 0.3s;
}

.nav-social a svg {
  width: 18px;
  height: 18px;
}

.nav-social a:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--ice-400);
  color: var(--ice-100);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
  transform: translateY(-2px);
}

/* ---- Section Dots ---- */
.section-dots {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--ice-400);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.dot.active,
.dot:hover {
  background: var(--ice-400);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
  transform: scale(1.2);
}

/* ---- Scroll Hint ---- */
.scroll-hint {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--ice-400);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: pulseHint 2s ease-in-out infinite;
  transition: opacity 0.5s;
}

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

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--ice-400);
  border-bottom: 2px solid var(--ice-400);
  transform: rotate(-45deg);
  animation: bounceArrow 1.5s ease-in-out infinite;
}

@keyframes pulseHint {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes bounceArrow {
  0%, 100% { transform: rotate(-45deg) translateX(0); }
  50% { transform: rotate(-45deg) translateX(6px); }
}

/* ---- Horizontal Container ---- */
.sections-container {
  display: flex;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
}

.sections-container::-webkit-scrollbar {
  display: none;
}

.section {
  flex: 0 0 100vw;
  flex-shrink: 0;
  width: 100vw;
  min-width: 100vw;
  height: 100vh;
  height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.section-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  padding: calc(var(--nav-height) + 2rem) 3rem 3rem;
  margin: auto 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section:not(.in-view) .section-content {
  opacity: 0.3;
  transform: translateY(20px);
}

.section.in-view .section-content {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ice-400);
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  background: rgba(14, 165, 233, 0.08);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 2rem;
}

/* Ice Text Effect */
.ice-text {
  position: relative;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #e0f2fe 30%,
    #7dd3fc 60%,
    #38bdf8 80%,
    #0ea5e9 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(56, 189, 248, 0.4))
          drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

/* Glass Card */
.glass {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.glass:hover {
  border-color: rgba(125, 211, 252, 0.4);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ice-500), var(--ice-600));
  color: white;
  box-shadow: 0 4px 24px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--ice-200);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: var(--ice-400);
  transform: translateY(-3px);
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.0625rem;
  margin-top: 2rem;
}

.btn-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  animation: shimmer 3s ease-in-out infinite;
}

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

/* ============================================
   SECTION BACKGROUNDS (AI Art)
   ============================================ */
.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.section-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 0.6s ease-out;
}

.section.in-view .section-bg-img {
  transform: scale(1);
}

.section-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(3, 7, 18, 0.75) 0%, rgba(3, 7, 18, 0.55) 50%, rgba(3, 7, 18, 0.85) 100%),
    linear-gradient(to right, rgba(3, 7, 18, 0.5) 0%, transparent 40%, transparent 60%, rgba(3, 7, 18, 0.5) 100%);
}

.section-bg-overlay-hero {
  background:
    linear-gradient(to bottom, rgba(3, 7, 18, 0.65) 0%, rgba(3, 7, 18, 0.35) 40%, rgba(3, 7, 18, 0.8) 100%),
    linear-gradient(to right, rgba(3, 7, 18, 0.55) 0%, transparent 30%, transparent 70%, rgba(3, 7, 18, 0.55) 100%);
}

.section-bg-overlay-heavy {
  background:
    linear-gradient(to bottom, rgba(3, 7, 18, 0.82) 0%, rgba(3, 7, 18, 0.72) 50%, rgba(3, 7, 18, 0.88) 100%),
    linear-gradient(to right, rgba(3, 7, 18, 0.7) 0%, rgba(3, 7, 18, 0.5) 50%, rgba(3, 7, 18, 0.75) 100%);
}

/* Split layout with section art (legend only) */
/* ============================================
   HERO SECTION
   ============================================ */
.section-hero {
  background: var(--navy);
  align-items: center;
  overflow-y: hidden;
}

.section-hero .section-content {
  margin: 0;
}

.section-hero .section-bg-img {
  transform: scale(1.08);
}

.section-hero.in-view .section-bg-img {
  transform: scale(1.02);
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-wrap {
  position: relative;
  margin-bottom: 1.5rem;
}

.logo-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.3) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-logo {
  position: relative;
  width: clamp(160px, 22vw, 280px);
  height: auto;
  border-radius: 50%;
  border: 3px solid rgba(125, 211, 252, 0.3);
  box-shadow:
    0 0 60px rgba(56, 189, 248, 0.3),
    0 0 120px rgba(14, 165, 233, 0.15);
  animation: floatLogo 4s ease-in-out infinite;
}

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

.breath-particles {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  pointer-events: none;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1rem;
}

.title-line {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  letter-spacing: 0.08em;
  line-height: 1.05;
}

.title-line.accent {
  font-size: clamp(2rem, 5.5vw, 4rem);
  opacity: 0.9;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ice-300);
  max-width: 600px;
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid var(--glass-border);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ice-300);
  margin-bottom: 2rem;
}

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

.hero-stats {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
  z-index: 10;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  min-width: 120px;
}

.stat-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ice-400);
  margin-bottom: 0.25rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--ice-100);
}

/* ============================================
   LEGEND SECTION
   ============================================ */
.section-legend {
  background: linear-gradient(135deg, var(--deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
}

.section-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 25% 25%, var(--ice-400) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, var(--ice-400) 1px, transparent 1px);
  background-size: 60px 60px;
}

.legend-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.legend-visual {
  display: flex;
  justify-content: center;
}

.ice-frame {
  position: relative;
  padding: 8px;
}

.legend-img {
  width: 100%;
  max-width: 360px;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.ice-frame-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--ice-400);
  border-style: solid;
}

.ice-frame-corner.tl { top: 0; left: 0; border-width: 3px 0 0 3px; }
.ice-frame-corner.tr { top: 0; right: 0; border-width: 3px 3px 0 0; }
.ice-frame-corner.bl { bottom: 0; left: 0; border-width: 0 0 3px 3px; }
.ice-frame-corner.br { bottom: 0; right: 0; border-width: 0 3px 3px 0; }

.legend-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ice-200);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.legend-lead {
  font-size: 1.25rem !important;
  color: var(--ice-100) !important;
}

.legend-text strong {
  color: var(--ice-glow);
  font-weight: 600;
}

.legend-text em {
  color: var(--ice-400);
  font-style: normal;
  font-weight: 500;
}

.legend-quote {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--ice-400);
  background: rgba(14, 165, 233, 0.06);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--ice-300);
  font-size: 1.125rem;
}

/* ============================================
   TOKEN SECTION
   ============================================ */
.section-token {
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--deep) 100%);
}

.token-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.token-card {
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.token-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.token-card h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ice-400);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.token-card p {
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  color: var(--ice-100);
}

.tokenomics {
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.tokenomics-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--ice-200);
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.tokenomics-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tok-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ice-400);
}

.tok-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--ice-100);
}

.contract-box {
  padding: 1.25rem 1.5rem;
}

.contract-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ice-400);
  margin-bottom: 0.75rem;
}

.contract-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contract-row code {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 0.9375rem;
  color: var(--ice-200);
  word-break: break-all;
}

.copy-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--ice-300);
  cursor: pointer;
  transition: all 0.3s;
}

.copy-btn svg {
  width: 20px;
  height: 20px;
}

.copy-btn:not(:disabled):hover {
  background: rgba(14, 165, 233, 0.3);
  color: var(--ice-100);
}

.copy-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ============================================
   BUY SECTION
   ============================================ */
.section-buy {
  background: linear-gradient(200deg, var(--deep) 0%, var(--navy-light) 50%, var(--navy) 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--ice-400);
  opacity: 0.5;
  flex-shrink: 0;
}

.step-body h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ice-100);
  margin-bottom: 0.5rem;
}

.step-body p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ice-300);
  font-weight: 300;
}

.section-buy .btn-large {
  display: inline-flex;
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.section-community {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep) 100%);
  align-items: flex-start;
}

.community-content {
  text-align: center;
}

.community-lead {
  font-size: 1.125rem;
  color: var(--ice-300);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.social-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  text-decoration: none;
  color: inherit;
  min-width: 320px;
  transition: all 0.3s;
}

.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-icon svg {
  width: 28px;
  height: 28px;
}

.x-icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ice-100);
}

.tg-icon {
  background: rgba(14, 165, 233, 0.2);
  color: var(--ice-300);
}

.social-info {
  flex: 1;
  text-align: left;
}

.social-info h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ice-100);
  margin-bottom: 0.25rem;
}

.social-info p {
  font-size: 0.875rem;
  color: var(--ice-400);
}

.social-arrow {
  font-size: 1.5rem;
  color: var(--ice-400);
  transition: transform 0.3s;
}

.social-card:hover .social-arrow {
  transform: translateX(6px);
  color: var(--ice-200);
}

.community-banner {
  max-width: 700px;
  margin: 0 auto 2rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.community-banner-img {
  width: 100%;
  display: block;
}

.footer {
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}

.footer-logo {
  border-radius: 50%;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.footer p {
  font-size: 0.8125rem;
  color: var(--ice-400);
  margin-bottom: 0.25rem;
}

.footer-disclaimer {
  font-size: 0.6875rem !important;
  opacity: 0.6;
  margin-top: 0.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .legend-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .token-cards,
  .tokenomics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-inner {
    padding: 0 1rem;
  }

  .section-content {
    padding: calc(var(--nav-height) + 1rem) 1.5rem 2rem;
  }

  .section-dots {
    right: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0.75rem;
    bottom: 1rem;
    width: 90%;
  }

  .stat-card {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    min-width: unset;
  }

  .token-cards,
  .tokenomics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .social-cards {
    flex-direction: column;
    align-items: center;
  }

  .social-card {
    min-width: unset;
    width: 100%;
    max-width: 360px;
  }

  .scroll-hint {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .token-cards,
  .tokenomics-grid {
    grid-template-columns: 1fr;
  }
}

/* Transition overlay for section changes */
.section-transition {
  position: fixed;
  inset: 0;
  z-index: 1500;
  pointer-events: none;
  background: radial-gradient(circle, rgba(186, 230, 253, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.section-transition.active {
  opacity: 1;
}
