/* ═══════════════════════════════════════════
   THE SCAM BULL — $SCAMBULL
   Warning / Scam Theme Stylesheet
   ═══════════════════════════════════════════ */

:root {
  --red: #ff1a1a;
  --red-dark: #8b0000;
  --red-glow: #ff3333;
  --amber: #ffaa00;
  --black: #0a0a0a;
  --black-soft: #111111;
  --gray: #1a1a1a;
  --gray-mid: #2a2a2a;
  --text: #e8e8e8;
  --text-dim: #888;
  --font-display: 'Bebas Neue', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --font-tech: 'Orbitron', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--black);
}

body {
  font-family: var(--font-mono);
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  cursor: crosshair;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 26, 26, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 170, 0, 0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(139, 0, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ─── Overlays & Effects ─── */

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

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

#scanlines {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 2px,
    rgba(0, 0, 0, 0.15) 4px
  );
}

#siren-lights {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10001;
  display: flex;
  pointer-events: none;
}

.siren-left, .siren-right {
  flex: 1;
  animation: siren-pulse 1s ease-in-out infinite alternate;
}

.siren-left {
  background: linear-gradient(90deg, var(--red), transparent);
  animation-delay: 0s;
}

.siren-right {
  background: linear-gradient(-90deg, var(--amber), transparent);
  animation-delay: 0.5s;
}

@keyframes siren-pulse {
  0% { opacity: 0.3; }
  100% { opacity: 1; box-shadow: 0 0 20px var(--red-glow); }
}

#particle-canvas,
#matrix-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

#matrix-canvas {
  opacity: 0.12;
  z-index: 2;
}

#cursor-trail {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.cursor-particle {
  position: absolute;
  font-size: 14px;
  color: var(--red);
  opacity: 0.8;
  animation: cursor-fade 1s ease-out forwards;
  text-shadow: 0 0 8px var(--red-glow);
}

@keyframes cursor-fade {
  to { opacity: 0; transform: translateY(-30px) scale(0.5); }
}

/* Breach toasts */
#breach-toasts {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: 320px;
}

.breach-toast {
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid var(--red);
  border-left: 4px solid var(--red);
  padding: 12px 16px;
  font-size: 11px;
  color: var(--text);
  box-shadow: 0 0 30px rgba(255, 26, 26, 0.3), inset 0 0 20px rgba(255, 26, 26, 0.05);
  animation: toast-slide 0.4s var(--ease-out-expo), toast-out 0.4s ease 4s forwards;
  font-family: var(--font-mono);
}

.breach-toast strong {
  color: var(--red);
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  letter-spacing: 2px;
}

@keyframes toast-slide {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes toast-out {
  to { transform: translateX(120%); opacity: 0; }
}

/* ─── Glitch Text ─── */

.glitch-text {
  position: relative;
  display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.glitch-text:hover::before,
.glitch-active::before {
  animation: glitch-1 0.3s linear;
  color: var(--red);
  opacity: 0.8;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  transform: translate(-3px, -1px);
}

.glitch-text:hover::after,
.glitch-active::after {
  animation: glitch-2 0.3s linear;
  color: cyan;
  opacity: 0.8;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  transform: translate(3px, 1px);
}

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

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

/* ─── Header ─── */

.site-header {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 1px solid rgba(255, 26, 26, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px min(4vw, 40px);
  gap: 20px;
}

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

.nav-logo img {
  border-radius: 50%;
  border: 2px solid var(--red);
  box-shadow: 0 0 15px rgba(255, 26, 26, 0.4);
  transition: transform 0.3s;
}

.nav-logo:hover img {
  transform: rotate(15deg) scale(1.1);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--red);
}

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

.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s, text-shadow 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--red);
  text-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  transition: 0.3s;
}

/* ─── Buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}

.btn-inner {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--red);
  color: var(--black);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-warning {
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.btn-warning:hover {
  background: rgba(255, 26, 26, 0.15);
  box-shadow: 0 0 20px rgba(255, 26, 26, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--gray-mid);
}

.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ─── Hero ─── */

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 120px min(4vw, 40px) 60px;
  z-index: 10;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: hero-ken-burns 25s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes hero-ken-burns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-1.5%, -1%);
  }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.75) 35%, rgba(10, 10, 10, 0.35) 65%, rgba(10, 10, 10, 0.55) 100%),
    linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(10, 10, 10, 0.6) 0%, transparent 25%);
  pointer-events: none;
}

.hero-bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, transparent 20%, rgba(10, 10, 10, 0.5) 100%);
  pointer-events: none;
}

.hero-grid-floor {
  position: absolute;
  bottom: 0;
  left: -50%;
  right: -50%;
  height: 40%;
  z-index: 1;
  opacity: 0.4;
  background:
    linear-gradient(rgba(255, 26, 26, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 26, 26, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: bottom center;
  animation: grid-scroll 20s linear infinite;
  mask-image: linear-gradient(to top, black 30%, transparent 100%);
}

@keyframes grid-scroll {
  to { background-position: 0 60px; }
}

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

.warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 26, 26, 0.1);
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.pulse-warning {
  animation: pulse-warning 2s ease-in-out infinite;
}

@keyframes pulse-warning {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 26, 26, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255, 26, 26, 0); }
}

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

.hero-title-line {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-dim);
  letter-spacing: 8px;
}

.hero-title-main {
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--red);
  text-shadow:
    0 0 20px rgba(255, 26, 26, 0.5),
    0 0 60px rgba(255, 26, 26, 0.2);
  letter-spacing: 4px;
}

.hero-sub {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 32px;
  border-left: 2px solid var(--red);
  padding-left: 16px;
}

.hero-sub-cite {
  display: block;
  color: var(--red);
  margin-top: 8px;
  font-size: 12px;
}

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

.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(255, 26, 26, 0.3);
  border-bottom: 1px solid rgba(255, 26, 26, 0.3);
  padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.ticker {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker span {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--red);
  opacity: 0.8;
}

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

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 3;
}

.hero-banner-wrap {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
}

.hero-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse, rgba(255, 26, 26, 0.25) 0%, transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
  z-index: -1;
}

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

.hero-banner {
  width: 100%;
  border: 2px solid rgba(255, 26, 26, 0.4);
  box-shadow:
    0 0 40px rgba(255, 26, 26, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.5);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  animation: banner-float 6s ease-in-out infinite;
}

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

.hero-logo-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  animation: logo-orbit 8s ease-in-out infinite;
}

.hero-logo-float img {
  width: 100%;
  border-radius: 50%;
  border: 3px solid var(--red);
  box-shadow: 0 0 30px rgba(255, 26, 26, 0.6);
}

@keyframes logo-orbit {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-10px, -15px) rotate(5deg); }
  50% { transform: translate(5px, -25px) rotate(-3deg); }
  75% { transform: translate(15px, -10px) rotate(8deg); }
}

.charge-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.charge-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  animation: charge-fly 1.5s ease-out forwards;
  box-shadow: 0 0 6px var(--red-glow);
}

@keyframes charge-fly {
  0% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0); }
}

/* Virus Scanner */
.virus-scan {
  margin-top: 24px;
  padding: 16px;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid var(--gray-mid);
  font-size: 11px;
}

.virus-scan-header {
  color: var(--red);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.blink {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.virus-scan-bar {
  height: 6px;
  background: var(--gray);
  overflow: hidden;
  margin-bottom: 8px;
}

.virus-scan-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--amber));
  transition: width 0.3s;
  box-shadow: 0 0 10px var(--red-glow);
}

.virus-scan-status {
  color: var(--text-dim);
  font-size: 10px;
}

/* ─── Sections ─── */

.section {
  position: relative;
  padding: 100px 0;
  z-index: 10;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 12px;
}

.section-num {
  font-family: var(--font-tech);
  font-size: 14px;
  opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 4px;
  color: var(--text);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-dim);
  font-size: 13px;
  margin-bottom: 48px;
  max-width: 500px;
}

/* ─── About Cards ─── */

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

.about-card {
  position: relative;
  padding: 32px 24px;
  background: rgba(17, 17, 17, 0.8);
  border: 1px solid var(--gray-mid);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.about-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(255, 26, 26, 0.15);
}

.card-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--red);
  border-style: solid;
  opacity: 0;
  transition: opacity 0.3s;
}

.about-card:hover .card-corner { opacity: 1; }
.card-corner.tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.card-corner.tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.card-corner.bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.card-corner.br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.about-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 12px;
}

.about-card p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-dim);
}

.redacted-block {
  padding: 24px 32px;
  background: rgba(255, 26, 26, 0.05);
  border: 1px dashed rgba(255, 26, 26, 0.3);
  font-size: 14px;
  line-height: 2;
}

.redacted {
  background: #000;
  color: transparent;
  padding: 2px 8px;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
}

.redacted:hover,
.redacted.revealed {
  background: transparent;
  color: var(--red);
  text-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
}

/* Reveal animation */
.reveal-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

/* ─── Tweets ─── */

.tweets {
  background: linear-gradient(180deg, transparent, rgba(139, 0, 0, 0.05), transparent);
}

.tweets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.tweet-card {
  position: relative;
  display: block;
  padding: 24px;
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid var(--gray-mid);
  transition: border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
  transform-style: preserve-3d;
}

.tweet-card:hover {
  border-color: var(--red);
  box-shadow: 0 0 40px rgba(255, 26, 26, 0.2);
}

.tweet-card.featured-tweet {
  grid-column: span 1;
  border-color: rgba(255, 26, 26, 0.4);
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.15), rgba(17, 17, 17, 0.9));
}

.tweet-featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--amber);
  background: rgba(255, 170, 0, 0.1);
  padding: 4px 8px;
  border: 1px solid var(--amber);
}

.tweet-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.tweet-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray-mid);
}

.tweet-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tweet-name {
  font-weight: bold;
  font-size: 14px;
}

.tweet-handle {
  font-size: 12px;
  color: var(--text-dim);
}

.tweet-date {
  font-size: 11px;
  color: var(--text-dim);
}

.tweet-body {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.tweet-body-large {
  font-size: 3rem;
  font-family: var(--font-display);
  color: var(--red);
}

.tweet-rt {
  display: inline-block;
  font-size: 11px;
  color: var(--text-dim);
  margin-right: 6px;
}

.tweet-quote {
  padding: 12px;
  border-left: 2px solid var(--gray-mid);
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-dim);
}

.tweet-quote-author {
  color: var(--red);
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
}

.tweet-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-dim);
  padding-top: 12px;
  border-top: 1px solid var(--gray-mid);
}

.tweet-link-label {
  color: var(--red);
  letter-spacing: 1px;
  transition: letter-spacing 0.3s;
}

.tweet-card:hover .tweet-link-label {
  letter-spacing: 3px;
}

.tweet-glitch-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 26, 26, 0.05), transparent);
  transform: translateX(-100%);
  pointer-events: none;
}

.tweet-card:hover .tweet-glitch-overlay {
  animation: tweet-scan 0.6s ease;
}

@keyframes tweet-scan {
  to { transform: translateX(100%); }
}

/* ─── Token ─── */

.token-panel {
  position: relative;
  padding: 48px;
  background: rgba(17, 17, 17, 0.9);
  border: 1px solid var(--red);
  overflow: hidden;
}

.token-panel::before {
  content: 'WARNING';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 10rem);
  color: rgba(255, 26, 26, 0.03);
  letter-spacing: 20px;
  pointer-events: none;
}

.token-panel-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.token-logo-wrap {
  position: relative;
  flex-shrink: 0;
}

.token-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid var(--red);
  position: relative;
  z-index: 1;
}

.spin-slow {
  animation: spin-slow 20s linear infinite;
}

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

.token-logo-ring {
  position: absolute;
  inset: -15px;
  border: 1px dashed var(--red);
  border-radius: 50%;
  animation: spin-slow 10s linear infinite reverse;
  opacity: 0.5;
}

.token-info {
  flex: 1;
}

.token-stat {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-mid);
}

.token-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-dim);
  text-transform: uppercase;
}

.token-stat-value {
  font-family: var(--font-tech);
  font-size: 14px;
  color: var(--red);
}

.token-contract {
  margin-top: 16px;
}

.contract-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 12px 16px;
  background: var(--black);
  border: 1px solid var(--gray-mid);
}

.contract-box code {
  flex: 1;
  font-size: 11px;
  color: var(--amber);
  word-break: break-all;
}

.copy-btn {
  background: none;
  border: 1px solid var(--gray-mid);
  color: var(--text-dim);
  padding: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.copy-btn:not(:disabled):hover {
  border-color: var(--red);
  color: var(--red);
}

.copy-btn.copied {
  border-color: #0f0;
  color: #0f0;
}

.token-disclaimer {
  margin-top: 20px;
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.6;
}

.waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
  margin-top: 32px;
  opacity: 0.4;
}

.waveform-bar {
  flex: 1;
  background: var(--red);
  min-height: 4px;
  transition: height 0.1s;
}

/* ─── Community ─── */

.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.community-card {
  position: relative;
  height: 280px;
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  display: block;
  transition: border-color 0.3s;
}

.community-card:hover {
  border-color: var(--red);
}

.community-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(80%) brightness(0.3);
  transition: filter 0.5s, transform 0.5s;
}

.community-card:hover .community-card-bg {
  filter: grayscale(40%) brightness(0.5);
  transform: scale(1.05);
}

.community-card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 40%, transparent);
}

.community-icon {
  color: var(--red);
  margin-bottom: 12px;
}

.community-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.community-card p {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.community-cta {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--red);
}

.footer-banner {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 26, 26, 0.3);
}

.footer-banner-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.4);
}

.footer-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-logo {
  width: 64px;
  border-radius: 50%;
  border: 2px solid var(--red);
  animation: logo-orbit 6s ease-in-out infinite;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 4px;
  color: var(--red);
  text-shadow: 0 0 20px rgba(255, 26, 26, 0.5);
}

/* ─── Footer ─── */

.site-footer {
  position: relative;
  z-index: 10;
  padding: 40px 0;
  border-top: 1px solid var(--gray-mid);
  background: rgba(10, 10, 10, 0.95);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner p {
  font-size: 10px;
  color: var(--text-dim);
  flex: 1;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--red);
  transition: text-shadow 0.2s;
}

.footer-links a:hover {
  text-shadow: 0 0 10px rgba(255, 26, 26, 0.5);
}

/* ─── Screen shake utility ─── */

.shake {
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* ─── Chromatic aberration on scroll ─── */

.chromatic {
  filter: url(#chromatic);
}

/* ─── Responsive ─── */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
    border-left: none;
    border-top: 2px solid var(--red);
    padding-left: 0;
    padding-top: 16px;
  }

  .hero-actions {
    justify-content: center;
  }

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

  .token-panel-inner {
    flex-direction: column;
    text-align: center;
  }
}

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

  .nav-toggle {
    display: flex;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 20px;
    border-bottom: 1px solid var(--red);
  }

  .nav.open .nav-cta {
    display: inline-flex;
    margin: 0 20px 20px;
  }

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

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

  .token-panel {
    padding: 24px;
  }
}
