/* Fonts: Anton (display), Inter (body) */
:root {
  --bg: #0b0b0b;
  --fg: #e6e6e6;
  --muted: #8b8b8b;
  --red: #ff2f2f;
  --green: #00d47e;
  --black: #000000;
  --accent: var(--red);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: radial-gradient(1200px 800px at 70% 20%, #141414, var(--bg)) fixed;
  color: var(--fg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
  overflow-x: hidden;
}

.wrap {
  position: relative;
  z-index: 2;
}

#sloganRain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero {
  min-height: 100svh;
  padding: 6rem 1.25rem 3rem;
  display: grid;
  place-items: center;
  gap: 1.25rem;
  text-align: center;
}

.hero-card {
  position: relative;
  border: 1px solid transparent;
  border-radius: 22px;
  /* Metallic stroke via layered backgrounds */
  background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)) padding-box,
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06) 40%, rgba(255,255,255,0.18)) border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 40px 90px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 6px 20px rgba(0,0,0,0.6) inset;
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  padding: 2.25rem 1.5rem 1.75rem;
  max-width: 1080px;
  width: min(96vw, 1080px);
  overflow: hidden;
}

.hero-card {
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.hero-card:hover { transform: scale(1.02); }

/* Floating price flyer */
.price-flyer {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 8px 10px;
  z-index: 2;
  box-shadow: 0 8px 22px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04) inset;
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
}

.price-flyer .price-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 8px;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: clamp(12px, 2vw, 14px);
  color: #cfcfcf;
  background: rgba(255,255,255,0.05);
}

.price-flyer .price-line.crossed {
  position: relative;
  color: #a6a6a6;
}

.price-flyer .price-line.crossed::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,47,47,0.7), rgba(0,212,126,0.7));
  transform: rotate(-8deg);
}

.price-flyer .price-line.now {
  background: linear-gradient(135deg, var(--green), #00a96e 60%);
  color: #000;
  box-shadow: 0 6px 18px rgba(0,212,126,0.25);
}

@media (max-width: 520px) {
  .price-flyer {
    top: 10px;
    right: 10px;
    gap: 4px;
    padding: 6px 8px;
  }
  .price-flyer .price-line { height: 26px; padding: 0 6px; }
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  /* Brushed metal texture */
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.07) 0 1px, rgba(255,255,255,0.02) 1px 3px),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
  mix-blend-mode: overlay;
  opacity: 0.18;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  /* Edge highlight + vignette */
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0) 22%),
    radial-gradient(120% 120% at 50% 120%, rgba(0,0,0,0.5), rgba(0,0,0,0) 55%);
  mix-blend-mode: screen;
  opacity: 0.25;
}

.glitch {
  font-family: Anton, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.5rem, 9vw, 10rem);
  letter-spacing: 0.04em;
  position: relative;
  text-transform: uppercase;
  color: #fff;
  text-shadow:
    0 0 16px rgba(255, 255, 255, 0.25),
    0 0 32px rgba(255, 47, 47, 0.35),
    0 0 48px rgba(0, 212, 126, 0.2);
  animation: pulseGlow 3s ease-in-out infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.15));
}

.glitch::before {
  color: var(--red);
  transform: translate(-2px, 0);
  clip-path: polygon(0 2%, 100% 0, 100% 40%, 0 38%);
  animation: glitchTop 2.2s infinite steps(12);
}

.glitch::after {
  color: var(--green);
  transform: translate(2px, 0);
  clip-path: polygon(0 62%, 100% 60%, 100% 100%, 0 98%);
  animation: glitchBottom 2.6s infinite steps(14);
}

.glitch span {
  display: inline-block;
  transform: translateZ(0);
}

@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(255,255,255,0.25), 0 0 30px rgba(255,47,47,0.35), 0 0 50px rgba(0,212,126,0.2); }
  50% { text-shadow: 0 0 30px rgba(255,255,255,0.5), 0 0 50px rgba(255,47,47,0.6), 0 0 80px rgba(0,212,126,0.35); }
}

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

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

.splash {
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  filter: drop-shadow(0 0 6px rgba(255, 47, 47, 0.5));
  transform: rotate(-3deg);
  animation: float 4s ease-in-out infinite;
  will-change: transform;
}

.splash #splashText {
  display: inline-block;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 47, 47, 0.35);
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  font-size: clamp(0.9rem, 2.5vw, 1.25rem);
}

/* Shake animation when the slogan changes */
.splash #splashText.shake {
  animation: splashShake 460ms ease-in-out both;
}

@keyframes splashShake {
  0% { transform: translate(0, 0) rotate(0); }
  15% { transform: translate(-2px, -1px) rotate(-1deg); }
  30% { transform: translate(3px, 1px) rotate(1deg); }
  45% { transform: translate(-3px, 0) rotate(-0.8deg); }
  60% { transform: translate(2px, -1px) rotate(0.8deg); }
  75% { transform: translate(-2px, 1px) rotate(-0.5deg); }
  100% { transform: translate(0, 0) rotate(0); }
}

@keyframes float {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-5px); }
}

.tagline {
  max-width: 60ch;
  margin: 0 auto 0.5rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
}

.pitch-inline {
  max-width: 70ch;
  margin: 0.25rem auto 0.75rem;
  color: #d0d0d0;
}

.info {
  padding: 2rem 1rem 3.5rem;
  display: grid;
  place-items: center;
}

.info-card {
  position: relative;
  border: 1px solid transparent;
  border-radius: 18px;
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)) padding-box,
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06) 40%, rgba(255,255,255,0.18)) border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 6px 18px rgba(0,0,0,0.55) inset;
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  padding: 0.9rem 1rem;
  max-width: 760px;
  width: min(92vw, 760px);
  text-align: center;
  color: #d0d0d0;
  animation: infoShake 1.6s ease-in-out infinite;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.info-card:hover { transform: scale(1.02); }

@keyframes infoShake {
  0% { transform: translate(0, 0) rotate(0); }
  10% { transform: translate(-3px, 1px) rotate(-0.6deg); }
  20% { transform: translate(3px, -1px) rotate(0.6deg); }
  30% { transform: translate(-2px, 2px) rotate(-0.5deg); }
  40% { transform: translate(2px, -2px) rotate(0.5deg); }
  50% { transform: translate(-3px, 1px) rotate(-0.6deg); }
  60% { transform: translate(3px, -1px) rotate(0.6deg); }
  70% { transform: translate(-2px, 2px) rotate(-0.5deg); }
  80% { transform: translate(2px, -2px) rotate(0.5deg); }
  100% { transform: translate(0, 0) rotate(0); }
}

.cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

.btn {
  text-decoration: none;
  border-radius: 10px;
  padding: 0.85rem 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
  will-change: transform;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--red), #9b0000 60%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 47, 47, 0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ff5050, #b30000 60%);
}

.btn-ghost {
  background: rgba(0,0,0,0.4);
  color: var(--green);
  border: 1px solid rgba(0, 212, 126, 0.35);
  box-shadow: 0 10px 24px rgba(0, 212, 126, 0.15);
}
.btn-ghost:hover { background: rgba(0,0,0,0.55); }

.pitch {
  padding: 3rem 1.25rem 4rem;
  max-width: 900px;
  margin: 0 auto;
  color: #d0d0d0;
}
.pitch p { font-size: 1.05rem; }

.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.noscript {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 0.75rem 1rem;
  border-top: 1px solid #333;
  z-index: 3;
}

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Design tokens */
:root {
  --bg: #000000;
  --fg: #f2f2f2;
  --muted: #b5b5b5;
  --red: #ff0033;
  --green: #00ffa0;
  --accent: #ff2e63;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  background: radial-gradient(1200px 800px at 70% 20%, rgba(255,0,50,0.06), transparent 60%),
              radial-gradient(900px 600px at 20% 80%, rgba(0,255,160,0.06), transparent 60%),
              var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.4;
  overflow-x: hidden;
}

/* Background canvas */
#sloganRain {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* Layout */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 80vh;
  padding: 48px 20px 24px;
}

.brand {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 10px;
  text-align: center;
}

@media (min-width: 880px) {
  .brand {
    grid-template-columns: auto auto;
    align-items: center;
    gap: 24px;
    text-align: left;
  }
}

/* Glitch title */
.glitch {
  --glow: 0 0 18px rgba(255, 0, 51, 0.55), 0 0 36px rgba(0, 255, 160, 0.45);
  font-family: Anton, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(48px, 10vw, 180px);
  letter-spacing: 2px;
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 2px 0 var(--red), -2px 0 var(--green), var(--glow);
  position: relative;
  animation: pulse 2.4s ease-in-out infinite, chroma-drift 1.4s steps(2) infinite;
}

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

.glitch::before {
  text-shadow: -2px 0 var(--red);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 60%);
  animation: glitch-slice-1 2.2s infinite steps(2);
}

.glitch::after {
  text-shadow: 2px 0 var(--green);
  clip-path: polygon(0 60%, 100% 40%, 100% 100%, 0 100%);
  animation: glitch-slice-2 1.8s infinite steps(2);
}

@keyframes pulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(255,0,51,0.0)) drop-shadow(0 0 0 rgba(0,255,160,0.0)); }
  50% { filter: drop-shadow(0 0 12px rgba(255,0,51,0.35)) drop-shadow(0 0 16px rgba(0,255,160,0.25)); }
}

@keyframes chroma-drift {
  0% { text-shadow: -2px 0 var(--red), 2px 0 var(--green), var(--glow); }
  50% { text-shadow: -1px 0 var(--red), 1px 0 var(--green), var(--glow); }
  100% { text-shadow: -2px 0 var(--red), 2px 0 var(--green), var(--glow); }
}

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

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

/* Splash / rotating slogans */
.splash {
  font-weight: 800;
  color: var(--green);
  text-shadow: 0 0 8px rgba(0, 255, 160, 0.4);
  letter-spacing: 0.5px;
  font-size: clamp(14px, 2.4vw, 22px);
  opacity: 0.92;
  transform-origin: left center;
  transition: opacity 300ms ease, transform 300ms ease;
}

.splash.is-hide { opacity: 0; transform: translateY(-6px) rotate(-2deg) scale(0.98); }
.splash.is-show { opacity: 1; transform: translateY(0) rotate(0deg) scale(1); }

.tagline {
  max-width: 900px;
  text-align: center;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 20px);
  margin: 6px 0 0;
}

.cta {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn:active { transform: scale(0.98); }
.btn:hover { animation: btn-shake 0.35s ease-in-out both; }

@keyframes btn-shake {
  0% { transform: translateY(-2px) rotate(0); }
  25% { transform: translate(1px, -3px) rotate(-0.6deg); }
  50% { transform: translate(-1px, -1px) rotate(0.6deg); }
  75% { transform: translate(1px, -2px) rotate(-0.4deg); }
  100% { transform: translateY(-2px) rotate(0); }
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), #b80024 60%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 0, 51, 0.26);
}
.btn-primary:hover { box-shadow: 0 10px 28px rgba(255, 0, 51, 0.36); }

.btn-ghost {
  border-color: rgba(0,255,160,0.45);
  color: var(--green);
  background: rgba(0,255,160,0.06);
}
.btn-ghost:hover { background: rgba(0,255,160,0.12); }

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12vh;
  color: #777;
  font-size: 13px;
}

/* Always-on background fallback (shows even if JS/canvas fails) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  background:
    radial-gradient(1000px 700px at 75% 20%, rgba(255, 47, 47, 0.12), rgba(255, 47, 47, 0) 65%),
    radial-gradient(900px 650px at 22% 82%, rgba(0, 212, 126, 0.12), rgba(0, 212, 126, 0) 65%),
    repeating-linear-gradient(to bottom, rgba(255,255,255,0.06) 0 1px, rgba(0,0,0,0) 1px 3px);
  animation: bg-pan 16s linear infinite;
}

@keyframes bg-pan {
  0% { background-position: 0 0, 0 0, 0 0; }
  50% { background-position: 12px -18px, -10px 14px, 0 0; }
  100% { background-position: 0 0, 0 0, 0 0; }
}

/* Rage flash overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  mix-blend-mode: screen;
  background:
    radial-gradient(60vmax 60vmax at 70% 20%, rgba(255,47,47,0.0), rgba(255,47,47,0.0)),
    radial-gradient(60vmax 60vmax at 20% 80%, rgba(0,212,126,0.0), rgba(0,212,126,0.0));
}

body.flash-rage::after {
  animation: rageFlash 420ms ease-out;
}

@keyframes rageFlash {
  0% {
    opacity: 0;
    background:
      radial-gradient(60vmax 60vmax at 70% 20%, rgba(255,47,47,0.0), rgba(255,47,47,0.0)),
      radial-gradient(60vmax 60vmax at 20% 80%, rgba(0,212,126,0.0), rgba(0,212,126,0.0));
  }
  40% {
    opacity: 1;
    background:
      radial-gradient(60vmax 60vmax at 70% 20%, rgba(255,47,47,0.28), rgba(255,47,47,0.0)),
      radial-gradient(60vmax 60vmax at 20% 80%, rgba(0,212,126,0.28), rgba(0,212,126,0.0));
  }
  100% {
    opacity: 0;
    background:
      radial-gradient(60vmax 60vmax at 70% 20%, rgba(255,47,47,0.0), rgba(255,47,47,0.0)),
      radial-gradient(60vmax 60vmax at 20% 80%, rgba(0,212,126,0.0), rgba(0,212,126,0.0));
  }
}

.noscript {
  position: fixed;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: #ddd;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .glitch { animation: none; text-shadow: 1px 0 var(--red), -1px 0 var(--green); }
  .glitch::before, .glitch::after { animation: none; }
  .splash { transition: none; }
  body.flash-rage::after { animation: none; opacity: 0.18; }
}

/* Ensure canvas sits above the CSS fallback but below content */
#sloganRain { z-index: 1; }


/* Overrides and additions */
.hero-card {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Place price flyer below card and enlarge */
.hero > .price-flyer {
  position: static;
  margin: 10px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px 24px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.04) inset;
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.hero > .price-flyer:hover { transform: scale(1.02); }

.hero > .price-flyer .price-line {
  height: 60px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: clamp(24px, 3.5vw, 34px);
}

.hero > .price-flyer .price-line.crossed { color: #a6a6a6; }
.hero > .price-flyer .price-line.crossed::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.5);
}

@media (max-width: 520px) {
  .hero > .price-flyer { gap: 10px; padding: 12px 16px; }
  .hero > .price-flyer .price-line { height: 48px; padding: 0 14px; font-size: 20px; }
}

/* Copy-to-clipboard button feedback */
.btn-copy { position: relative; }
.btn-copy.copied { animation: btn-copied 900ms ease-in-out both; }
@keyframes btn-copied {
  0% { box-shadow: 0 0 0 rgba(0,212,126,0); transform: translateY(-2px) scale(1); }
  25% { box-shadow: 0 0 0 rgba(0,212,126,0.4); transform: translateY(-3px) scale(1.02); }
  50% { box-shadow: 0 0 0 rgba(0,212,126,0.6); transform: translateY(-2px) scale(1.01); }
  100% { box-shadow: 0 8px 22px rgba(0,212,126,0.26); transform: translateY(-2px) scale(1); }
}

.btn-copy::after {
  content: attr(data-copied);
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translate(-50%, -100%);
  font-size: 12px;
  color: var(--green);
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(0, 212, 126, 0.35);
  padding: 2px 6px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.btn-copy.copied::after {
  opacity: 1;
  transform: translate(-50%, -120%);
}

/* Ensure hero tagline is centered within the card with equal side margins */
.hero-card .tagline {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* High Effects toggle */
.effects-toggle {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 4;
  height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.5);
  color: #eee;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}
.effects-toggle:hover { transform: translateY(-2px); background: rgba(0,0,0,0.65); }
.effects-toggle[aria-pressed="true"] { color: #000; background: linear-gradient(135deg, var(--green), #00a96e 60%); box-shadow: 0 8px 22px rgba(0,212,126,0.26); }

/* Low effects mode: minimize motion and visuals */
.low-effects #sloganRain { display: none; }
.low-effects .glitch { animation: none; text-shadow: 0 0 0 rgba(0,0,0,0), 0 0 0 rgba(0,0,0,0); }
.low-effects .glitch::before, .low-effects .glitch::after { display: none; }
.low-effects .splash { animation: none; }
.low-effects .info-card { animation: none; }
.low-effects .btn:hover { animation: none; transform: none; }
.low-effects body::before { animation: none; }
.low-effects body.flash-rage::after { animation: none; opacity: 0; }
