/* ═══════════════════════════════════════════════════════════════════
   GOLF★STARS: Theme „Neon Fairway“
   Aufbauend auf der alten WordPress-Seite: ShotOnline-Artwork als Bühne,
   dunkle Glas-Kästen mit Neon-Cyan-Rahmen, Zierschrift, Gold-Stern.
   Wird nach app.css geladen und überschreibt nur Aussehen, nie Funktion.
   ═══════════════════════════════════════════════════════════════════ */
@import url('../fonts/fonts.css');

:root {
  --bg: #02080a;
  --surface: rgba(3, 13, 16, .80);
  --surface-2: rgba(8, 26, 30, .72);
  --line: rgba(0, 248, 255, .20);
  --line-strong: rgba(0, 248, 255, .55);
  --text: #e6fbfc;
  --muted: #8fb6ba;
  --accent: #00f8ff;
  --accent-dim: #00becc;
  --accent-soft: rgba(0, 248, 255, .12);
  --gold: #f5c518;
  --gold-soft: rgba(245, 197, 24, .15);
  --glow: 0 0 0 1px rgba(0, 248, 255, .45), 0 0 22px rgba(0, 248, 255, .28), inset 0 0 18px rgba(0, 248, 255, .06);
  --glow-strong: 0 0 0 1px rgba(0, 248, 255, .8), 0 0 28px rgba(0, 248, 255, .5), 0 0 60px rgba(0, 248, 255, .18);
  --font-deco: "Cinzel Decorative", "Cinzel", Georgia, "Times New Roman", serif;
  --font-caps: "Cinzel", Georgia, "Times New Roman", serif;
  --blur: saturate(140%) blur(12px);
  --radius: 16px;
  --ease-out: cubic-bezier(.2, .8, .2, 1);
}
:root[data-theme="light"] {
  --bg: #e9f6f7;
  --surface: rgba(255, 255, 255, .86);
  --surface-2: rgba(240, 250, 251, .86);
  --line: rgba(0, 125, 134, .22);
  --line-strong: rgba(0, 125, 134, .5);
  --glow: 0 0 0 1px rgba(0, 125, 134, .25), 0 8px 24px rgba(0, 60, 66, .12);
  --glow-strong: 0 0 0 1px rgba(0, 125, 134, .55), 0 10px 30px rgba(0, 60, 66, .18);
}

/* ── Bühne: ShotOnline-Artwork als feststehender Hintergrund (funktioniert auch auf iOS) ── */
body { background: var(--bg); }
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background: url('../img/theme/bg-fairway.webp') center / cover no-repeat;
  transform: scale(1.04);
  filter: saturate(1.15);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(0, 248, 255, .10), transparent 55%),
    linear-gradient(180deg, rgba(2, 8, 10, .30) 0%, rgba(2, 8, 10, .48) 50%, rgba(2, 8, 10, .70) 100%);
}
:root[data-theme="light"] body::after {
  background: linear-gradient(180deg, rgba(233, 246, 247, .70), rgba(233, 246, 247, .92));
}
@media (max-width: 700px) { body::before { background-image: url('../img/theme/bg-fairway-mobil.webp'); } }
/* Wettbewerbe & Forum bekommen die „Arena“, Kurse den Kurs-Hintergrund (Klasse setzt app.js je Bereich) */
body[data-area="arena"]::before { background-image: url('../img/theme/bg-arena.webp'); }
body[data-area="kurse"]::before { background-image: url('../img/theme/bg-kurs.webp'); }

/* ── Typografie: Zierschrift wie früher (Algerian) → Cinzel Decorative ── */
h1, .page-head h1 {
  font-family: var(--font-deco); font-weight: 900; letter-spacing: .02em;
  color: var(--accent);
  text-shadow: 0 0 18px rgba(0, 248, 255, .45), 0 2px 0 rgba(0, 0, 0, .6);
}
h2 { font-family: var(--font-caps); font-weight: 800; letter-spacing: .03em; }
h1 .gold, h2 .gold { color: var(--gold); text-shadow: 0 0 16px rgba(245, 197, 24, .55); }
:root[data-theme="light"] h1 { text-shadow: none; color: #006a72; }
.eyebrow { font-family: var(--font-caps); letter-spacing: .22em; color: var(--accent-dim); }

/* ── Kopfleiste & Navigation: Glas mit Neon-Kante ── */
.topbar {
  background: rgba(2, 10, 12, .72);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--accent), transparent) 1;
  box-shadow: 0 6px 30px rgba(0, 0, 0, .45);
}
.topbar .brand img { height: 40px; filter: drop-shadow(0 0 10px rgba(0, 248, 255, .35)); transition: filter .3s; }
.topbar .brand:hover img { filter: drop-shadow(0 0 16px rgba(0, 248, 255, .7)); }
:root[data-theme="light"] .topbar { background: rgba(255, 255, 255, .8); }

@media (min-width: 900px) {
  .sidenav {
    background: rgba(2, 10, 12, .55);
    backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
    border-right: 1px solid var(--line);
  }
  .sidenav a { position: relative; transition: background .2s, color .2s, transform .2s; }
  .sidenav a:hover { transform: translateX(3px); }
  .sidenav a.active {
    color: var(--accent); background: linear-gradient(90deg, rgba(0, 248, 255, .18), transparent);
    box-shadow: inset 3px 0 0 var(--accent);
  }
  .sidenav a.active svg { filter: drop-shadow(0 0 6px var(--accent)); }
  .sidenav .group { font-family: var(--font-caps); color: var(--gold); opacity: .85; }
  :root[data-theme="light"] .sidenav { background: rgba(255, 255, 255, .7); }
}
.bottomnav {
  background: rgba(2, 10, 12, .82);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, .5), 0 -1px 18px rgba(0, 248, 255, .15);
}
.bottomnav a { transition: color .2s, transform .2s; }
.bottomnav a.active { transform: translateY(-2px); text-shadow: 0 0 10px rgba(0, 248, 255, .6); }
:root[data-theme="light"] .bottomnav { background: rgba(255, 255, 255, .9); }

/* ── Kästen: dunkles Glas mit Neon-Rahmen (wie die alten Elementor-Boxen, nur moderner) ── */
.card, .match, .member, .stat, .hc, .bslot, .notice {
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
}
.card {
  background: linear-gradient(180deg, rgba(6, 22, 26, .82), rgba(2, 10, 12, .84));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .04);
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease-out);
}
.card:hover { border-color: var(--line-strong); box-shadow: 0 14px 44px rgba(0, 0, 0, .5), 0 0 24px rgba(0, 248, 255, .12); }
a.card:hover, a.member:hover { transform: translateY(-3px); text-decoration: none; }
:root[data-theme="light"] .card { background: rgba(255, 255, 255, .88); box-shadow: 0 8px 26px rgba(0, 60, 66, .10); }

/* Hervorgehobene Kästen: umlaufender Neon-Rahmen */
.card.glow { position: relative; border-color: transparent; box-shadow: var(--glow); isolation: isolate; }
.card.glow::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; z-index: -1;
  background: conic-gradient(from var(--spin, 0deg), var(--accent), transparent 30%, var(--gold) 50%, transparent 70%, var(--accent));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  animation: gs-spin 6s linear infinite;
}
@property --spin { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes gs-spin { to { --spin: 360deg; } }

.card-head h2, .card > h2 { position: relative; padding-bottom: 6px; }
.card > h2::after, .card-head h2::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 42px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.stat { background: rgba(0, 248, 255, .06); border: 1px solid var(--line); border-radius: 12px; transition: transform .25s var(--ease-out), box-shadow .25s; }
.stat:hover { transform: translateY(-2px); box-shadow: 0 0 18px rgba(0, 248, 255, .18); }
.stat b { font-family: var(--font-caps); font-weight: 800; text-shadow: 0 0 14px rgba(0, 248, 255, .45); }

/* ── Buttons: Neon mit Lichtreflex ── */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  font-family: var(--font-caps); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; font-size: 13px;
  background: linear-gradient(180deg, rgba(0, 248, 255, .10), rgba(0, 248, 255, .02));
  border: 1px solid var(--line-strong);
  box-shadow: inset 0 0 12px rgba(0, 248, 255, .12);
  transition: transform .2s var(--ease-out), box-shadow .25s, border-color .25s, color .25s;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .6s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--glow-strong); border-color: var(--accent); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0) scale(.98); }
.btn.primary {
  color: #001417; border: 0;
  background: linear-gradient(135deg, #7ffcff 0%, var(--accent) 45%, #00a9b8 100%);
  box-shadow: 0 0 0 1px rgba(0, 248, 255, .6), 0 6px 22px rgba(0, 248, 255, .35);
}
.btn.primary:hover { box-shadow: 0 0 0 1px #fff, 0 0 30px rgba(0, 248, 255, .7); }
.btn.gold { color: var(--gold); border-color: rgba(245, 197, 24, .6); background: linear-gradient(180deg, rgba(245, 197, 24, .14), rgba(245, 197, 24, .02)); }
.btn.gold:hover { box-shadow: 0 0 0 1px var(--gold), 0 0 26px rgba(245, 197, 24, .5); }
.btn.danger:hover { box-shadow: 0 0 0 1px var(--err), 0 0 22px rgba(255, 40, 97, .45); }
.btn.ghost { background: rgba(255, 255, 255, .03); border-color: var(--line); }
.btn.sm { font-size: 11px; }
.btn:disabled { transform: none; box-shadow: none; }
:root[data-theme="light"] .btn { background: #fff; }
:root[data-theme="light"] .btn.primary { color: #fff; background: linear-gradient(135deg, #00a3ad, #007d86); }

/* ── Tabellen & Ranglisten ── */
.tbl tbody tr { transition: background .2s; }
.tbl tbody tr:hover td { background: rgba(0, 248, 255, .06); }
.tbl th { font-family: var(--font-caps); color: var(--accent-dim); }
.rank.p1 { position: relative; }
.rank.p1::before { content: "♛"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); font-size: 12px; color: var(--gold); text-shadow: 0 0 8px var(--gold); }
.tbl tr.me td { background: linear-gradient(90deg, rgba(0, 248, 255, .16), rgba(0, 248, 255, .04)); }
.pts { text-shadow: 0 0 12px rgba(0, 248, 255, .5); }

.chip { backdrop-filter: blur(4px); }
.tabs { border-bottom-color: var(--line); }
.tabs button { font-family: var(--font-caps); font-weight: 800; letter-spacing: .05em; transition: color .2s, text-shadow .2s; }
.tabs button.active { text-shadow: 0 0 12px rgba(0, 248, 255, .6); border-bottom-width: 3px; }

input, select, textarea { background: rgba(0, 0, 0, .35); border-color: var(--line); transition: border-color .2s, box-shadow .2s; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0, 248, 255, .18), 0 0 18px rgba(0, 248, 255, .2); }
:root[data-theme="light"] input, :root[data-theme="light"] select, :root[data-theme="light"] textarea { background: #fff; }

dialog.sheet { background: linear-gradient(180deg, rgba(6, 22, 26, .97), rgba(2, 10, 12, .98)); border-color: var(--line-strong); box-shadow: 0 -10px 60px rgba(0, 248, 255, .18); }
:root[data-theme="light"] dialog.sheet { background: #fff; }
.toast { backdrop-filter: var(--blur); background: rgba(2, 12, 14, .92); }

.match { background: rgba(0, 20, 24, .55); border-radius: 14px; }
.match.attention { box-shadow: 0 0 0 1px var(--gold), 0 0 24px rgba(245, 197, 24, .25); animation: gs-attn 2.4s ease-in-out infinite; }
@keyframes gs-attn { 50% { box-shadow: 0 0 0 1px var(--gold), 0 0 34px rgba(245, 197, 24, .45); } }
.member { background: rgba(2, 12, 14, .7); transition: transform .25s var(--ease-out), border-color .25s, box-shadow .25s; }
.member:hover { box-shadow: 0 0 22px rgba(0, 248, 255, .2); }
.avatar { border-color: var(--line-strong); box-shadow: 0 0 12px rgba(0, 248, 255, .25); }

/* ═══════════════ Startseite: Intro-Bühne mit Trailer ═══════════════ */
.stage {
  position: relative; overflow: hidden; border-radius: 22px; isolation: isolate;
  min-height: clamp(440px, 72vh, 720px);
  display: grid; place-items: center; text-align: center;
  padding: 48px 20px 40px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .6), 0 0 40px rgba(0, 248, 255, .15);
  background: #000 url('../img/theme/intro-poster.jpg') center / cover;
}
main.view > .stage { margin-top: -6px; }
.stage video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -3; }
.stage::before { /* dunkle Überblendung wie früher */
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 55% at 50% 45%, rgba(2, 8, 10, .35), rgba(2, 8, 10, .85) 75%),
    linear-gradient(180deg, rgba(2, 8, 10, .2), rgba(2, 8, 10, .9));
}
.stage::after { /* Lichtstrahl */
  content: ""; position: absolute; inset: -40% -10%; z-index: -1; pointer-events: none;
  background: conic-gradient(from 200deg at 50% 0%, transparent, rgba(0, 248, 255, .16), transparent 30%);
  animation: gs-rays 14s ease-in-out infinite alternate;
}
@keyframes gs-rays { from { transform: rotate(-8deg); } to { transform: rotate(8deg); } }
.stage-inner { display: grid; justify-items: center; gap: 18px; max-width: 760px; z-index: 1; }
.stage-logo { width: min(560px, 88%); height: auto; filter: drop-shadow(0 0 24px rgba(0, 248, 255, .45)); }
.stage-star { width: 86px; height: 86px; filter: drop-shadow(0 0 22px rgba(245, 197, 24, .7)); }
.stage-title { font-family: var(--font-deco); font-weight: 900; font-size: clamp(22px, 4vw, 38px); color: #fff; margin: 0;
  text-shadow: 0 0 22px rgba(0, 248, 255, .6), 0 3px 0 rgba(0, 0, 0, .6); }
.stage-text { color: #d7f7f8; font-size: clamp(15px, 1.6vw, 17px); line-height: 1.6; max-width: 58ch; margin: 0; text-shadow: 0 2px 8px rgba(0, 0, 0, .8); }
.stage-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 6px; }
.stage-actions .btn { min-height: 48px; padding: 0 26px; font-size: 14px; }
.stage-golfer { position: absolute; bottom: 0; width: clamp(150px, 16vw, 250px); z-index: 0; opacity: .7;
  filter: brightness(0) invert(1) sepia(1) saturate(6) hue-rotate(135deg) drop-shadow(0 0 14px rgba(0, 248, 255, .8)); pointer-events: none; }
.stage-golfer.l { left: 3%; } .stage-golfer.r { right: 3%; }
@media (max-width: 900px) { .stage-golfer { display: none; } }
@media (max-width: 560px) {
  .stage { min-height: 0; padding: 32px 14px 26px; }
  .stage-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .stage-actions .btn { padding: 0 10px; font-size: 12px; min-height: 46px; }
}
.stage-sound { position: absolute; right: 14px; bottom: 14px; z-index: 2; }
.stage-particles i {
  position: absolute; bottom: -10px; width: 4px; height: 4px; border-radius: 50%; z-index: 0;
  background: var(--accent); box-shadow: 0 0 10px var(--accent);
  animation: gs-float linear infinite; opacity: 0;
}
@keyframes gs-float { 10% { opacity: .9; } 90% { opacity: .6; } to { transform: translateY(-110vh) translateX(20px); opacity: 0; } }

/* Intro-Ablauf beim ersten Öffnen: Logo glüht auf, Golfer gleiten herein, Buttons erscheinen nacheinander */
.intro .stage-star { animation: gs-pop .9s var(--ease-out) both; }
.intro .stage-logo { animation: gs-logo 1.2s .15s var(--ease-out) both; }
.intro .stage-title { animation: gs-up .8s .55s var(--ease-out) both; }
.intro .stage-text { animation: gs-up .8s .75s var(--ease-out) both; }
.intro .stage-actions .btn { animation: gs-up .7s var(--ease-out) both; }
.intro .stage-actions .btn:nth-child(1) { animation-delay: .95s; }
.intro .stage-actions .btn:nth-child(2) { animation-delay: 1.08s; }
.intro .stage-actions .btn:nth-child(3) { animation-delay: 1.21s; }
.intro .stage-actions .btn:nth-child(4) { animation-delay: 1.34s; }
.intro .stage-golfer.l { animation: gs-in-l 1.2s .3s var(--ease-out) both; }
.intro .stage-golfer.r { animation: gs-in-r 1.2s .3s var(--ease-out) both; }
@keyframes gs-pop { from { opacity: 0; transform: scale(.4) rotate(-40deg); } 70% { transform: scale(1.12) rotate(4deg); } to { opacity: 1; transform: none; } }
@keyframes gs-logo { from { opacity: 0; transform: scale(.85); filter: blur(12px) drop-shadow(0 0 0 transparent); }
  60% { filter: blur(0) drop-shadow(0 0 60px rgba(0, 248, 255, .95)); } to { opacity: 1; transform: none; } }
@keyframes gs-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes gs-in-l { from { opacity: 0; transform: translateX(-80px); } to { opacity: .7; transform: none; } }
@keyframes gs-in-r { from { opacity: 0; transform: translateX(80px); } to { opacity: .7; transform: none; } }

/* ═══════════════ Schnellzugriff-Kacheln ═══════════════ */
.tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 640px) { .tiles { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.tile {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; justify-items: center; align-content: center; gap: 8px; text-align: center;
  min-height: 118px; padding: 16px 10px; border-radius: 16px; color: var(--text); text-decoration: none;
  background: linear-gradient(160deg, rgba(0, 248, 255, .10), rgba(2, 12, 14, .85) 55%);
  border: 1px solid var(--line);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
}
.tile svg { width: 34px; height: 34px; color: var(--accent); filter: drop-shadow(0 0 8px rgba(0, 248, 255, .6)); transition: transform .3s var(--ease-out); }
.tile b { font-family: var(--font-caps); font-weight: 800; letter-spacing: .04em; font-size: 14px; }
.tile span { font-size: 12px; color: var(--muted); line-height: 1.3; }
.tile .badge { position: absolute; top: 8px; right: 8px; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 11px;
  background: var(--gold); color: #1a1300; font-size: 12px; font-weight: 800; display: grid; place-items: center; box-shadow: 0 0 14px var(--gold); }
.tile::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity .3s;
  background: radial-gradient(80% 80% at 50% 0%, rgba(0, 248, 255, .28), transparent 70%); }
.tile:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: 0 12px 30px rgba(0, 0, 0, .45), 0 0 26px rgba(0, 248, 255, .25); text-decoration: none; }
.tile:hover::after { opacity: 1; }
.tile:hover svg { transform: scale(1.12) rotate(-4deg); }
.tile.gold svg { color: var(--gold); filter: drop-shadow(0 0 8px rgba(245, 197, 24, .6)); }
:root[data-theme="light"] .tile { background: rgba(255, 255, 255, .88); }

/* ── Seitenwechsel & sanftes Einblenden (Inhalte sind ohne JS/Animation sofort sichtbar) ── */
main.view.enter > * { animation: gs-up .45s var(--ease-out) both; }
main.view.enter > *:nth-child(2) { animation-delay: .05s; }
main.view.enter > *:nth-child(3) { animation-delay: .1s; }
main.view.enter > *:nth-child(4) { animation-delay: .15s; }
main.view.enter > *:nth-child(n+5) { animation-delay: .2s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .stage video { display: none; }
}

/* Twitch-Kasten kompakt statt bildschirmbreit */
.twitch-card .twitch-embed { max-width: 760px; width: 100%; margin: 0 auto; aspect-ratio: 16 / 9; max-height: 430px; border-radius: 12px; overflow: hidden; }

/* Seitenköpfe stehen direkt auf dem hellen Artwork: dezente Glasfläche für gute Lesbarkeit */
.page-head {
  padding: 14px 18px; border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(2, 10, 12, .78), rgba(2, 10, 12, .45) 70%, rgba(2, 10, 12, .2));
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--line);
}
.page-head p { color: #cfeff1; }
.page-head .eyebrow, .page-head .eyebrow a { color: var(--accent); }
:root[data-theme="light"] .page-head { background: rgba(255, 255, 255, .82); }
:root[data-theme="light"] .page-head p { color: var(--muted); }
/* Reiter unter dem Seitenkopf ebenfalls auf Glas */
main.view > .tabs { background: rgba(2, 10, 12, .55); border-radius: 12px; padding: 0 8px; backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur); }
:root[data-theme="light"] main.view > .tabs { background: rgba(255, 255, 255, .8); }
/* Kleine Zwischenüberschriften direkt auf dem Hintergrund (z. B. „Löcher 1 bis 18“) */
main.view > .eyebrow, .grid > .eyebrow, div > .eyebrow:only-child { text-shadow: 0 1px 6px rgba(0, 0, 0, .9); }

/* Windrose: Beschriftung auch auf dem gewählten (hellen) Feld lesbar */
.windrose text { fill: #fff; paint-order: stroke; stroke: rgba(0, 0, 0, .75); stroke-width: 3px; font-family: var(--font-caps); }
.windrose path.on { fill: var(--accent); filter: drop-shadow(0 0 8px var(--accent)); }
