/* Gemeinsame Styles für DMXfreak.de */

:root {
    --bg:      #0c0b0b;
    --bg2:     #141212;
    --bg3:     #1a1818;
    --panel:   #1e1c1c;
    --border:  #2a2727;
    --orange:  #ff4800;
    --orange2: #ff6a1a;
    --text:    #e8e4de;
    --muted:   #c8c2b8;
    --dim:     #7a7470;
    --white:   #f5f1ec;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* diagonal texture */
  body::after {
    content: '';
    position: fixed; inset: 0;
    background-image: repeating-linear-gradient(
      45deg, transparent, transparent 3px,
      rgba(255,72,0,0.013) 3px, rgba(255,72,0,0.013) 4px
    );
    pointer-events: none; z-index: 9999;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    height: 60px;
    background: rgba(12,11,11,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--orange);
    display: flex; align-items: center;
    padding: 0 2.5rem;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav-brand {
    display: flex; align-items: baseline; gap: 0;
    text-decoration: none;
  }
  .nav-brand-dmx {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem; letter-spacing: 0.08em;
    color: var(--orange);
    line-height: 1;
  }
  .nav-brand-freak {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem; letter-spacing: 0.08em;
    color: var(--white);
    line-height: 1;
  }
  .nav-brand-tld {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem; color: var(--dim);
    letter-spacing: 0.06em; margin-left: 3px;
    align-self: center;
  }

  .nav-center {
    display: flex; gap: 0;
    list-style: none;
  }
  .nav-center a {
    display: block; padding: 0 1rem; height: 60px; line-height: 60px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted); text-decoration: none;
    transition: color 0.15s;
  }
  .nav-center a:hover { color: var(--orange); }

  .nav-shop {
    display: flex; align-items: center; gap: 0.5rem;
    background: var(--orange);
    color: #000 !important;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0 1.4rem; height: 38px;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
  }
  .nav-shop:hover { background: var(--orange2); }
  .nav-shop-arrow { font-size: 0.9rem; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    padding-top: 60px;
    display: grid;
    grid-template-rows: 1fr auto;
    position: relative;
    overflow: hidden;
  }

  /* Animated DMX channel bars in background */
  .dmx-bars {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 35%;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    padding: 0 3%;
    opacity: 0.07;
    pointer-events: none;
  }
  .dmx-bar {
    flex: 1;
    background: var(--orange);
    border-radius: 1px 1px 0 0;
    animation: barPulse var(--d, 2s) ease-in-out infinite var(--delay, 0s) alternate;
    min-height: 4px;
  }
  @keyframes barPulse {
    0%   { height: var(--h1, 20%); }
    100% { height: var(--h2, 80%); }
  }

  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2.5rem 3rem;
    gap: 4rem;
    position: relative; z-index: 2;
  }

  .hero-left {}

  .hero-kicker {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--orange);
    margin-bottom: 1.4rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .hero-kicker::before { content: ''; width: 28px; height: 2px; background: var(--orange); }

  .hero-h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 8vw, 7.5rem);
    line-height: 0.9;
    letter-spacing: 0.03em;
    color: var(--white);
    margin-bottom: 1.8rem;
  }
  .hero-h1 .outline {
    -webkit-text-stroke: 2px var(--orange);
    color: transparent;
  }
  .hero-h1 .small {
    display: block;
    font-size: 0.3em;
    letter-spacing: 0.18em;
    color: var(--dim);
    margin-top: 0.4rem;
  }

  .hero-lead {
    font-size: 1rem; line-height: 1.8;
    color: var(--muted); max-width: 460px;
    margin-bottom: 2.5rem;
  }
  .hero-lead strong { color: var(--orange); font-weight: 500; }

  .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--orange); color: #000;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.85rem 1.8rem;
    text-decoration: none; transition: background 0.15s;
  }
  .btn-primary:hover { background: var(--orange2); }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: var(--white);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.84rem 1.8rem;
    border: 1px solid var(--border);
    text-decoration: none; transition: border-color 0.15s, color 0.15s;
  }
  .btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

  /* Hero right — channel display */
  .hero-right {
    display: flex; flex-direction: column; gap: 0;
    border: 1px solid var(--border);
    background: var(--bg2);
  }

  .channel-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.8rem 1.2rem;
    border-bottom: 2px solid var(--orange);
    background: var(--bg3);
  }
  .channel-header-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--orange);
  }
  .channel-header-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem; letter-spacing: 0.1em; color: var(--white);
  }

  .channel-row {
    display: grid; grid-template-columns: 60px 1fr 50px;
    align-items: center; gap: 1rem;
    padding: 0.65rem 1.2rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
  }
  .channel-row:hover { background: rgba(255,72,0,0.04); }
  .channel-row:last-child { border-bottom: none; }

  .ch-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem; color: var(--dim);
    letter-spacing: 0.06em;
  }
  .ch-bar-wrap {
    height: 6px; background: var(--bg3);
    border-radius: 1px; overflow: hidden;
  }
  .ch-bar {
    height: 100%; background: var(--orange);
    border-radius: 1px;
    animation: chAnim var(--cd, 3s) ease-in-out infinite var(--co, 0s) alternate;
  }
  @keyframes chAnim {
    0%   { width: var(--cw1, 30%); opacity: 0.6; }
    100% { width: var(--cw2, 90%); opacity: 1; }
  }
  .ch-val {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem; color: var(--orange);
    text-align: right; font-weight: 500;
  }

  /* Hero bottom strip */
  .hero-strip {
    position: relative; z-index: 2;
    border-top: 1px solid var(--border);
    background: var(--bg2);
  }
  .hero-strip-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
  }
  .strip-stat {
    flex: 1; padding: 1.2rem 0;
    border-right: 1px solid var(--border);
    display: flex; align-items: center; gap: 1rem;
  }
  .strip-stat:last-child { border-right: none; }
  .strip-stat-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem; letter-spacing: 0.06em;
    color: var(--orange); line-height: 1;
    padding: 0 1.5rem;
  }
  .strip-stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--muted);
    line-height: 1.5;
  }

  /* ── SHOP CTA BANNER ── */
  #shop-banner {
    background: var(--orange);
    padding: 0;
  }
  .shop-banner-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 1.6rem 2.5rem;
    display: flex; align-items: center;
    justify-content: space-between; gap: 2rem;
    flex-wrap: wrap;
  }
  .shop-banner-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    letter-spacing: 0.06em; color: #000;
    line-height: 1.1;
  }
  .shop-banner-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem; color: rgba(0,0,0,0.65);
    letter-spacing: 0.08em; margin-top: 0.2rem;
  }
  .shop-banner-btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: #000; color: var(--orange);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.9rem 2rem;
    text-decoration: none; white-space: nowrap;
    transition: background 0.15s;
  }
  .shop-banner-btn:hover { background: #1a1818; }

  /* ── PRODUCTS ── */
  #products {
    padding: 5rem 0;
    background: var(--bg);
  }
  .section-inner { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }

  .section-head {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 1rem; flex-wrap: wrap;
  }
  .section-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--orange);
    margin-bottom: 0.4rem;
    display: flex; align-items: center; gap: 0.7rem;
  }
  .section-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--orange); }
  h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: 0.05em; color: var(--white);
    line-height: 1;
  }

  /* Filter pills */
  .filter-row {
    display: flex; gap: 0.4rem; flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }
  .fpill {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.64rem; letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--border);
    color: var(--muted); background: none;
    cursor: pointer; transition: all 0.15s;
  }
  .fpill:hover { color: var(--text); border-color: var(--dim); }
  .fpill.active { background: var(--orange); color: #000; border-color: var(--orange); font-weight: 500; }

  /* Product grid */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .product-card {
    background: var(--panel);
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
    position: relative; overflow: hidden;
    transition: background 0.2s;
  }
  .product-card:hover { background: #242020; }
  .product-card:hover .pc-arrow { opacity: 1; transform: translateX(3px); }
  .product-card:hover .pc-num { color: rgba(255,72,0,0.12); }

  /* top accent bar — animates on hover */
  .product-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--orange);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.25s;
  }
  .product-card:hover::before { transform: scaleX(1); }

  .pc-img {
    aspect-ratio: 16/9;
    background:
      radial-gradient(circle at center, rgba(255,72,0,0.05) 0%, rgba(255,72,0,0.015) 35%, transparent 70%),
      linear-gradient(180deg, #181616 0%, #121111 100%);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    border-bottom: 1px solid var(--border);
    position: relative;
    padding: 0.9rem;
  }
  .pc-img img {
    width: 100%; height: 100%; object-fit: contain; object-position: center;
    opacity: 0.88;
    transition: opacity 0.2s, transform 0.2s, filter 0.2s;
    background: transparent;
    filter:
      grayscale(1)
      contrast(1.08)
      brightness(0.92)
      drop-shadow(0 10px 18px rgba(0,0,0,0.35));
  }
  .product-card:hover .pc-img img {
    opacity: 1;
    transform: scale(1.02);
    filter:
      grayscale(0.15)
      contrast(1.08)
      brightness(0.98)
      drop-shadow(0 10px 18px rgba(0,0,0,0.35));
  }
  .pc-img-placeholder {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem; color: var(--border);
    letter-spacing: 0.1em;
  }
  .pc-num {
    position: absolute; bottom: 8px; right: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem; color: rgba(255,72,0,0.08);
    line-height: 1; transition: color 0.2s;
    pointer-events: none;
  }

  /* shop badge */
  .pc-shop-badge {
    position: absolute; top: 8px; left: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.56rem; letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--orange); color: #000;
    padding: 0.2rem 0.5rem; font-weight: 500;
  }

  .pc-body { padding: 1.4rem 1.4rem 1.2rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }

  .pc-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; }
  .pc-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.56rem; padding: 0.18rem 0.45rem;
    border: 1px solid var(--border); color: var(--dim);
    letter-spacing: 0.06em; text-transform: uppercase;
  }
  .pc-tag.hi { border-color: rgba(255,72,0,0.35); color: var(--orange); }
  .pc-tag.net { border-color: rgba(34,197,94,0.3); color: #22c55e; }

  .pc-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.88rem; font-weight: 500;
    color: var(--white); line-height: 1.3;
    letter-spacing: 0.02em;
  }
  .pc-desc {
    font-size: 0.78rem; color: var(--muted);
    line-height: 1.6; flex: 1;
  }

  .pc-footer {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.4rem;
    border-top: 1px solid var(--border);
    background: var(--bg3);
  }
  .pc-proto {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6rem; color: var(--dim);
    letter-spacing: 0.08em; text-transform: uppercase;
  }
  .pc-arrow {
    font-size: 0.9rem; color: var(--orange);
    opacity: 0; transition: opacity 0.2s, transform 0.2s;
  }

  .product-card.hidden { display: none; }

  /* ── ABOUT ── */
  #about {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 0;
  }
  .about-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 5rem; align-items: center;
  }

  .about-left { position: relative; }
  .about-frame {
    background: var(--panel);
    border: 1px solid var(--border);
    aspect-ratio: 3/4; max-height: 340px;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .about-frame::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,72,0,0.06), transparent 60%);
  }
  .about-initials {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem; color: rgba(255,72,0,0.2);
    letter-spacing: 0.1em; position: relative; z-index: 1;
  }
  .about-corner {
    position: absolute; width: 18px; height: 18px;
    border-color: var(--orange); border-style: solid; opacity: 0.4;
  }
  .about-corner.tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
  .about-corner.br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

  .about-chips {
    display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 1rem;
  }
  .achip {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6rem; padding: 0.22rem 0.6rem;
    border: 1px solid var(--border); color: var(--muted);
    letter-spacing: 0.06em;
  }
  .achip.hi { border-color: rgba(255,72,0,0.35); color: var(--orange); }

  .about-right {}
  .about-right h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem; letter-spacing: 0.05em;
    color: var(--white); line-height: 1; margin-bottom: 0.3rem;
  }
  .about-byline {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem; color: var(--dim);
    letter-spacing: 0.1em; margin-bottom: 1.8rem;
  }
  .about-right p {
    font-size: 0.9rem; line-height: 1.85;
    color: var(--muted); margin-bottom: 1rem;
  }
  .about-right p strong { color: var(--orange); font-weight: 500; }

  .about-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    margin-top: 1.2rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem; color: var(--muted);
    text-decoration: none; letter-spacing: 0.08em;
    transition: color 0.15s;
  }
  .about-link:hover { color: var(--orange); }
  .about-link::after { content: '→'; }

  /* ── FOOTER ── */
  footer {
    background: var(--bg);
    border-top: 2px solid var(--orange);
    padding: 3.5rem 2.5rem 2rem;
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem; padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
  }
  .footer-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; letter-spacing: 0.08em; line-height: 1;
    margin-bottom: 0.6rem;
  }
  .footer-brand-name .dmx { color: var(--orange); }
  .footer-brand-name .freak { color: var(--white); }
  .footer-desc {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem; color: var(--dim);
    line-height: 1.8; max-width: 300px;
  }
  .footer-col h4 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem; text-transform: uppercase;
    letter-spacing: 0.16em; color: var(--orange);
    margin-bottom: 1rem;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
  .footer-links a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem; color: var(--muted);
    text-decoration: none; transition: color 0.15s;
  }
  .footer-links a:hover { color: var(--orange); }

  .footer-bottom {
    max-width: 1200px; margin: 1.5rem auto 0;
    display: flex; justify-content: space-between;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.62rem; color: var(--dim);
    flex-wrap: wrap; gap: 0.5rem;
  }
  .footer-bottom a { color: var(--dim); text-decoration: none; transition: color 0.15s; }
  .footer-bottom a:hover { color: var(--orange); }
  .footer-status { display: flex; align-items: center; gap: 0.4rem; }
  .footer-status::before {
    content: ''; width: 6px; height: 6px;
    border-radius: 50%; background: #22c55e;
    box-shadow: 0 0 6px #22c55e;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }
  .hero-kicker { animation: fadeUp 0.5s 0.1s both; }
  .hero-h1     { animation: fadeUp 0.6s 0.2s both; }
  .hero-lead   { animation: fadeUp 0.6s 0.35s both; }
  .hero-ctas   { animation: fadeUp 0.5s 0.5s both; }
  .hero-right  { animation: fadeUp 0.7s 0.25s both; }
  .hero-strip  { animation: fadeUp 0.5s 0.6s both; }

  /* scroll reveal */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-right { max-width: 500px; }
    .about-inner { grid-template-columns: 1fr; gap: 2rem; }
    .about-left { max-width: 220px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .nav-center { display: none; }
  }
  @media (max-width: 640px) {
    nav { padding: 0 1.2rem; }
    .hero-strip-inner { flex-wrap: wrap; }
    .strip-stat { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); }
    .product-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; }
  }

/* Zusätzliche Styles für Impressum / Datenschutz */

:root {
    --bg:#0c0b0b; --bg2:#141212; --bg3:#1a1818; --panel:#1e1c1c; --border:#2a2727;
    --orange:#ff4800; --orange2:#ff6a1a; --text:#e8e4de; --muted:#c8c2b8; --dim:#7a7470; --white:#f5f1ec;
  }
  *, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
  html { scroll-behavior:smooth; }
  body {
    background:var(--bg); color:var(--text); font-family:'IBM Plex Sans',sans-serif; font-weight:300; overflow-x:hidden;
  }
  body::after {
    content:''; position:fixed; inset:0; pointer-events:none; z-index:9999;
    background-image:repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(255,72,0,0.013) 3px, rgba(255,72,0,0.013) 4px);
  }
  nav {
    position:fixed; top:0; left:0; right:0; z-index:200; height:60px; background:rgba(12,11,11,0.97);
    backdrop-filter:blur(8px); border-bottom:2px solid var(--orange); display:flex; align-items:center;
    padding:0 2.5rem; justify-content:space-between; gap:1rem;
  }
  .nav-brand { display:flex; align-items:baseline; text-decoration:none; }
  .nav-brand-dmx, .nav-brand-freak { font-family:'Bebas Neue',sans-serif; font-size:1.7rem; letter-spacing:0.08em; line-height:1; }
  .nav-brand-dmx { color:var(--orange); }
  .nav-brand-freak { color:var(--white); }
  .nav-brand-tld { font-family:'IBM Plex Mono',monospace; font-size:0.65rem; color:var(--dim); letter-spacing:0.06em; margin-left:3px; align-self:center; }
  .nav-center { display:flex; list-style:none; }
  .nav-center a {
    display:block; padding:0 1rem; height:60px; line-height:60px; color:var(--muted); text-decoration:none;
    font-family:'IBM Plex Mono',monospace; font-size:0.68rem; letter-spacing:0.1em; text-transform:uppercase;
  }
  .nav-center a:hover { color:var(--orange); }
  .nav-shop {
    display:flex; align-items:center; gap:.5rem; background:var(--orange); color:#000!important; text-decoration:none;
    font-family:'IBM Plex Mono',monospace; font-size:.72rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase;
    padding:0 1.4rem; height:38px; white-space:nowrap;
  }
  .nav-shop:hover { background:var(--orange2); }
  .page-hero {
    padding:120px 0 3rem; border-bottom:1px solid var(--border); background:linear-gradient(180deg, var(--bg2), var(--bg));
  }
  .section-inner { max-width:1200px; margin:0 auto; padding:0 2.5rem; }
  .section-eyebrow {
    font-family:'IBM Plex Mono',monospace; font-size:.68rem; letter-spacing:.2em; text-transform:uppercase; color:var(--orange);
    margin-bottom:.8rem; display:flex; align-items:center; gap:.7rem;
  }
  .section-eyebrow::before { content:''; width:20px; height:2px; background:var(--orange); }
  .hero-title { font-family:'Bebas Neue',sans-serif; font-size:clamp(2.7rem, 6vw, 5rem); letter-spacing:.05em; line-height:.95; color:var(--white); }
  .hero-lead { max-width:760px; margin-top:1.3rem; color:var(--muted); font-size:1rem; line-height:1.85; }
  .content-wrap { padding:4rem 0 5rem; }
  .legal-layout { display:grid; grid-template-columns:minmax(0, 1.8fr) minmax(280px, .9fr); gap:2rem; align-items:start; }
  .panel {
    background:var(--panel); border:1px solid var(--border); padding:2rem; position:relative; overflow:hidden;
  }
  .panel::before {
    content:''; position:absolute; top:0; left:0; right:0; height:2px; background:var(--orange);
  }
  .legal-section + .legal-section { margin-top:2rem; }
  h2 {
    font-family:'Bebas Neue',sans-serif; font-size:2rem; letter-spacing:.05em; line-height:1; color:var(--white); margin-bottom:1rem;
  }
  h3 {
    font-family:'IBM Plex Mono',monospace; font-size:.82rem; letter-spacing:.1em; text-transform:uppercase; color:var(--orange);
    margin:1.5rem 0 .8rem;
  }
  p, li { color:var(--muted); font-size:.95rem; line-height:1.9; }
  ul { padding-left:1.2rem; }
  strong { color:var(--white); font-weight:500; }
  a { color:var(--orange); text-decoration:none; }
  a:hover { color:var(--orange2); }
  .meta-box { display:flex; flex-direction:column; gap:1rem; }
  .meta-item { background:var(--bg3); border:1px solid var(--border); padding:1rem 1.1rem; }
  .meta-label { font-family:'IBM Plex Mono',monospace; font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; color:var(--dim); margin-bottom:.35rem; }
  .meta-value { color:var(--white); font-size:.95rem; line-height:1.7; }
  footer {
    background:var(--bg); border-top:2px solid var(--orange); padding:3rem 2.5rem 2rem;
  }
  .footer-inner {
    max-width:1200px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr; gap:3rem; padding-bottom:2rem; border-bottom:1px solid var(--border);
  }
  .footer-brand-name { font-family:'Bebas Neue',sans-serif; font-size:2rem; letter-spacing:.08em; line-height:1; margin-bottom:.6rem; }
  .footer-brand-name .dmx { color:var(--orange); } .footer-brand-name .freak { color:var(--white); }
  .footer-desc, .footer-links a, .footer-bottom { font-family:'IBM Plex Mono',monospace; font-size:.7rem; color:var(--dim); line-height:1.8; text-decoration:none; }
  .footer-col h4 { font-family:'IBM Plex Mono',monospace; font-size:.62rem; text-transform:uppercase; letter-spacing:.16em; color:var(--orange); margin-bottom:1rem; }
  .footer-links { list-style:none; display:flex; flex-direction:column; gap:.5rem; }
  .footer-links a:hover { color:var(--orange); }
  .footer-bottom { max-width:1200px; margin:1.5rem auto 0; display:flex; justify-content:space-between; gap:.8rem; flex-wrap:wrap; }
  .status { display:flex; align-items:center; gap:.45rem; }
  .status::before { content:''; width:6px; height:6px; border-radius:50%; background:#22c55e; box-shadow:0 0 6px #22c55e; }
  @media (max-width:960px) {
    .legal-layout, .footer-inner { grid-template-columns:1fr; }
    .nav-center { display:none; }
  }
  @media (max-width:640px) {
    nav { padding:0 1.2rem; }
    .section-inner { padding:0 1.2rem; }
    footer { padding:2.5rem 1.2rem 1.5rem; }
    .panel { padding:1.3rem; }
  }

/* Zusätzliche Styles für Datenschutz */

:root {
    --bg:#0c0b0b; --bg2:#141212; --bg3:#1a1818; --panel:#1e1c1c; --border:#2a2727;
    --orange:#ff4800; --orange2:#ff6a1a; --text:#e8e4de; --muted:#c8c2b8; --dim:#7a7470; --white:#f5f1ec;
  }
  *, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
  html { scroll-behavior:smooth; }
  body { background:var(--bg); color:var(--text); font-family:'IBM Plex Sans',sans-serif; font-weight:300; overflow-x:hidden; }
  body::after {
    content:''; position:fixed; inset:0; pointer-events:none; z-index:9999;
    background-image:repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(255,72,0,0.013) 3px, rgba(255,72,0,0.013) 4px);
  }
  nav {
    position:fixed; top:0; left:0; right:0; z-index:200; height:60px; background:rgba(12,11,11,0.97);
    backdrop-filter:blur(8px); border-bottom:2px solid var(--orange); display:flex; align-items:center;
    padding:0 2.5rem; justify-content:space-between; gap:1rem;
  }
  .nav-brand { display:flex; align-items:baseline; text-decoration:none; }
  .nav-brand-dmx, .nav-brand-freak { font-family:'Bebas Neue',sans-serif; font-size:1.7rem; letter-spacing:0.08em; line-height:1; }
  .nav-brand-dmx { color:var(--orange); }
  .nav-brand-freak { color:var(--white); }
  .nav-brand-tld { font-family:'IBM Plex Mono',monospace; font-size:0.65rem; color:var(--dim); letter-spacing:0.06em; margin-left:3px; align-self:center; }
  .nav-center { display:flex; list-style:none; }
  .nav-center a {
    display:block; padding:0 1rem; height:60px; line-height:60px; color:var(--muted); text-decoration:none;
    font-family:'IBM Plex Mono',monospace; font-size:0.68rem; letter-spacing:0.1em; text-transform:uppercase;
  }
  .nav-center a:hover { color:var(--orange); }
  .nav-shop {
    display:flex; align-items:center; gap:.5rem; background:var(--orange); color:#000!important; text-decoration:none;
    font-family:'IBM Plex Mono',monospace; font-size:.72rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase;
    padding:0 1.4rem; height:38px; white-space:nowrap;
  }
  .nav-shop:hover { background:var(--orange2); }
  .page-hero { padding:120px 0 3rem; border-bottom:1px solid var(--border); background:linear-gradient(180deg, var(--bg2), var(--bg)); }
  .section-inner { max-width:1200px; margin:0 auto; padding:0 2.5rem; }
  .section-eyebrow {
    font-family:'IBM Plex Mono',monospace; font-size:.68rem; letter-spacing:.2em; text-transform:uppercase; color:var(--orange);
    margin-bottom:.8rem; display:flex; align-items:center; gap:.7rem;
  }
  .section-eyebrow::before { content:''; width:20px; height:2px; background:var(--orange); }
  .hero-title { font-family:'Bebas Neue',sans-serif; font-size:clamp(2.7rem, 6vw, 5rem); letter-spacing:.05em; line-height:.95; color:var(--white); }
  .hero-lead { max-width:840px; margin-top:1.3rem; color:var(--muted); font-size:1rem; line-height:1.85; }
  .content-wrap { padding:4rem 0 5rem; }
  .legal-layout { display:grid; grid-template-columns:minmax(0, 1.8fr) minmax(280px, .9fr); gap:2rem; align-items:start; }
  .panel { background:var(--panel); border:1px solid var(--border); padding:2rem; position:relative; overflow:hidden; }
  .panel::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:var(--orange); }
  .legal-section + .legal-section { margin-top:2rem; }
  h2 { font-family:'Bebas Neue',sans-serif; font-size:2rem; letter-spacing:.05em; line-height:1; color:var(--white); margin-bottom:1rem; }
  h3 { font-family:'IBM Plex Mono',monospace; font-size:.82rem; letter-spacing:.1em; text-transform:uppercase; color:var(--orange); margin:1.5rem 0 .8rem; }
  p, li { color:var(--muted); font-size:.95rem; line-height:1.9; }
  ul { padding-left:1.2rem; }
  strong { color:var(--white); font-weight:500; }
  a { color:var(--orange); text-decoration:none; }
  a:hover { color:var(--orange2); }
  .meta-box { display:flex; flex-direction:column; gap:1rem; }
  .meta-item { background:var(--bg3); border:1px solid var(--border); padding:1rem 1.1rem; }
  .meta-label { font-family:'IBM Plex Mono',monospace; font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; color:var(--dim); margin-bottom:.35rem; }
  .meta-value { color:var(--white); font-size:.95rem; line-height:1.7; }
  .notice { margin-top:1.5rem; padding:1rem 1.1rem; border:1px solid rgba(255,72,0,.25); background:rgba(255,72,0,.05); color:var(--muted); font-size:.9rem; line-height:1.8; }
  footer { background:var(--bg); border-top:2px solid var(--orange); padding:3rem 2.5rem 2rem; }
  .footer-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr; gap:3rem; padding-bottom:2rem; border-bottom:1px solid var(--border); }
  .footer-brand-name { font-family:'Bebas Neue',sans-serif; font-size:2rem; letter-spacing:.08em; line-height:1; margin-bottom:.6rem; }
  .footer-brand-name .dmx { color:var(--orange); } .footer-brand-name .freak { color:var(--white); }
  .footer-desc, .footer-links a, .footer-bottom { font-family:'IBM Plex Mono',monospace; font-size:.7rem; color:var(--dim); line-height:1.8; text-decoration:none; }
  .footer-col h4 { font-family:'IBM Plex Mono',monospace; font-size:.62rem; text-transform:uppercase; letter-spacing:.16em; color:var(--orange); margin-bottom:1rem; }
  .footer-links { list-style:none; display:flex; flex-direction:column; gap:.5rem; }
  .footer-links a:hover { color:var(--orange); }
  .footer-bottom { max-width:1200px; margin:1.5rem auto 0; display:flex; justify-content:space-between; gap:.8rem; flex-wrap:wrap; }
  .status { display:flex; align-items:center; gap:.45rem; }
  .status::before { content:''; width:6px; height:6px; border-radius:50%; background:#22c55e; box-shadow:0 0 6px #22c55e; }
  @media (max-width:960px) {
    .legal-layout, .footer-inner { grid-template-columns:1fr; }
    .nav-center { display:none; }
  }
  @media (max-width:640px) {
    nav { padding:0 1.2rem; }
    .section-inner { padding:0 1.2rem; }
    footer { padding:2.5rem 1.2rem 1.5rem; }
    .panel { padding:1.3rem; }
  }


/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
}
.cookie-banner[hidden] {
  display: none !important;
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(12,11,11,0.96);
  border: 1px solid var(--border);
  border-top: 2px solid var(--orange);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cookie-banner-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #000;
  border: 0;
  cursor: pointer;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1.2rem;
}
.cookie-btn:hover {
  background: var(--orange2);
}
@media (max-width: 640px) {
  .cookie-banner {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner-actions {
    justify-content: flex-end;
  }
}

