:root {
  --bg-0: #050608;
  --bg-1: #0b0e12;
  --card: rgba(17, 22, 30, 0.72);
  --card-border: rgba(73, 194, 255, 0.28);
  --text: #e7edf5;
  --muted: #9bb2c8;
  --accent: #23d8ff;
  --topbar-bg: rgba(3, 5, 8, 0.7);
  --topbar-border: rgba(255, 255, 255, 0.08);
  --grid-line: rgba(40, 76, 102, 0.2);
  --bg-radial: #0d1825;
  --select-bg: rgba(10, 14, 18, 0.92);
  --select-border: rgba(255, 255, 255, 0.18);
  --btn-ghost-border: rgba(255, 255, 255, 0.2);
  --card-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  --hint-color: #7f94a8;
  --bg-parallax-y: 0px;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    --bg-0: #f0f4f8;
    --bg-1: #ffffff;
    --card: rgba(255, 255, 255, 0.9);
    --card-border: rgba(0, 136, 204, 0.25);
    --text: #1a2634;
    --muted: #4a6478;
    --accent: #0088cc;
    --topbar-bg: rgba(255, 255, 255, 0.85);
    --topbar-border: rgba(0, 0, 0, 0.08);
    --grid-line: rgba(0, 136, 204, 0.12);
    --bg-radial: #c8e0f0;
    --select-bg: rgba(255, 255, 255, 0.95);
    --select-border: rgba(0, 0, 0, 0.15);
    --btn-ghost-border: rgba(0, 0, 0, 0.2);
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --hint-color: #6b7d8f;
  }
}

/* Manual override: light */
[data-theme="light"] {
  --bg-0: #f0f4f8;
  --bg-1: #ffffff;
  --card: rgba(255, 255, 255, 0.9);
  --card-border: rgba(0, 136, 204, 0.25);
  --text: #1a2634;
  --muted: #4a6478;
  --accent: #0088cc;
  --topbar-bg: rgba(255, 255, 255, 0.85);
  --topbar-border: rgba(0, 0, 0, 0.08);
  --grid-line: rgba(0, 136, 204, 0.12);
  --bg-radial: #c8e0f0;
  --select-bg: rgba(255, 255, 255, 0.95);
  --select-border: rgba(0, 0, 0, 0.15);
  --btn-ghost-border: rgba(0, 0, 0, 0.2);
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --hint-color: #6b7d8f;
}

/* Manual override: dark */
[data-theme="dark"] {
  --bg-0: #050608;
  --bg-1: #0b0e12;
  --card: rgba(17, 22, 30, 0.72);
  --card-border: rgba(73, 194, 255, 0.28);
  --text: #e7edf5;
  --muted: #9bb2c8;
  --accent: #23d8ff;
  --topbar-bg: rgba(3, 5, 8, 0.7);
  --topbar-border: rgba(255, 255, 255, 0.08);
  --grid-line: rgba(40, 76, 102, 0.2);
  --bg-radial: #0d1825;
  --select-bg: rgba(10, 14, 18, 0.92);
  --select-border: rgba(255, 255, 255, 0.18);
  --btn-ghost-border: rgba(255, 255, 255, 0.2);
  --card-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  --hint-color: #7f94a8;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(5, 8, 12, 0.46), rgba(5, 8, 12, 0.58)),
    url("../img/background.png") center calc(50% + var(--bg-parallax-y)) / cover no-repeat fixed,
    var(--bg-0);
  min-height: 100vh;
}

html {
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  scrollbar-gutter: stable;
}

html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html.is-scrolling {
  scrollbar-color: var(--accent) transparent;
}

html::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 999px;
}

html.is-scrolling::-webkit-scrollbar-thumb {
  background-color: var(--accent);
  border-radius: 999px;
}

html.is-scrolling::-webkit-scrollbar-track {
  background: transparent;
}

.bg-grid {
  display: none;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  backdrop-filter: blur(10px);
  background: var(--topbar-bg);
  border-bottom: 1px solid var(--topbar-border);
}

.topbar-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.brand img {
  width: 210px;
  height: auto;
  display: block;
}

.mode-switch-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 2px;
}

.mode-switch-inline a {
  text-decoration: none;
  font-weight: 700;
  color: var(--muted);
  border-radius: 10px;
  padding: 8px 12px;
}

.mode-switch-inline .menu-play {
  color: var(--text);
  background: transparent;
  border-bottom: 2px solid var(--accent);
  border-radius: 0;
  padding-bottom: 6px;
}

.mode-switch-inline .menu-current {
  color: #02121b;
  background: linear-gradient(135deg, #2de2ff, #00a8cc);
  border-bottom: 0;
  border-radius: 10px;
  padding-bottom: 8px;
}

.menu {
  display: flex;
  gap: 16px;
  min-width: 0;
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.menu a:hover {
  color: var(--text);
}

.menu .menu-play {
  color: #02121b;
  background: linear-gradient(135deg, #2de2ff, #00a8cc);
  border-radius: 10px;
  padding: 8px 12px;
  outline: none;
  transition: transform 0.25s ease, box-shadow 0.2s ease, background 0.2s ease, font-size 0.25s ease;
}

.menu .menu-play:hover {
  color: #02121b;
  font-size: 1.06em;
  background: linear-gradient(135deg, #5eefff, #00c4eb);
  box-shadow: 0 6px 20px rgba(45, 226, 255, 0.45), 0 0 0 3px #000;
  transform: translateY(-4px) scale(1.08);
}

.menu .menu-play:focus,
.menu .menu-play:focus-visible {
  color: #02121b;
  font-size: 1.06em;
  background: linear-gradient(135deg, #2de2ff, #00a8cc);
  box-shadow: 0 0 0 3px #000;
  transform: translateY(-4px) scale(1.08);
}

.menu .menu-current {
  color: var(--text);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 3px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-left: 6px;
}

.lang-switch select {
  background: var(--select-bg);
  color: var(--text);
  border: 1px solid var(--select-border);
  border-radius: 8px;
  padding: 6px 8px;
}

.split-chooser {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
  padding: 14px;
  border-radius: 18px;
}

.split-chooser::before,
.split-chooser::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.42s ease;
}

.split-chooser::before {
  /* Professional background tone */
  background:
    linear-gradient(115deg, rgba(245, 247, 251, 0.86), rgba(235, 239, 246, 0.72)),
    url("../img/background.png") center / cover no-repeat;
  opacity: 0.2;
}

.split-chooser::after {
  /* Gamer background tone */
  background:
    linear-gradient(115deg, rgba(4, 10, 18, 0.82), rgba(6, 14, 23, 0.62)),
    url("../img/background.png") center / cover no-repeat;
  opacity: 0.82;
}

.split-chooser.is-pro-focus::before {
  opacity: 0.7;
}

.split-chooser.is-pro-focus::after {
  opacity: 0.36;
}

.split-chooser.is-gamer-focus::before {
  opacity: 0.12;
}

.split-chooser.is-gamer-focus::after {
  opacity: 0.9;
}

body.welcome-page {
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #070c14;
}

body.welcome-page::before,
body.welcome-page::after {
  content: "";
  position: fixed;
  inset: 0;
  transition: opacity 1.05s ease;
}

body.welcome-page::before {
  z-index: -2;
  opacity: 0.58;
  background:
    linear-gradient(110deg, rgba(236, 241, 247, 0.72), rgba(216, 226, 238, 0.42)),
    url("../img/welcome-bg.png") center / cover no-repeat fixed;
}

body.welcome-page::after {
  z-index: -1;
  opacity: 0.58;
  background:
    linear-gradient(110deg, rgba(10, 18, 29, 0.58), rgba(12, 24, 38, 0.42)),
    url("../img/welcome-bg.png") center / cover no-repeat fixed;
}

body.welcome-page.welcome-pro::before {
  opacity: 0.92;
}

body.welcome-page.welcome-pro::after {
  opacity: 0.22;
}

body.welcome-page.welcome-gamer::before {
  opacity: 0.2;
}

body.welcome-page.welcome-gamer::after {
  opacity: 0.94;
}

.welcome-shell {
  width: min(1280px, 96vw);
  height: min(92vh, 840px);
  display: grid;
  align-items: center;
}

.welcome-shield-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  transform: translateY(-10px);
  pointer-events: none;
}

.welcome-shield {
  width: clamp(54px, 8vw, 98px);
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 8px 24px rgba(35, 216, 255, 0.35));
}

.welcome-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.welcome-option {
  --welcome-scale: 1;
  --welcome-lift: 0px;
  --welcome-shift-x: 0px;
  --welcome-opacity: 1;
  --welcome-blur: 0px;
  min-height: clamp(320px, 72vh, 760px);
  border: 1px solid rgba(60, 202, 255, 0.32);
  border-radius: 18px;
  padding: 36px 30px;
  text-decoration: none;
  color: var(--text);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translate(var(--welcome-shift-x), var(--welcome-lift)) scale(var(--welcome-scale));
  opacity: var(--welcome-opacity);
  filter: blur(var(--welcome-blur));
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.45s ease, filter 0.45s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.3s ease, color 0.3s ease;
}

body.welcome-page {
  --welcome-overlap-active: clamp(70px, 10vw, 150px);
  --welcome-overlap-passive: clamp(20px, 3vw, 46px);
}

.welcome-option:hover,
.welcome-option:focus-visible {
  --welcome-lift: -2px;
  border-color: var(--accent);
  box-shadow: 0 14px 34px rgba(13, 27, 44, 0.35), 0 0 0 1px rgba(35, 216, 255, 0.3) inset;
  outline: none;
}

.welcome-option h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.welcome-option p {
  margin: 0;
  max-width: 26ch;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.5;
}

body.welcome-page .split-kicker {
  margin: 0 0 14px;
  font-size: 0.88rem;
}

body.welcome-page .welcome-pro-option,
body.welcome-page .welcome-gamer-option {
  background: rgba(7, 16, 28, 0.54);
}

body.welcome-page .welcome-pro-option {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(0, 0, 0, 0.62);
}

body.welcome-page .welcome-option p {
  color: inherit;
  opacity: 0.9;
}

body.welcome-page.welcome-pro .welcome-pro-option {
  --welcome-scale: 1.14;
  --welcome-shift-x: var(--welcome-overlap-active);
  --welcome-opacity: 1;
  --welcome-blur: 0px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(236, 242, 248, 0.78));
  color: #1f2b3a;
  border-color: rgba(124, 92, 156, 0.42);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(0, 0, 0, 0.62);
  z-index: 3;
}

body.welcome-page.welcome-pro .welcome-pro-option .split-kicker {
  color: #744f9a;
}

body.welcome-page.welcome-pro .welcome-gamer-option {
  --welcome-scale: 0.88;
  --welcome-shift-x: calc(-1 * var(--welcome-overlap-passive));
  --welcome-opacity: 0.72;
  --welcome-blur: 1.4px;
  background: linear-gradient(135deg, rgba(4, 13, 22, 0.8), rgba(8, 19, 30, 0.62));
  color: #dce8f4;
  z-index: 2;
}

body.welcome-page.welcome-gamer .welcome-gamer-option {
  --welcome-scale: 1.14;
  --welcome-shift-x: calc(-1 * var(--welcome-overlap-active));
  --welcome-opacity: 1;
  --welcome-blur: 0px;
  background: linear-gradient(135deg, rgba(5, 16, 25, 0.88), rgba(9, 22, 36, 0.7));
  color: #e8f2fb;
  border-color: rgba(66, 218, 255, 0.6);
  box-shadow: 0 14px 34px rgba(10, 26, 42, 0.36), 0 0 0 1px rgba(35, 216, 255, 0.28) inset;
  z-index: 3;
}

body.welcome-page.welcome-gamer .welcome-pro-option {
  --welcome-scale: 0.88;
  --welcome-shift-x: var(--welcome-overlap-passive);
  --welcome-opacity: 0.72;
  --welcome-blur: 1.4px;
  background: linear-gradient(145deg, rgba(246, 250, 255, 0.78), rgba(224, 233, 244, 0.62));
  color: #273346;
  border-color: rgba(111, 123, 144, 0.38);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.62);
  z-index: 2;
}

.split-option {
  position: relative;
  z-index: 1;
  min-height: 290px;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--card-border);
  background: var(--card);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.split-option:hover,
.split-option:focus-visible {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--card-shadow), 0 8px 26px rgba(35, 216, 255, 0.18);
  outline: none;
}

.split-kicker {
  margin: 0 0 10px;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
}

.split-option h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.split-option p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.split-gamer {
  background: linear-gradient(130deg, rgba(6, 16, 24, 0.9), rgba(9, 22, 34, 0.7));
}

.split-pro {
  background: linear-gradient(130deg, rgba(11, 15, 21, 0.9), rgba(23, 28, 37, 0.72));
}

.hero {
  position: relative;
  padding: 82px 0 52px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 56px;
  left: -14px;
  width: min(860px, 92vw);
  height: 320px;
  border-radius: 18px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(90deg, rgba(2, 6, 10, 0.7) 0%, rgba(2, 6, 10, 0.5) 60%, rgba(2, 6, 10, 0) 100%);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--accent);
}

h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
}

.lead {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.hero h1 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.hero .lead {
  color: #d7e2ee;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .hero .lead {
  color: var(--muted);
  text-shadow: none;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) .hero .lead {
    color: var(--muted);
    text-shadow: none;
  }
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.games-row {
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  border: 1px solid transparent;
  outline: none;
  transition: transform 0.25s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, font-size 0.25s ease;
}

.btn:focus,
.btn:focus-visible {
  box-shadow: 0 0 0 3px #000;
}

.btn:hover {
  transform: translateY(-5px) scale(1.08);
  font-size: 1.06em;
}

.btn-primary {
  background: linear-gradient(135deg, #2de2ff, #00a8cc);
  color: #02121b;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.08);
  font-size: 1.06em;
  background: linear-gradient(135deg, #5eefff, #00c4eb);
  box-shadow: 0 10px 30px rgba(45, 226, 255, 0.45), 0 4px 12px rgba(0, 168, 204, 0.3), 0 0 0 3px #000;
}

.btn-primary:focus,
.btn-primary:focus-visible {
  box-shadow: 0 0 0 3px #000;
}

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

.btn-ghost:hover {
  transform: translateY(-4px) scale(1.08);
  font-size: 1.06em;
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(35, 216, 255, 0.2);
  box-shadow: 0 6px 20px rgba(35, 216, 255, 0.2), 0 0 0 2px #000;
}

[data-theme="light"] .btn-ghost:hover {
  border-color: #006fa8;
  color: #005780;
  background: rgba(0, 136, 204, 0.24);
  box-shadow: 0 8px 24px rgba(0, 136, 204, 0.28), 0 0 0 2px #000;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) .btn-ghost:hover {
    border-color: #006fa8;
    color: #005780;
    background: rgba(0, 136, 204, 0.24);
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.28), 0 0 0 2px #000;
  }
}

.btn-ghost:focus,
.btn-ghost:focus-visible {
  box-shadow: 0 0 0 3px #000;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px auto;
}


.card, .panel {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover, .panel:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--card-shadow), 0 6px 20px rgba(35, 216, 255, 0.12);
}

.card h2, .panel h2 {
  margin-top: 0;
}

.card p, .panel p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  outline: none;
}

.pricing-card-featured {
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(143, 47, 86, 0.18);
}

.pricing-card:hover,
.pricing-card:focus-visible {
  transform: translateY(-4px) scale(1.02);
  border-color: #a53a63;
  box-shadow: 0 14px 28px rgba(143, 47, 86, 0.22);
  background: #fff7fb;
}

[data-theme="dark"] .pricing-card {
  background: rgba(18, 26, 38, 0.92);
  border-color: rgba(120, 144, 176, 0.34);
}

[data-theme="dark"] .pricing-card-featured {
  background: rgba(24, 34, 50, 0.96);
  border-color: rgba(146, 170, 204, 0.52);
  box-shadow: 0 8px 20px rgba(14, 26, 44, 0.34);
}

[data-theme="dark"] .pricing-card:hover,
[data-theme="dark"] .pricing-card:focus-visible {
  border-color: rgba(146, 170, 204, 0.52);
  box-shadow: 0 14px 28px rgba(14, 26, 44, 0.36);
  background: rgba(24, 34, 50, 0.96);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .pricing-card {
    background: rgba(18, 26, 38, 0.92);
    border-color: rgba(120, 144, 176, 0.34);
  }

  :root:not([data-theme]) .pricing-card-featured {
    background: rgba(24, 34, 50, 0.96);
    border-color: rgba(146, 170, 204, 0.52);
    box-shadow: 0 8px 20px rgba(14, 26, 44, 0.34);
  }

  :root:not([data-theme]) .pricing-card:hover,
  :root:not([data-theme]) .pricing-card:focus-visible {
    border-color: rgba(146, 170, 204, 0.52);
    box-shadow: 0 14px 28px rgba(14, 26, 44, 0.36);
    background: rgba(24, 34, 50, 0.96);
  }
}

.pricing-name {
  margin: 0 0 6px;
  font-weight: 700;
}

.pricing-price {
  margin: 0 0 8px;
  font-size: 1.32rem;
  font-weight: 800;
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.panel {
  margin-top: 14px;
}

.project-cta {
  margin-top: 14px;
  margin-bottom: 6px;
}

.project-brand-row {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.project-cta-inline {
  margin: 0;
  flex: 0 0 auto;
}

.project-brand-row .wordmark-wrap {
  margin-top: 0;
  flex: 1 1 auto;
}

.project-brand-row .wordmark {
  width: min(100%, 700px);
  transform: scale(1.05);
  transform-origin: left center;
  filter: drop-shadow(0 8px 20px rgba(35, 216, 255, 0.28));
}

.project-brand-row .wordmark text {
  filter:
    drop-shadow(0 0 8px rgba(35, 216, 255, 0.32))
    drop-shadow(0 0 16px rgba(35, 216, 255, 0.24))
    drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.project-brand-row:hover .wordmark {
  transform: scale(1.08);
  filter: drop-shadow(0 10px 26px rgba(35, 216, 255, 0.38));
}

.project-brand-row:hover .wordmark text {
  filter:
    drop-shadow(0 0 12px rgba(35, 216, 255, 0.46))
    drop-shadow(0 0 24px rgba(35, 216, 255, 0.34))
    drop-shadow(0 3px 12px rgba(0, 0, 0, 0.4));
}

.contact-map-wrap {
  margin-top: 12px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
}

.contact-map {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

[data-theme="dark"] .contact-map {
  filter: brightness(0.75) contrast(1.08) saturate(0.88);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .contact-map {
    filter: brightness(0.75) contrast(1.08) saturate(0.88);
  }
}

.wordmark-wrap {
  margin-top: 18px;
  --wm-dark: #0b0e12;
  --wm-mid: #1a7a8c;
}

[data-theme="light"] .wordmark-wrap {
  --wm-dark: #1a2634;
  --wm-mid: #0088cc;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) .wordmark-wrap {
    --wm-dark: #1a2634;
    --wm-mid: #0088cc;
  }
}

/* Professional preview page */
body.pro-page {
  --bg-0: #f3f4f7;
  --bg-1: #ffffff;
  --card: rgba(255, 255, 255, 0.92);
  --card-border: rgba(133, 151, 173, 0.28);
  --text: #1f2b3a;
  --muted: #4f5e71;
  --accent: #6d1f2f;
  --topbar-bg: rgba(255, 255, 255, 0.9);
  --topbar-border: rgba(12, 20, 35, 0.1);
  --btn-ghost-border: rgba(59, 74, 93, 0.28);
  background: #f3f4f7;
  color: #1c2430;
}

/* Professional page: proper dark theme override */
[data-theme="dark"] body.pro-page {
  --bg-0: #0b1018;
  --bg-1: #121926;
  --card: rgba(20, 28, 41, 0.9);
  --card-border: rgba(173, 74, 110, 0.38);
  --text: #e8eef8;
  --muted: #b4c0d4;
  --accent: #8d2c40;
  --topbar-bg: rgba(11, 16, 24, 0.9);
  --topbar-border: rgba(255, 255, 255, 0.1);
  --btn-ghost-border: rgba(194, 78, 120, 0.5);
  --hint-color: #95a4bd;
  background: radial-gradient(circle at top, #1a2233 0%, #0d131d 50%, #0b1118 100%);
  color: var(--text);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) body.pro-page {
    --bg-0: #0b1018;
    --bg-1: #121926;
    --card: rgba(20, 28, 41, 0.9);
    --card-border: rgba(173, 74, 110, 0.38);
    --text: #e8eef8;
    --muted: #b4c0d4;
    --accent: #8d2c40;
    --topbar-bg: rgba(11, 16, 24, 0.9);
    --topbar-border: rgba(255, 255, 255, 0.1);
    --btn-ghost-border: rgba(194, 78, 120, 0.5);
    --hint-color: #95a4bd;
    background: radial-gradient(circle at top, #1a2233 0%, #0d131d 50%, #0b1118 100%);
    color: var(--text);
  }
}

body.pro-page .hero::before {
  display: none;
}

body.pro-page .hero h1 {
  text-shadow: none;
  color: #1f2b3a;
}

body.pro-page .hero .lead {
  color: #4f5e71;
  text-shadow: none;
}

body.pro-page .menu .menu-play {
  color: #fff;
  background: linear-gradient(135deg, #8d2c40, #6d1f2f);
}

body.pro-page .menu .menu-play:hover,
body.pro-page .menu .menu-play:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, #b6465d, #92394d);
  box-shadow: 0 8px 20px rgba(143, 32, 54, 0.28), 0 0 0 3px #000;
}

body.pro-page .mode-switch-inline .menu-play {
  color: #2f3a4b;
  background: transparent;
  border-bottom: 2px solid #6d1f2f;
  border-radius: 0;
  padding-bottom: 6px;
}

body.pro-page .mode-switch-inline .menu-current {
  color: #fff;
  background: linear-gradient(135deg, #8d2c40, #6d1f2f);
  border-bottom: 0;
  border-radius: 10px;
  padding-bottom: 8px;
}

body.pro-page .bg-grid {
  display: none;
}

.pro-shop-shell {
  width: min(1240px, 96vw);
  margin: 22px auto 34px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(12, 20, 35, 0.18);
  border: 1px solid rgba(12, 20, 35, 0.12);
}

[data-theme="dark"] .pro-shop-shell {
  background: #121a26;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .pro-shop-shell {
    background: #121a26;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }
}

.pro-promo-bar {
  background: linear-gradient(180deg, #8d2c40, #6d1f2f);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.94rem;
}

.pro-promo-btn {
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #8d2c40, #6d1f2f);
  border: 1px solid #6d1f2f;
  box-shadow: 0 4px 10px rgba(143, 32, 54, 0.24);
  border-radius: 4px;
  padding: 6px 12px;
  font-weight: 800;
  font-size: 0.82rem;
}

.pro-brand-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid #e6e9ef;
  color: #647285;
  font-weight: 600;
  font-size: 0.82rem;
  text-align: center;
  background: #fafbfc;
}

[data-theme="dark"] .pro-brand-strip {
  background: #161f2e;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  color: #aebcd2;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .pro-brand-strip {
    background: #161f2e;
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: #aebcd2;
  }
}

.pro-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #e6e9ef;
}

[data-theme="dark"] .pro-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .pro-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
}

.pro-logo img {
  width: 150px;
}

.pro-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pro-search-wrap input {
  flex: 1;
  border: 1px solid #d3dae5;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 0.94rem;
}

[data-theme="dark"] .pro-search-wrap input {
  background: #0f1724;
  color: #e8eef8;
  border-color: rgba(255, 255, 255, 0.14);
}

[data-theme="dark"] .pro-search-wrap input::placeholder {
  color: #8ea0ba;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .pro-search-wrap input {
    background: #0f1724;
    color: #e8eef8;
    border-color: rgba(255, 255, 255, 0.14);
  }

  :root:not([data-theme]) .pro-search-wrap input::placeholder {
    color: #8ea0ba;
  }
}

.pro-search-wrap button {
  border: 0;
  border-radius: 6px;
  background: linear-gradient(180deg, #8d2c40, #6d1f2f);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(143, 32, 54, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease;
}

.pro-account-nav {
  display: inline-flex;
  gap: 10px;
}

.pro-account-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.38rem 0.72rem;
  border-radius: 8px;
  text-decoration: none;
  color: #4f5c70;
  font-weight: 600;
  font-size: 0.82rem;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

[data-theme="dark"] .pro-account-nav a {
  color: #c0ccdf;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .pro-account-nav a {
    color: #c0ccdf;
  }
}

.pro-account-nav a:hover,
.pro-account-nav a:focus-visible {
  color: #fff;
  background: linear-gradient(180deg, #8d2c40, #6d1f2f);
  border-color: #6d1f2f;
  box-shadow: 0 8px 16px rgba(143, 32, 54, 0.35);
  transform: translateY(-1px);
}

.pro-account-nav a:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(143, 32, 54, 0.28);
}

.pro-account-nav .pro-mode-switch {
  color: #fff;
  background: linear-gradient(135deg, #2de2ff, #00a8cc);
  border-radius: 8px;
  padding: 6px 10px;
  font-weight: 700;
}

body.pro-page .lang-switch {
  color: #4f5c70;
  margin-left: 0;
}

body.pro-page .lang-switch select {
  background: #fff;
  border-color: #d3dae5;
}

[data-theme="dark"] body.pro-page .lang-switch {
  color: #b6c3d8;
}

[data-theme="dark"] body.pro-page .lang-switch select {
  background: #121b29;
  color: #e8eef8;
  border-color: rgba(255, 255, 255, 0.16);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) body.pro-page .lang-switch {
    color: #b6c3d8;
  }

  :root:not([data-theme]) body.pro-page .lang-switch select {
    background: #121b29;
    color: #e8eef8;
    border-color: rgba(255, 255, 255, 0.16);
  }
}

.pro-category-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  text-align: center;
  border-bottom: 1px solid #e6e9ef;
  background: #fff;
}

[data-theme="dark"] .pro-category-nav {
  background: #151f2d;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .pro-category-nav {
    background: #151f2d;
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
}

.pro-category-nav a {
  text-decoration: none;
  color: #2d3748;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 8px;
  border-right: 1px solid #eef1f6;
}

[data-theme="dark"] .pro-category-nav a {
  color: #d6e0ef;
  border-right-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .pro-category-nav a:hover {
  background: rgba(179, 50, 73, 0.18);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .pro-category-nav a {
    color: #d6e0ef;
    border-right-color: rgba(255, 255, 255, 0.08);
  }

  :root:not([data-theme]) .pro-category-nav a:hover {
    background: rgba(179, 50, 73, 0.18);
  }
}

.pro-category-nav a:last-child {
  border-right: 0;
}

.pro-category-nav a:hover {
  background: #f6f8fb;
}

.pro-hero-banner {
  display: grid;
  grid-template-columns: minmax(240px, 34%) 1fr;
  gap: 0;
  min-height: 360px;
}

.pro-offer-card {
  background: linear-gradient(180deg, #8d2c40, #6d1f2f);
  color: #fff9ef;
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pro-offer-card p {
  margin: 0 0 14px;
  font-weight: 600;
}

.pro-offer-card h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5.5vw, 4.6rem);
  line-height: 0.95;
  color: #fff;
}

.pro-visual-card {
  background:
    linear-gradient(90deg, rgba(245, 248, 252, 0.58), rgba(245, 248, 252, 0.42)),
    url("https://plus.unsplash.com/premium_photo-1721936170733-7d515c1a49e5?auto=format&fit=crop&w=2200&q=80") center / cover no-repeat;
  background-blend-mode: normal;
  filter: contrast(1.08) saturate(1.04);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pro-visual-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  color: #1e2a3c;
}

.pro-visual-card p {
  margin: 0;
  color: #3e4a5d;
  line-height: 1.6;
  max-width: 560px;
}

[data-theme="dark"] .pro-visual-card h2 {
  color: #f1f5fc;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

[data-theme="dark"] .pro-visual-card p {
  color: #d7e1ef;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .pro-visual-card {
  background:
    linear-gradient(95deg, rgba(10, 16, 26, 0.72), rgba(11, 18, 28, 0.52)),
    url("https://plus.unsplash.com/premium_photo-1721936170733-7d515c1a49e5?auto=format&fit=crop&w=2200&q=80") center / cover no-repeat;
  filter: contrast(1.12) saturate(0.94) brightness(0.92);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .pro-visual-card h2 {
    color: #f1f5fc;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  }

  :root:not([data-theme]) .pro-visual-card p {
    color: #d7e1ef;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  }

  :root:not([data-theme]) .pro-visual-card {
    background:
      linear-gradient(95deg, rgba(10, 16, 26, 0.72), rgba(11, 18, 28, 0.52)),
      url("https://plus.unsplash.com/premium_photo-1721936170733-7d515c1a49e5?auto=format&fit=crop&w=2200&q=80") center / cover no-repeat;
    filter: contrast(1.12) saturate(0.94) brightness(0.92);
  }
}

.pro-bottom-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid #e6e9ef;
  background: #fbfcfe;
}

body.pro-page .btn-primary {
  background: linear-gradient(135deg, #8d2c40, #6d1f2f);
  color: #fff;
  box-shadow: 0 4px 10px rgba(143, 32, 54, 0.24);
  transform: translateY(0) scale(1);
}

body.pro-page .btn-primary:hover,
body.pro-page .btn-primary:focus-visible {
  background: linear-gradient(135deg, #b6465d, #92394d);
  color: #fff;
  box-shadow: 0 14px 28px rgba(143, 32, 54, 0.34), 0 3px 0 rgba(116, 28, 45, 0.38);
  transform: translateY(-4px) scale(1.03);
  font-size: 1em;
}

body.pro-page .btn-primary:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 6px 12px rgba(143, 32, 54, 0.24);
}

body.pro-page .btn-ghost {
  border-color: #6d1f2f;
  color: #fff;
  background: linear-gradient(135deg, #8d2c40, #6d1f2f);
  box-shadow: 0 4px 10px rgba(143, 32, 54, 0.24);
  transform: translateY(0) scale(1);
}

body.pro-page .btn-ghost:hover,
body.pro-page .btn-ghost:focus-visible {
  border-color: #8d2c40;
  color: #fff;
  background: linear-gradient(135deg, #b6465d, #92394d);
  box-shadow: 0 12px 24px rgba(143, 32, 54, 0.24), 0 2px 0 rgba(111, 123, 144, 0.25);
  transform: translateY(-4px) scale(1.03);
  font-size: 1em;
}

body.pro-page .btn-ghost:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 5px 10px rgba(143, 32, 54, 0.18);
}

body.pro-page .mode-switch-inline a {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

body.pro-page .mode-switch-inline a:hover,
body.pro-page .mode-switch-inline a:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(143, 32, 54, 0.28);
}

body.pro-page .pro-promo-btn,
body.pro-page .pro-search-wrap button {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.pro-page .pro-promo-btn:hover,
body.pro-page .pro-promo-btn:focus-visible,
body.pro-page .pro-search-wrap button:hover,
body.pro-page .pro-search-wrap button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(143, 32, 54, 0.24);
}

.section-flash {
  animation: sectionFlash 0.9s ease;
}

@keyframes sectionFlash {
  0% { box-shadow: 0 0 0 0 rgba(179, 50, 73, 0); }
  35% { box-shadow: 0 0 0 8px rgba(179, 50, 73, 0.22); }
  100% { box-shadow: 0 0 0 0 rgba(179, 50, 73, 0); }
}

.mode-transition-layer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.mode-transition-layer.is-visible {
  opacity: 1;
  transform: scale(1);
}

.mode-transition-layer.mode-gamer {
  background:
    radial-gradient(1000px 520px at 65% 42%, rgba(59, 217, 255, 0.28), transparent 70%),
    linear-gradient(110deg, rgba(3, 10, 18, 0.86), rgba(5, 17, 30, 0.66));
}

.mode-transition-layer.mode-business {
  background:
    radial-gradient(1000px 520px at 32% 46%, rgba(168, 121, 152, 0.2), transparent 70%),
    linear-gradient(110deg, rgba(22, 25, 33, 0.92), rgba(38, 33, 46, 0.8));
}

@media (max-width: 1100px) {
  .pro-header {
    grid-template-columns: 1fr;
    grid-template-areas:
      "search"
      "account";
  }

  .pro-search-wrap {
    grid-area: search;
  }

  .pro-account-nav {
    grid-area: account;
  }

  .pro-header label[for="theme-select"],
  .pro-header label[for="lang-select"] { display: none; }
}

@media (max-width: 860px) {
  .pro-brand-strip,
  .pro-category-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pro-hero-banner {
    grid-template-columns: 1fr;
  }

  .pro-bottom-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

.wordmark {
  width: min(100%, 620px);
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(35, 216, 255, 0.15));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.panel:hover .wordmark {
  filter: drop-shadow(0 4px 16px rgba(35, 216, 255, 0.25));
}

[data-theme="light"] .wordmark-wrap {
  padding: 0;
  background: none;
}

[data-theme="light"] .wordmark {
  filter: none;
}

[data-theme="light"] .wordmark text {
  filter:
    drop-shadow(0 0 8px rgba(0, 0, 0, 0.35))
    drop-shadow(0 0 16px rgba(0, 136, 204, 0.45))
    drop-shadow(0 0 28px rgba(0, 136, 204, 0.35))
    drop-shadow(10px -2px 18px rgba(0, 136, 204, 0.28))
    drop-shadow(-10px 3px 18px rgba(0, 136, 204, 0.28));
  transition: filter 0.22s ease;
}

[data-theme="light"] .panel:hover .wordmark {
  filter: none;
}

[data-theme="light"] .panel:hover .wordmark text {
  filter:
    drop-shadow(0 0 12px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 30px rgba(0, 136, 204, 0.78))
    drop-shadow(0 0 48px rgba(0, 136, 204, 0.62))
    drop-shadow(20px -4px 30px rgba(0, 136, 204, 0.5))
    drop-shadow(-20px 6px 30px rgba(0, 136, 204, 0.5));
}

.hint {
  color: var(--hint-color);
  font-size: 0.9rem;
}

.footer {
  padding: 26px 0 38px;
  display: flex;
  justify-content: space-between;
  color: var(--hint-color);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .welcome-shell {
    height: auto;
    padding: 24px 0;
  }

  .welcome-shield-wrap {
    margin-bottom: 10px;
    transform: translateY(-6px);
  }

  .welcome-shield {
    width: clamp(50px, 18vw, 78px);
  }

  .welcome-split {
    grid-template-columns: 1fr;
  }

  body.welcome-page.welcome-pro .welcome-split,
  body.welcome-page.welcome-gamer .welcome-split {
    grid-template-columns: 1fr;
  }

  .welcome-option {
    min-height: 42vh;
    --welcome-shift-x: 0px;
    --welcome-scale: 1;
  }

  .split-chooser {
    grid-template-columns: 1fr;
  }

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

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

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-left {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .menu {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    gap: 10px;
  }

  .lang-switch {
    width: auto;
    flex: 0 0 auto;
  }
}

@media (max-width: 1240px) {
  .topbar {
    gap: 12px;
  }

  .topbar-left {
    flex: 0 1 auto;
  }

  .menu {
    flex: 1 1 auto;
    justify-content: flex-end;
    flex-wrap: wrap;
    row-gap: 8px;
    column-gap: 10px;
  }

  .menu a {
    font-size: 0.92rem;
  }

  .lang-switch {
    gap: 6px;
    font-size: 0.84rem;
    margin-left: 2px;
  }

  .lang-switch select {
    padding: 4px 6px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(1120px, 95vw);
  }

  .brand img {
    width: 160px;
  }

  .mode-switch-inline a {
    padding: 7px 10px;
    font-size: 0.95rem;
  }

  .menu a {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .lang-switch {
    gap: 6px;
    font-size: 0.82rem;
  }

  .lang-switch select {
    padding: 5px 6px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 58px 0 34px;
  }

  .cta-row {
    flex-wrap: wrap;
  }

  .project-brand-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-cta-inline {
    margin-top: 8px;
  }

  .btn {
    padding: 10px 12px;
  }

  .pro-promo-bar {
    flex-wrap: wrap;
    text-align: center;
    gap: 10px;
    font-size: 0.86rem;
  }

  .pro-search-wrap {
    flex-wrap: wrap;
  }

  .pro-search-wrap input {
    width: 100%;
  }

  .pro-search-wrap button {
    width: 100%;
  }
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) .wordmark-wrap {
    padding: 0;
    background: none;
  }

  :root:not([data-theme]) .wordmark {
    filter: none;
  }

  :root:not([data-theme]) .wordmark text {
    filter:
      drop-shadow(0 0 8px rgba(0, 0, 0, 0.35))
      drop-shadow(0 0 16px rgba(0, 136, 204, 0.45))
      drop-shadow(0 0 28px rgba(0, 136, 204, 0.35))
      drop-shadow(10px -2px 18px rgba(0, 136, 204, 0.28))
      drop-shadow(-10px 3px 18px rgba(0, 136, 204, 0.28));
    transition: filter 0.22s ease;
  }

  :root:not([data-theme]) .panel:hover .wordmark {
    filter: none;
  }

  :root:not([data-theme]) .panel:hover .wordmark text {
    filter:
      drop-shadow(0 0 12px rgba(0, 0, 0, 0.55))
      drop-shadow(0 0 30px rgba(0, 136, 204, 0.78))
      drop-shadow(0 0 48px rgba(0, 136, 204, 0.62))
      drop-shadow(20px -4px 30px rgba(0, 136, 204, 0.5))
      drop-shadow(-20px 6px 30px rgba(0, 136, 204, 0.5));
  }
}
