/* MonoBlack Premium – PHP / All-Inkl */
:root {
  --neon: #00ff88;
  --neon-dim: #00cc6a;
  --neon-glow: rgba(0, 255, 136, 0.45);
  --void: #0a0a0a;
  --void-soft: #111111;
  --void-card: #141414;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.55);
  --border: rgba(255, 255, 255, 0.08);
  --gutter: clamp(20px, 4vw, 80px);
  --max-site: 1600px;
  --header-h: 72px;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  scrollbar-gutter: stable;
}
html {
  scrollbar-color: #1e4d32 var(--void);
  scrollbar-width: thin;
}
html::-webkit-scrollbar { width: 11px; }
html::-webkit-scrollbar-track { background: var(--void); }
html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #1a3d28, #0d2818);
  border-radius: 6px;
  border: 2px solid var(--void);
}
html::-webkit-scrollbar-thumb:hover { background: var(--neon-dim); }

body.mb-site {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  background: var(--void);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.mb-site > main { flex: 1 0 auto; width: 100%; }
::selection { background: rgba(0, 255, 136, 0.3); color: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.text-neon { color: var(--neon); }

/* Background */
.mb-bg { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.mb-bg__base { position: absolute; inset: 0; background: var(--void); }
.mb-bg__grid {
  position: absolute; inset: -50%;
  background-image:
    linear-gradient(rgba(0,255,136,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-scroll 40s linear infinite;
}
.mb-bg__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, var(--void) 72%);
}
.mb-bg__orb { position: absolute; border-radius: 50%; filter: blur(80px); }
.mb-bg__orb--1 { width: 500px; height: 500px; left: -10%; top: 8%; background: rgba(0,255,136,0.12); animation: pulse-orb 6s ease-in-out infinite; }
.mb-bg__orb--2 { width: 400px; height: 400px; right: -8%; top: 35%; background: rgba(16,185,129,0.08); animation: float-orb 8s ease-in-out infinite; }
.mb-bg__orb--3 { width: 280px; height: 280px; left: 28%; bottom: 5%; background: rgba(0,255,136,0.06); }
.mb-bg__noise {
  position: absolute; inset: 0; opacity: 0.035; mix-blend-mode: overlay;
  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");
}
@keyframes grid-scroll { to { transform: translate(60px, 60px); } }
@keyframes pulse-orb { 0%,100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
@keyframes float-orb { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* Header */
.mb-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s;
}
.mb-header.is-scrolled {
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.mb-header__inner {
  max-width: var(--max-site); margin: 0 auto;
  height: var(--header-h); padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem;
}
.mb-header__logo { display: block; line-height: 0; }
.mb-header__logo img {
  height: 40px; width: auto;
}
.mb-header__nav {
  justify-self: center; display: none; gap: 0.15rem; align-items: center;
}
.mb-header__link,
.mb-mobile-nav__link {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s var(--ease), text-shadow 0.25s var(--ease), background 0.25s;
}
.mb-header__link {
  padding: 0.65rem 1.15rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  border-radius: 8px;
}
.mb-header__link:hover {
  color: var(--neon);
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.35);
  background: rgba(0, 255, 136, 0.06);
}
.mb-header__link.is-active {
  color: var(--neon);
  text-shadow: 0 0 24px rgba(0, 255, 136, 0.45);
}
.mb-header__link.is-active::before,
.mb-header__link.is-active::after {
  content: "|";
  color: var(--neon);
  font-weight: 400;
  opacity: 0.85;
}
.mb-header__link.is-active::before { margin-right: 0.4em; }
.mb-header__link.is-active::after { margin-left: 0.4em; }
.mb-header__social {
  justify-self: end; display: none; gap: 0.25rem; align-items: center;
}
.mb-header__social-link {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; color: rgba(255,255,255,0.55); text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.mb-header__social-link:hover { color: var(--neon); background: rgba(255,255,255,0.05); }
.mb-header__toggle {
  justify-self: end; display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 44px; height: 44px; padding: 0; border: 1px solid var(--border);
  border-radius: 10px; background: rgba(255,255,255,0.03); cursor: pointer;
}
.mb-header__toggle-bar {
  display: block; width: 18px; height: 2px; margin: 0 auto;
  background: var(--neon); border-radius: 1px; transition: transform 0.3s, opacity 0.3s;
}
.mb-header__toggle[aria-expanded="true"] .mb-header__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mb-header__toggle[aria-expanded="true"] .mb-header__toggle-bar:nth-child(2) { opacity: 0; }
.mb-header__toggle[aria-expanded="true"] .mb-header__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mb-mobile-nav {
  border-top: 1px solid var(--border);
  background: rgba(10,10,10,0.96); backdrop-filter: blur(20px);
}
.mb-mobile-nav__inner { padding: 1.5rem var(--gutter) 2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.mb-mobile-nav__link {
  padding: 0.9rem 1rem;
  font-size: 1.05rem;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
}
.mb-mobile-nav__link:hover,
.mb-mobile-nav__link.is-active {
  color: var(--neon);
  background: rgba(0, 255, 136, 0.08);
}
.mb-mobile-nav__link.is-active::before {
  content: "| ";
  color: var(--neon);
}
.mb-mobile-nav__social {
  display: flex; gap: 0.75rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border);
}
.mb-mobile-nav__social a {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 12px; color: var(--neon); font-size: 1.2rem;
}

@media (min-width: 1024px) {
  .mb-header__nav, .mb-header__social { display: flex; }
  .mb-header__toggle { display: none; }
  .mb-mobile-nav { display: none !important; }
}

/* Sections */
.mb-section { padding: 6rem var(--gutter); }
.mb-section__inner { max-width: var(--max-site); margin: 0 auto; }
.mb-section__title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: -0.02em; margin: 0;
}
.mb-section__lead { margin: 1rem 0 0; font-size: 1.125rem; color: var(--text-muted); }

/* Hero */
.mb-hero {
  min-height: 100svh; display: flex; align-items: center; justify-content: center;
  padding: calc(var(--header-h) + 2rem) var(--gutter) 4rem; text-align: center;
}
.mb-hero__inner { max-width: 800px; width: 100%; position: relative; }
.mb-hero__logo-wrap { position: relative; display: inline-block; margin-bottom: 2.5rem; }
.mb-hero__logo-glow {
  position: absolute; inset: -20%; background: rgba(0,255,136,0.2); filter: blur(60px); border-radius: 50%;
  animation: hero-glow-pulse 3s ease-in-out infinite;
}
@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.mb-hero__logo {
  position: relative; display: block; width: min(280px, 70vw); height: auto; margin: 0 auto;
  animation: logo-pulse-hero 3s ease-in-out infinite;
}
.mb-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.mb-header__social-link .mb-icon,
.mb-mobile-nav__social .mb-icon { color: inherit; }
@keyframes logo-pulse-hero {
  0%, 100% {
    filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.3));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 70px rgba(0, 255, 136, 0.65));
    transform: scale(1.06);
  }
}
@media (max-width: 768px) {
  .mb-bg__grid { animation: none; }
  .mb-bg__orb { filter: blur(48px); }
  .mb-hero__logo-glow {
    filter: blur(32px);
    animation: none;
    opacity: 0.7;
  }
  .mb-hero__logo {
    animation: none;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.35));
  }
}
.mb-hero__tag {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--neon); margin: 0 0 1rem;
}
.mb-hero__title {
  font-family: var(--font-display); font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 700; letter-spacing: -0.03em; margin: 0; line-height: 1;
}
.mb-hero__text { margin: 1.5rem auto 0; max-width: 36rem; font-size: 1.125rem; color: var(--text-muted); line-height: 1.65; }
.mb-hero__actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.mb-hero__scroll {
  position: absolute; bottom: -3rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.35); font-size: 1.25rem; text-decoration: none;
  animation: bounce 2s infinite;
}
.mb-hero__scroll:hover { color: var(--neon); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* Buttons */
.mb-btn {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0 1.75rem; height: 48px;
  font-size: 0.95rem; font-weight: 600; text-decoration: none; border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.mb-btn--primary {
  background: var(--neon); color: var(--void); border: none;
  box-shadow: 0 0 24px rgba(0,255,136,0.25);
}
.mb-btn--primary:hover { background: var(--neon-dim); box-shadow: 0 0 40px rgba(0,255,136,0.35); transform: translateY(-1px); }
.mb-btn--glass {
  background: rgba(255,255,255,0.04); color: #fff; border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.mb-btn--glass:hover { border-color: rgba(0,255,136,0.35); background: rgba(0,255,136,0.08); }

/* Stats */
.mb-stats { padding-top: 2rem; padding-bottom: 4rem; }
.mb-stats__grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) {
  .mb-stats__grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 520px) {
  .mb-stats__grid { grid-template-columns: 1fr; }
}
.mb-stat-card {
  position: relative; display: block; padding: 2rem; border-radius: 16px; overflow: hidden;
  text-decoration: none; color: inherit;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent);
  backdrop-filter: blur(16px);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.mb-stat-card:hover { border-color: rgba(0,255,136,0.3); box-shadow: 0 0 40px rgba(0,255,136,0.12); transform: translateY(-2px); }
.mb-stat-card__glow {
  position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,255,136,0.08), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.mb-stat-card:hover .mb-stat-card__glow { opacity: 1; }
.mb-stat-card__body { position: relative; display: flex; justify-content: space-between; align-items: flex-start; }
.mb-stat-card__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.45); margin: 0; }
.mb-stat-card__value {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700; margin: 0.5rem 0 0; line-height: 1;
}
.mb-stat-card__icon {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; border: 1px solid rgba(0,255,136,0.25); background: rgba(0,255,136,0.1);
  color: var(--neon); font-size: 1.5rem;
}

/* About */
.mb-about__grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .mb-about__grid { grid-template-columns: minmax(280px, 380px) 1fr; gap: 4rem; } }
.mb-about__frame {
  position: relative; padding: 1px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,255,136,0.45), rgba(0,255,136,0.1), transparent);
}
.mb-about__frame > div, .mb-about__frame img { border-radius: 15px; }
.mb-about__frame img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--void-card); }
.mb-about__meta { margin: 0.75rem 0 0; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.4); }
.mb-about__text { margin-top: 2rem; }
.mb-about__text p { margin: 0 0 1.25rem; font-size: 1.05rem; line-height: 1.7; color: var(--text-muted); }
.mb-about__highlight { color: rgba(255,255,255,0.85) !important; }

/* Support */
.mb-support { border-top: 1px solid rgba(255,255,255,0.04); }
.mb-support__head { margin-bottom: 2.75rem; }
.mb-support__grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.mb-support-card {
  position: relative; border-radius: 16px; overflow: hidden; min-height: 200px;
  border: 1px solid var(--border); background: var(--void-card);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.mb-support-card:hover { border-color: rgba(0,255,136,0.25); box-shadow: 0 0 30px rgba(0,255,136,0.1); }
.mb-support-card__bg {
  position: absolute; inset: 0; opacity: 0.12; background-size: cover; background-position: center;
  transition: opacity 0.3s;
}
.mb-support-card:hover .mb-support-card__bg { opacity: 0.2; }
.mb-support-card__body { position: relative; padding: 1.5rem; text-align: center; }
.mb-support-card__name { font-family: var(--font-display); font-size: 1.25rem; margin: 0; color: var(--neon); }
.mb-support-card__role { margin: 0.35rem 0 1rem; font-size: 0.9rem; color: var(--text-muted); }
.mb-support-card__icons { display: flex; justify-content: center; gap: 0.5rem; }
.mb-support-card__icons a {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; border: 1px solid var(--border); background: rgba(10,10,10,0.6);
  color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.2s;
}
.mb-support-card__icons a:hover { border-color: rgba(0,255,136,0.4); background: rgba(0,255,136,0.1); color: var(--neon); }

/* Contact */
.mb-contact { padding-bottom: 8rem; }
.mb-contact-card {
  position: relative; max-width: 720px; margin: 0 auto; padding: 2rem;
  border-radius: 24px; border: 1px solid var(--border); overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
  backdrop-filter: blur(24px);
}
@media (min-width: 768px) { .mb-contact-card { padding: 3rem; } }
.mb-contact-card__glow {
  position: absolute; right: -5rem; top: -5rem; width: 240px; height: 240px;
  background: rgba(0,255,136,0.12); filter: blur(60px); border-radius: 50%;
}
.mb-contact-card__body { position: relative; }
.mb-contact-card__title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.25rem); margin: 0; }
.mb-contact-card__hint { margin: 0.5rem 0 0; color: var(--text-muted); }
.mb-contact-card__actions { margin-top: 2.5rem; display: grid; gap: 1rem; }
@media (min-width: 560px) { .mb-contact-card__actions { grid-template-columns: 1fr 1fr; } }
.mb-contact-action {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem;
  border-radius: 12px; border: 1px solid var(--border); background: rgba(0,0,0,0.35);
  text-decoration: none; color: inherit; transition: border-color 0.2s, background 0.2s;
}
.mb-contact-action:hover { border-color: rgba(0,255,136,0.35); background: rgba(0,255,136,0.06); }
.mb-contact-action > i:first-child { color: var(--neon); font-size: 1.1rem; width: 1.25rem; text-align: center; }
.mb-contact-action span { flex: 1; min-width: 0; }
.mb-contact-action small { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); }
.mb-contact-action strong { display: block; margin-top: 0.25rem; font-weight: 500; font-size: 0.95rem; word-break: break-all; }
.mb-contact-action__arrow { opacity: 0.35; font-size: 0.85rem; }
.mb-contact-card__social { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.mb-contact-card__social-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.35); }
.mb-contact-card__social-links { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.mb-contact-card__social-links a {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1rem;
  border-radius: 12px; border: 1px solid var(--border); background: rgba(255,255,255,0.03);
  font-size: 0.9rem; color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.2s;
}
.mb-contact-card__social-links a:hover { border-color: rgba(0,255,136,0.3); color: var(--neon); }

/* Footer – unten am Seitenrand */
.mb-footer {
  flex-shrink: 0;
  margin-top: auto;
  width: 100%;
  border-top: 1px solid var(--border);
  padding: 1.75rem var(--gutter);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
}
.mb-footer__inner {
  max-width: var(--max-site); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem; text-align: center;
}
@media (min-width: 768px) {
  .mb-footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.mb-footer__legal { display: flex; gap: 1rem; align-items: center; font-size: 0.9rem; }
.mb-footer__legal a { color: rgba(255,255,255,0.5); text-decoration: none; }
.mb-footer__legal a:hover { color: var(--neon); }
.mb-footer__legal span { color: rgba(255,255,255,0.2); }
.mb-footer__copy { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.4); }
.mb-footer__social { display: flex; gap: 1rem; }
.mb-footer__social a { color: rgba(255,255,255,0.5); font-size: 1.1rem; transition: color 0.2s; }
.mb-footer__social a:hover { color: var(--neon); }

/* Legal pages */
.mb-legal {
  flex: 1 0 auto;
  padding: calc(var(--header-h) + 2.5rem) var(--gutter) 3rem;
  width: 100%;
}
.mb-legal__inner {
  max-width: 800px;
  margin: 0 auto;
}
.mb-legal h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--neon);
  margin: 0 0 0.5rem;
}
.mb-legal h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mb-legal h3 {
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}
.mb-legal__subtitle {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
}
.mb-legal p, .mb-legal li {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.98rem;
}
.mb-legal ul { padding-left: 1.25rem; }
.mb-legal a { color: var(--neon); word-break: break-word; }
.mb-footer__legal a.is-active { color: var(--neon); }

/* Reveal – nicht im Hero (LCP/CLS) */
.mb-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.mb-reveal.is-visible { opacity: 1; transform: translateY(0); }
.mb-hero .mb-reveal { opacity: 1; transform: none; transition: none; }

/* Cookie – schmale Leiste unten, kein Vollbild-Overlay (CLS/LCP) */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 0 var(--gutter) max(12px, env(safe-area-inset-bottom));
  pointer-events: none;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner__inner {
  pointer-events: auto;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  border-radius: 14px 14px 0 0;
  border: 1px solid rgba(0, 255, 136, 0.28);
  border-bottom: none;
  background: rgba(12, 12, 12, 0.97);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}
.cookie-banner__text {
  flex: 1 1 220px;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.cookie-link { color: var(--neon); }
.cookie-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cookie-button {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cookie-button:hover { transform: translateY(-1px); }
.cookie-button.accept {
  background: var(--neon);
  color: var(--void);
  border: none;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}
.cookie-button.decline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .mb-reveal { opacity: 1; transform: none; }
}
