/* ============================================================
   $ANSEM — THE BLACK BULL | Fan Page Styles
   Design: Belen Jones-inspired brutalist crypto aesthetic
   Mobile-first: 375px → 768px → 1024px → 1440px
   ============================================================ */

/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --black: #050505;
  --dark: #0a0a0a;
  --dark-100: #111111;
  --dark-200: #1a1a1a;
  --dark-300: #222222;
  --dark-400: #2a2a2a;

  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);

  --red: #ff1744;
  --red-dark: #dc143c;
  --red-glow: rgba(255, 23, 68, 0.3);
  --red-subtle: rgba(255, 23, 68, 0.08);

  --gold: #ffd700;
  --gold-dark: #b8860b;
  --gold-glow: rgba(255, 215, 0, 0.3);
  --gold-subtle: rgba(255, 215, 0, 0.08);

  --green: #00ff41;
  --green-glow: rgba(0, 255, 65, 0.3);
  --green-subtle: rgba(0, 255, 65, 0.08);

  /* Typography */
  --font-primary: 'Space Grotesk', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --fs-hero: clamp(3rem, 12vw, 10rem);
  --fs-h1: clamp(2rem, 5vw, 4rem);
  --fs-h2: clamp(1.5rem, 3.5vw, 2.5rem);
  --fs-h3: clamp(1.1rem, 2vw, 1.5rem);
  --fs-body: clamp(0.875rem, 1.5vw, 1rem);
  --fs-small: clamp(0.75rem, 1.2vw, 0.875rem);
  --fs-xs: clamp(0.625rem, 1vw, 0.75rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --nav-height: 56px;
  --side-nav-width: 0px;
  --bottom-height: 40px;
  --content-max-width: 1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 800ms;
  --duration-slower: 1200ms;

  /* Border */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-pill: 100px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--dark-300) var(--dark);
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--dark-300);
  border-radius: 3px;
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

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

.loader__text {
  font-family: var(--font-mono);
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
}

.loader__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--green));
  transition: width 0.1s linear;
}

/* ===== BACKGROUND STRIPS ===== */
.bg-strips {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.4;
}

.bg-strip {
  position: absolute;
  top: 0;
  bottom: 0;
  width: calc(100% / 9);
}

.bg-strip__blur {
  position: absolute;
  inset: 0;
  filter: blur(80px);
  opacity: 0.6;
  animation: stripPulse 8s ease-in-out infinite alternate;
}

.bg-strip:nth-child(1) { left: 0; }
.bg-strip:nth-child(2) { left: calc(100% / 9); }
.bg-strip:nth-child(3) { left: calc(200% / 9); }
.bg-strip:nth-child(4) { left: calc(300% / 9); }
.bg-strip:nth-child(5) { left: calc(400% / 9); }
.bg-strip:nth-child(6) { left: calc(500% / 9); }
.bg-strip:nth-child(7) { left: calc(600% / 9); }
.bg-strip:nth-child(8) { left: calc(700% / 9); }
.bg-strip:nth-child(9) { left: calc(800% / 9); }

.bg-strip:nth-child(1) .bg-strip__blur { background: radial-gradient(ellipse, var(--red-glow), transparent 70%); animation-delay: 0s; }
.bg-strip:nth-child(2) .bg-strip__blur { background: radial-gradient(ellipse, var(--gold-glow), transparent 70%); animation-delay: 0.8s; }
.bg-strip:nth-child(3) .bg-strip__blur { background: radial-gradient(ellipse, var(--red-glow), transparent 70%); animation-delay: 1.6s; }
.bg-strip:nth-child(4) .bg-strip__blur { background: radial-gradient(ellipse, var(--green-glow), transparent 70%); animation-delay: 2.4s; }
.bg-strip:nth-child(5) .bg-strip__blur { background: radial-gradient(ellipse, var(--gold-glow), transparent 70%); animation-delay: 3.2s; }
.bg-strip:nth-child(6) .bg-strip__blur { background: radial-gradient(ellipse, var(--red-glow), transparent 70%); animation-delay: 4s; }
.bg-strip:nth-child(7) .bg-strip__blur { background: radial-gradient(ellipse, var(--green-glow), transparent 70%); animation-delay: 4.8s; }
.bg-strip:nth-child(8) .bg-strip__blur { background: radial-gradient(ellipse, var(--gold-glow), transparent 70%); animation-delay: 5.6s; }
.bg-strip:nth-child(9) .bg-strip__blur { background: radial-gradient(ellipse, var(--red-glow), transparent 70%); animation-delay: 6.4s; }

/* ===== HERO BACKGROUND IMAGE ===== */
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}

.hero-bg.visible {
  opacity: 1;
}

.hero-bg__image {
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-bull.png') center center / cover no-repeat;
  opacity: 0.15;
  filter: blur(2px) saturate(1.2);
}

.hero-bg__gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 30%, transparent 30%, var(--black) 75%),
    linear-gradient(180deg, transparent 0%, var(--black) 100%);
}

/* ===== DISCLAIMER BANNER ===== */
.disclaimer-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--red-dark);
  color: var(--white);
  text-align: center;
  padding: var(--space-xs) var(--space-md);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.disclaimer-banner__close {
  position: absolute;
  right: var(--space-md);
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 1.2rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== TOP NAVIGATION ===== */
.top-nav {
  position: fixed;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  pointer-events: none;
  transition: top 0.3s var(--ease-out);
}

.top-nav.disclaimer-closed {
  top: 0;
}

.top-nav__item {
  pointer-events: auto;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-pill);
  border: 1px solid var(--white-20);
  background: var(--white-05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-family: var(--font-primary);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: all var(--duration-normal) var(--ease-out);
  min-height: 44px;
  cursor: pointer;
}

.pill-btn:hover {
  background: var(--white-10);
  border-color: var(--white-40);
  transform: translateY(-1px);
}

.pill-btn:active {
  transform: translateY(0);
}

.pill-btn--accent {
  border-color: var(--red);
  background: var(--red-subtle);
}

.pill-btn--accent:hover {
  background: var(--red-glow);
  border-color: var(--red);
  box-shadow: 0 0 20px var(--red-glow);
}

/* ===== SIDE NAVIGATION ===== */
.side-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: linear-gradient(180deg, transparent 0%, var(--black) 30%);
  padding: var(--space-lg) var(--space-md) var(--space-md);
}

.side-nav::-webkit-scrollbar {
  display: none;
}

.side-nav__btn {
  flex-shrink: 0;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--white-40);
  white-space: nowrap;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
}

.side-nav__btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: all var(--duration-normal) var(--ease-out);
  transform: translateX(-50%);
}

.side-nav__btn:hover {
  color: var(--white-60);
}

.side-nav__btn.active {
  color: var(--white);
  font-weight: 700;
}

.side-nav__btn.active::after {
  width: 100%;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding-top: calc(28px + var(--nav-height));
  padding-bottom: calc(var(--nav-height) + var(--space-xl));
}

/* ===== SECTIONS ===== */
.section {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section__inner {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

/* ===== SECTION: HERO ===== */
.hero {
  text-align: center;
  padding-top: var(--space-4xl);
  position: relative;
  overflow: hidden;
}

.hero__ticker {
  font-family: var(--font-primary);
  font-size: var(--fs-hero);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.9;
  background: linear-gradient(135deg, var(--white) 0%, var(--red) 50%, var(--gold) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease-in-out infinite alternate;
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-family: var(--font-mono);
  font-size: var(--fs-h3);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: var(--space-xl);
}

.hero__desc {
  font-size: var(--fs-body);
  color: var(--white-60);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
}

.hero__chain {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-lg);
  border-radius: var(--radius-pill);
  border: 1px solid var(--white-10);
  background: var(--white-05);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--white-40);
  letter-spacing: 0.1em;
}

.hero__chain-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green-glow);
  animation: pulse 2s ease-in-out infinite;
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--white-30);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--white-30), transparent);
}

/* ===== SECTION: CREATOR ===== */
.creator__grid {
  display: grid;
  gap: var(--space-xl);
}

.creator__header {
  margin-bottom: var(--space-lg);
}

.section__label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-sm);
}

.section__title {
  font-size: var(--fs-h1);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.section__title span {
  color: var(--white-40);
  font-weight: 400;
}

.creator__bio {
  color: var(--white-60);
  font-size: var(--fs-body);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 600px;
}

.creator__journey {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.journey-step {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  transition: all var(--duration-normal) var(--ease-out);
}

.journey-step:hover {
  background: var(--white-10);
  border-color: var(--white-20);
  transform: translateX(4px);
}

.journey-step__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--red-subtle);
  border: 1px solid var(--red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.journey-step__text {
  font-size: var(--fs-small);
  color: var(--white-90);
}

.journey-step__text strong {
  color: var(--white);
  font-weight: 600;
}

.journey-step__text .year {
  color: var(--white-40);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.stat-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.stat-card:hover {
  background: var(--white-10);
  border-color: var(--white-20);
  transform: translateY(-2px);
}

.stat-card__value {
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xs);
  background: linear-gradient(135deg, var(--gold) 0%, var(--white) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card__label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--white-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== SECTION: WHY BUY ===== */
.why-buy {
  min-height: auto;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.why-buy__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.step-card {
  position: relative;
  padding: var(--space-lg);
  padding-left: calc(var(--space-lg) + 50px);
  border-radius: var(--radius-lg);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  transition: all var(--duration-normal) var(--ease-out);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.step-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-card:hover {
  background: var(--white-10);
  border-color: var(--white-20);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), var(--gold));
  opacity: 0;
  transition: opacity var(--duration-normal);
}

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

.step-card__number {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  font-family: var(--font-mono);
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  opacity: 0.5;
}

.step-card__title {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.step-card__desc {
  font-size: var(--fs-body);
  color: var(--white-60);
  line-height: 1.7;
}

.step-card__metric {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill);
  background: var(--gold-subtle);
  border: 1px solid rgba(255, 215, 0, 0.15);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.step-card__metric--green {
  background: var(--green-subtle);
  border-color: rgba(0, 255, 65, 0.15);
  color: var(--green);
}

.step-card__metric--red {
  background: var(--red-subtle);
  border-color: rgba(255, 23, 68, 0.15);
  color: var(--red);
}

/* Exchange badges */
.exchange-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.exchange-badge {
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--white-60);
  letter-spacing: 0.05em;
}

/* Disclaimer callout */
.callout {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--white-10);
  background: var(--white-05);
}

.callout--warning {
  border-color: rgba(255, 193, 7, 0.2);
  background: rgba(255, 193, 7, 0.05);
}

.callout__icon {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.callout__text {
  font-size: var(--fs-small);
  color: var(--white-60);
  line-height: 1.7;
}

.callout__text strong {
  color: var(--gold);
}

/* ===== SECTION: GIVING BACK ===== */
.giving-back {
  min-height: auto;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.giving-back__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.giving-stat {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--white-05), transparent);
  border: 1px solid var(--white-10);
}

.giving-stat__value {
  font-size: var(--fs-h1);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--red) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.giving-stat__label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--white-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: var(--space-xs);
}

/* Story cards */
.stories {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.stories__header {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--white-10);
}

.story-card {
  display: grid;
  gap: var(--space-lg);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  transition: all var(--duration-normal) var(--ease-out);
  opacity: 0;
  transform: translateY(20px);
}

.story-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.story-card:hover {
  background: var(--white-10);
  border-color: var(--white-20);
}

.story-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.story-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-body);
  flex-shrink: 0;
}

.story-card__username {
  font-weight: 700;
  font-size: var(--fs-h3);
}

.story-card__handle {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--white-40);
}

.story-card__quote {
  font-size: var(--fs-body);
  color: var(--white-90);
  line-height: 1.8;
  font-style: italic;
  padding-left: var(--space-lg);
  border-left: 2px solid var(--red);
  position: relative;
}

.story-card__desc {
  font-size: var(--fs-small);
  color: var(--white-60);
  line-height: 1.7;
}

.story-card__response {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--green-subtle);
  border: 1px solid rgba(0, 255, 65, 0.1);
}

.story-card__response-label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.story-card__response-text {
  font-size: var(--fs-body);
  color: var(--white-90);
  font-weight: 600;
}

.story-card__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--white-10);
  max-height: 300px;
}

.story-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== SECTION: COMMUNITY ===== */
.community__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.community__tagline {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}

.community__tagline em {
  font-style: normal;
  color: var(--red);
}

.community__desc {
  font-size: var(--fs-body);
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.culture-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  text-align: left;
}

.culture-item {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.culture-item:hover {
  background: var(--white-10);
  border-color: var(--white-20);
  transform: translateY(-2px);
}

.culture-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.culture-item__title {
  font-weight: 700;
  font-size: var(--fs-body);
  margin-bottom: var(--space-xs);
}

.culture-item__desc {
  font-size: var(--fs-small);
  color: var(--white-60);
  line-height: 1.6;
}

/* Community CTA */
.community__cta {
  margin-top: var(--space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  font-weight: 700;
  font-size: var(--fs-body);
  letter-spacing: 0.05em;
  transition: all var(--duration-normal) var(--ease-out);
  min-height: 52px;
  box-shadow: 0 4px 20px var(--red-glow);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-secondary {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--white-40);
  letter-spacing: 0.1em;
}

/* ===== INFO PANEL ===== */
.info-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 90vw);
  z-index: 950;
  background: var(--dark);
  border-left: 1px solid var(--white-10);
  padding: var(--space-3xl) var(--space-xl);
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out);
  overflow-y: auto;
}

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

.info-panel__backdrop {
  position: fixed;
  inset: 0;
  z-index: 940;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal);
  cursor: pointer;
}

.info-panel__backdrop.open {
  opacity: 1;
  visibility: visible;
}

.info-panel__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white-60);
  transition: color var(--duration-fast);
}

.info-panel__close:hover {
  color: var(--white);
}

.info-panel__label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-md);
}

.info-panel__title {
  font-size: var(--fs-h2);
  font-weight: 700;
  margin-bottom: var(--space-xl);
}

.info-panel__text {
  font-size: var(--fs-body);
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.info-panel__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.info-panel__link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  font-size: var(--fs-small);
  font-weight: 500;
  transition: all var(--duration-fast);
  min-height: 44px;
}

.info-panel__link:hover {
  background: var(--white-10);
  border-color: var(--white-20);
}

.info-panel__link-icon {
  font-size: 1.2rem;
}

.info-panel__disclaimer {
  margin-top: var(--space-2xl);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--red-subtle);
  border: 1px solid rgba(255, 23, 68, 0.15);
}

.info-panel__disclaimer-title {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: var(--space-sm);
}

.info-panel__disclaimer-text {
  font-size: var(--fs-small);
  color: var(--white-60);
  line-height: 1.7;
}

/* ===== CUSTOM CURSOR (Desktop) ===== */
.custom-cursor {
  display: none;
}

/* ===== BOTTOM NAVIGATION ===== */
.bottom-info {
  position: fixed;
  bottom: 60px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--space-lg);
  pointer-events: none;
  opacity: 0;
}

.bottom-info__text {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--white-30);
  letter-spacing: 0.1em;
}

/* ===== MARQUEE BANNER ===== */
.marquee {
  position: relative;
  overflow: hidden;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  margin: var(--space-2xl) 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee__item {
  flex-shrink: 0;
  padding: 0 var(--space-xl);
  font-family: var(--font-mono);
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white-10);
  white-space: nowrap;
}

.marquee__item .accent {
  color: var(--red);
  opacity: 0.3;
}

/* ===== CONTRACT ADDRESS ===== */
.contract-display {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contract-display__label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--white-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contract-display__address {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--gold);
  word-break: break-all;
  line-height: 1.6;
}

.contract-display__warning {
  font-size: var(--fs-xs);
  color: var(--red);
  font-style: italic;
  line-height: 1.5;
}

.contract-display__copy {
  align-self: flex-start;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-pill);
  background: var(--white-10);
  border: 1px solid var(--white-20);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--white-60);
  min-height: 36px;
  transition: all var(--duration-fast);
}

.contract-display__copy:hover {
  background: var(--white-20);
  color: var(--white);
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--green-glow); }
  50% { opacity: 0.5; box-shadow: 0 0 16px var(--green-glow); }
}

@keyframes stripPulse {
  0% { opacity: 0.3; transform: translateY(-10%); }
  100% { opacity: 0.7; transform: translateY(10%); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Staggered children animations */
.stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(9) { transition-delay: 0.45s; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .bg-strip__blur {
    animation: none;
    opacity: 0.4;
  }

  .marquee__track {
    animation: none;
  }

  .hero__ticker {
    animation: none;
    background-position: 0% 50%;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ===== RESPONSIVE: TABLET (768px+) ===== */
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .story-card {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .story-card__image {
    max-height: 250px;
  }

  .giving-back__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== RESPONSIVE: DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {
  :root {
    --side-nav-width: 200px;
  }

  /* Side nav becomes vertical on desktop */
  .side-nav {
    top: 50%;
    bottom: auto;
    right: auto;
    left: 0;
    transform: translateY(-50%);
    flex-direction: column;
    width: var(--side-nav-width);
    background: none;
    padding: 0 var(--space-md);
    overflow: visible;
  }

  .side-nav__btn {
    border-bottom: none;
    border-left: 2px solid transparent;
    padding: var(--space-sm) var(--space-lg);
  }

  .side-nav__btn::after {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 2px;
    height: 0;
    transform: none;
  }

  .side-nav__btn.active::after {
    height: 100%;
    width: 2px;
  }

  .main-content {
    padding-left: var(--side-nav-width);
  }

  .section {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .creator__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .bottom-info {
    display: flex;
    opacity: 1;
    bottom: var(--space-md);
    padding: 0 var(--space-xl);
  }

  /* Custom cursor on desktop */
  .custom-cursor {
    display: block;
    position: fixed;
    z-index: 9999;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--white-60);
    pointer-events: none;
    transition: width 0.3s var(--ease-out),
                height 0.3s var(--ease-out),
                border-color 0.3s var(--ease-out),
                background 0.3s var(--ease-out);
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
  }

  .custom-cursor.hovering {
    width: 48px;
    height: 48px;
    border-color: var(--red);
    background: var(--red-glow);
  }

  body {
    cursor: none;
  }

  a, button {
    cursor: none;
  }
}

/* ===== RESPONSIVE: WIDE (1440px+) ===== */
@media (min-width: 1440px) {
  :root {
    --content-max-width: 1400px;
  }

  .section {
    padding: var(--space-4xl) var(--space-3xl);
  }
}

/* ===== UTILITY CLASSES ===== */
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-muted { color: var(--white-60); }
.text-dim { color: var(--white-40); }

.font-mono { font-family: var(--font-mono); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== CREATOR PFP ===== */
.creator__pfp {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: var(--space-lg);
}

.creator__pfp-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}

.creator__pfp-fallback {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-200), var(--dark-400));
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.creator__pfp-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--red);
  border-right-color: var(--gold);
  animation: pfpSpin 4s linear infinite;
}

.creator__pfp-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  border: 2px solid var(--black);
  text-decoration: none;
  min-width: 26px;
  min-height: 26px;
}

@keyframes pfpSpin {
  to { transform: rotate(360deg); }
}

/* ===== STORY CARD LINK ===== */
.story-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-pill);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--white-60);
  letter-spacing: 0.05em;
  transition: all var(--duration-normal) var(--ease-out);
  min-height: 44px;
  text-decoration: none;
}

.story-card__link:hover {
  background: var(--white-10);
  border-color: var(--white-40);
  color: var(--white);
  transform: translateY(-1px);
}

/* ===== DASHBOARD SECTION ===== */
.dashboard {
  min-height: auto;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.dashboard__subtitle {
  font-size: var(--fs-small);
  color: var(--white-40);
  margin-bottom: var(--space-xl);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* Metric cards */
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.dash-metric {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  transition: all var(--duration-normal) var(--ease-out);
}

.dash-metric:hover {
  background: var(--white-10);
  border-color: var(--white-20);
}

.dash-metric__label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--white-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.dash-metric__value {
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.dash-metric__change {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--white-40);
  margin-top: 2px;
}

.dash-metric__change--up { color: var(--green); }
.dash-metric__change--gold { color: var(--gold); }

/* Chart panels */
.dash-charts {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.dash-panel {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  overflow: hidden;
}

.dash-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.dash-panel__title {
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.dash-panel__sub {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--white-40);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.dash-panel__tabs {
  display: flex;
  gap: 2px;
  background: var(--white-05);
  border-radius: var(--radius-sm);
  padding: 2px;
}

.dash-tab {
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--white-40);
  transition: all var(--duration-fast);
  min-height: 32px;
}

.dash-tab.active {
  background: var(--white-10);
  color: var(--green);
}

.dash-tab:hover:not(.active) {
  color: var(--white-60);
}

/* Canvas wraps */
.dash-panel__canvas-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.dash-panel__canvas-wrap canvas {
  width: 100%;
  height: auto;
  display: block;
}

.dash-panel__canvas-wrap--donut {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.dash-panel__tooltip {
  position: absolute;
  display: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  background: var(--dark);
  border: 1px solid var(--white-20);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--white);
  pointer-events: none;
  z-index: 10;
  white-space: nowrap;
}

/* Donut center label */
.donut-center {
  position: absolute;
  text-align: center;
}

.donut-center__value {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--white);
}

.donut-center__label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--white-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Donut legend */
.donut-legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  justify-content: center;
}

.donut-legend__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
  color: var(--white-60);
}

.donut-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Fee bars */
.fee-bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.fee-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
}

.fee-bar__label {
  font-size: var(--fs-small);
  color: var(--white-60);
}

.fee-bar__track {
  height: 8px;
  border-radius: 4px;
  background: var(--white-05);
  overflow: hidden;
}

.fee-bar__fill {
  height: 100%;
  border-radius: 4px;
  background: var(--red);
  transition: width 1.5s var(--ease-out);
}

.fee-bar__fill--gold {
  background: var(--gold);
}

.fee-bar__fill--green {
  background: var(--green);
}

.fee-bar__value {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--white-90);
  font-weight: 600;
}

.fee-bar--highlight {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--gold-subtle);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

/* Pulse stats */
.pulse-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.pulse-stat {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
}

.pulse-stat__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pulse-stat__dot--red { background: var(--red); }
.pulse-stat__dot--gold { background: var(--gold); }
.pulse-stat__dot--green { background: var(--green); }

.pulse-stat__label {
  color: var(--white-40);
  flex: 1;
}

.pulse-stat__value {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--white-90);
}

/* Dashboard disclaimer */
.dash-disclaimer {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--white-30);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.dash-disclaimer a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Dashboard responsive */
@media (min-width: 768px) {
  .dash-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .dash-charts {
    grid-template-columns: 1fr 1fr;
  }

  .dash-panel--wide {
    grid-column: 1 / -1;
  }

  .fee-bar {
    grid-template-columns: 160px 1fr auto;
    align-items: center;
    gap: var(--space-md);
  }

  .pulse-stats {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .dash-metrics {
    grid-template-columns: repeat(6, 1fr);
  }

  .creator__pfp {
    width: 120px;
    height: 120px;
  }
}

/* ===== LIVE DATA INDICATOR ===== */
.dash-live-indicator {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
}

.dash-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green-glow);
  animation: livePulse 2s ease-in-out infinite;
}

.dash-live-dot--offline {
  background: var(--red);
  box-shadow: 0 0 8px var(--red-glow);
  animation: none;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--green-glow); }
  50% { opacity: 0.5; box-shadow: 0 0 16px var(--green-glow); }
}

.dash-live-text {
  color: var(--green);
  letter-spacing: 0.05em;
}

.dash-live-text--offline {
  color: var(--white-40);
}

.dash-live-source {
  color: var(--white-30);
  letter-spacing: 0.03em;
}

/* ===== METRIC UPDATE FLASH ===== */
.dash-metric--flash .dash-metric__value {
  animation: metricFlash 0.6s ease-out;
}

@keyframes metricFlash {
  0% { color: var(--green); text-shadow: 0 0 10px var(--green-glow); }
  100% { color: var(--white); text-shadow: none; }
}

.dash-metric--flash-down .dash-metric__value {
  animation: metricFlashDown 0.6s ease-out;
}

@keyframes metricFlashDown {
  0% { color: var(--red); text-shadow: 0 0 10px var(--red-glow); }
  100% { color: var(--white); text-shadow: none; }
}

/* ===== LIQUIDITY POOLS ===== */
.liq-pools {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.liq-pool {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: var(--white-05);
  border: 1px solid var(--white-10);
  transition: all var(--duration-fast);
}

.liq-pool:hover {
  background: var(--white-10);
  border-color: var(--white-20);
}

.liq-pool__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.liq-pool__name {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--white-90);
}

.liq-pool__dex {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--white-40);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  background: var(--white-05);
}

.liq-pool__bar-wrap {
  height: 6px;
  border-radius: 3px;
  background: var(--white-05);
  overflow: hidden;
}

.liq-pool__bar {
  height: 100%;
  border-radius: 3px;
  transition: width 1s var(--ease-out);
}

.liq-pool__bar--green { background: var(--green); }
.liq-pool__bar--gold { background: var(--gold); }
.liq-pool__bar--red { background: var(--red); }
.liq-pool__bar--blue { background: #1e88e5; }

.liq-pool__stats {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
}

.liq-pool__liq {
  color: var(--green);
  font-weight: 600;
}

.liq-pool__vol {
  color: var(--white-40);
}

/* ===== ACTIVITY STATS ===== */
.activity-stats {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.activity-stat {
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.activity-stat__value {
  font-size: var(--fs-h3);
  font-weight: 700;
}

.activity-stat__value--green { color: var(--green); }
.activity-stat__value--red { color: var(--red); }
.activity-stat__value--white { color: var(--white); }

.activity-stat__label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--white-40);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .liq-pool {
    grid-template-columns: 160px 1fr auto;
    align-items: center;
    gap: var(--space-md);
  }

  .liq-pool__bar-wrap {
    height: 8px;
  }
}
