:root {
  --bg: #0f071a;
  --bg2: #1a0d38;
  --bg3: #2c0a5f;
  --bg4: #4a0f8f;
  --nebula-cyan: #00dfff;
  --nebula-cyan-bright: #00ffff;
  --nebula-purple: #8a2be2;
  --nebula-violet: #9932cc;
  --nebula-pink: #ee82ee;
  --nebula-magenta: #e040fb;
  --ship-blue: #1e90ff;
  --ship-blue-light: #00bfff;
  --star-yellow: #ffff00;
  --asteroid: #4b3a5a;
  --asteroid-light: #6c5b7c;

  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.1);
  --text: rgba(255, 255, 255, 0.94);
  --muted: rgba(255, 255, 255, 0.7);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --shadow2: 0 10px 30px rgba(0, 0, 0, 0.4);
  --radius: 18px;
  --radius2: 28px;
  --max: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% 10%, rgba(138, 43, 226, 0.2), transparent 55%),
    radial-gradient(900px 600px at 80% 20%, rgba(0, 223, 255, 0.14), transparent 55%),
    radial-gradient(800px 500px at 60% 70%, rgba(224, 64, 251, 0.1), transparent 50%),
    linear-gradient(180deg, var(--bg), var(--bg2) 50%, var(--bg3));
  overflow-x: hidden;
  cursor: default;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.boda-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.boda-skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 50;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--line);
  transform: translateY(-140%);
  transition: transform 200ms ease;
}

.boda-skip-link:focus {
  transform: translateY(0);
}

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.9;
}

.boda-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.boda-card,
.boda-feature,
.boda-callout,
.boda-form,
.boda-gallery-item {
  min-width: 0;
}

.boda-list,
.boda-text,
.boda-hero-lead,
.boda-section-lead {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.boda-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(15, 7, 26, 0.88), rgba(26, 13, 56, 0.4));
  border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.boda-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.boda-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.boda-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, var(--nebula-cyan-bright), var(--nebula-purple) 45%, var(--nebula-magenta) 70%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14) inset, 0 0 20px rgba(0, 223, 255, 0.3);
}

.boda-brand-text {
  font-weight: 760;
  letter-spacing: 0.2px;
}

.boda-brand-text span {
  color: rgba(255, 255, 255, 0.65);
}

.boda-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.boda-nav-link {
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.86);
}

.boda-nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.boda-nav-cta {
  margin-left: 6px;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 223, 255, 0.35);
  background: linear-gradient(135deg, rgba(0, 223, 255, 0.2), rgba(138, 43, 226, 0.18));
  box-shadow: 0 0 16px rgba(0, 223, 255, 0.15);
}

.boda-nav-cta:hover {
  text-decoration: none;
  border-color: var(--nebula-cyan);
  box-shadow: 0 0 20px rgba(0, 223, 255, 0.25);
}

.boda-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.boda-nav-toggle-lines {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 3px;
}

.boda-nav-toggle-lines::before,
.boda-nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 3px;
  transition: transform 180ms ease, top 180ms ease, opacity 180ms ease;
}

.boda-nav-toggle-lines::before {
  top: -6px;
}

.boda-nav-toggle-lines::after {
  top: 6px;
}

[data-nav-open="true"] .boda-nav-toggle-lines {
  background: transparent;
}

[data-nav-open="true"] .boda-nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

[data-nav-open="true"] .boda-nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.boda-hero {
  padding: 58px 0 22px;
}

.boda-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: center;
}

.boda-hero-media {
  position: relative;
  order: 0;
}

.boda-hero-image-wrap {
  position: relative;
  border-radius: var(--radius2);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.boda-hero-cover {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.boda-hero-image-glow {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius2);
  background: radial-gradient(circle at 50% 50%, rgba(0, 223, 255, 0.15), rgba(138, 43, 226, 0.08) 40%, transparent 60%);
  pointer-events: none;
}

@keyframes boda-gallery-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes boda-gallery-pulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 0 rgba(0, 223, 255, 0);
    border-color: rgba(255, 255, 255, 0.12);
  }
  50% {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 223, 255, 0.08);
    border-color: rgba(0, 223, 255, 0.2);
  }
}

.boda-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.boda-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  cursor: default;
  animation:
    boda-gallery-in 0.6s ease-out backwards,
    boda-gallery-pulse 3s ease-in-out 0.6s infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.boda-gallery-item:nth-child(1) { animation-delay: 0.05s, 0.65s; }
.boda-gallery-item:nth-child(2) { animation-delay: 0.1s, 0.7s; }
.boda-gallery-item:nth-child(3) { animation-delay: 0.15s, 0.75s; }
.boda-gallery-item:nth-child(4) { animation-delay: 0.2s, 0.8s; }
.boda-gallery-item:nth-child(5) { animation-delay: 0.25s, 0.85s; }
.boda-gallery-item:nth-child(6) { animation-delay: 0.3s, 0.9s; }

.boda-gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 223, 255, 0.12);
  border-color: rgba(0, 223, 255, 0.35);
}

.boda-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.boda-gallery-item:hover img {
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .boda-gallery-item {
    animation: boda-gallery-in 0.6s ease-out backwards;
  }
  .boda-gallery-item:hover img {
    transform: none;
  }
}

.boda-kicker {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(138, 43, 226, 0.2);
  border: 1px solid rgba(0, 223, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  margin: 0 0 12px;
}

.boda-hero-title {
  margin: 0 0 12px;
  font-size: 46px;
  line-height: 1.06;
  letter-spacing: -0.6px;
}

.boda-hero-lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  max-width: 58ch;
}

.boda-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.boda-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-weight: 650;
  font-size: 14px;
}

button {
  cursor: pointer;
}

input,
textarea {
  cursor: text;
}

.boda-nav-toggle {
  cursor: pointer;
}

[data-game="start"],
[data-game="toggle"] {
  cursor: pointer;
}

[data-consent] {
  cursor: pointer;
}

[data-thankyou-close] {
  cursor: pointer;
}

.boda-disclaimer,
.boda-badge {
  cursor: default;
}

.boda-btn-wide {
  width: 100%;
}

.boda-btn-primary {
  background: linear-gradient(135deg, rgba(0, 223, 255, 0.25), rgba(138, 43, 226, 0.22));
  border-color: rgba(0, 223, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 223, 255, 0.15);
}

.boda-btn-primary:hover {
  border-color: var(--nebula-cyan);
  box-shadow: 0 0 24px rgba(0, 223, 255, 0.25);
}

.boda-btn-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.boda-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.26);
}

.boda-btn-small {
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13px;
}

.boda-micro {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12.5px;
  line-height: 1.4;
}

.boda-hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.boda-badge {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}


.boda-section {
  padding: 44px 0;
}

.boda-section-alt {
  background: linear-gradient(180deg, rgba(44, 10, 95, 0.25), rgba(26, 13, 56, 0.15));
  border-top: 1px solid rgba(138, 43, 226, 0.15);
  border-bottom: 1px solid rgba(138, 43, 226, 0.15);
}

.boda-section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.boda-section-title {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.2px;
}

.boda-section-lead {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.6;
}

.boda-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.boda-grid-2 .boda-span-2 {
  grid-column: 1 / -1;
}

.boda-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  padding: 18px;
}

.boda-card-title {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.1px;
}

.boda-text {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.boda-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.boda-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.boda-feature {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.18);
  padding: 14px;
}

.boda-feature-title {
  margin: 0 0 6px;
  font-size: 14px;
}

.boda-feature-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13.5px;
  line-height: 1.5;
}

.boda-callout {
  border-radius: var(--radius);
  border: 1px solid rgba(138, 43, 226, 0.25);
  background: linear-gradient(135deg, rgba(0, 223, 255, 0.08), rgba(138, 43, 226, 0.12));
  padding: 18px;
  box-shadow: 0 0 24px rgba(138, 43, 226, 0.1);
}

.boda-callout-title {
  margin: 0 0 10px;
  font-size: 16px;
}

.boda-callout-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.boda-mini-link {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.boda-mini-link:hover {
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.26);
}

.boda-contact-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}

.boda-muted {
  color: rgba(255, 255, 255, 0.62);
}

.boda-form {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.boda-field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.boda-field span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--nebula-cyan);
  box-shadow: 0 0 0 4px rgba(0, 223, 255, 0.12);
}

#spiel .boda-container {
  overflow-x: hidden;
}

.boda-game-shell {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.26);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 100%;
}

.boda-game-shell-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.boda-game-shell-dots {
  display: inline-flex;
  gap: 6px;
  padding-left: 4px;
}

.boda-game-shell-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.boda-game-shell-meta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.boda-pill {
  font-size: 12.5px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.boda-pill-muted {
  color: rgba(255, 255, 255, 0.65);
}

.boda-game-shell-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.boda-game-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  max-height: 85vh;
  overflow: hidden;
  background: radial-gradient(800px 380px at 50% 30%, rgba(138, 43, 226, 0.12), transparent 60%),
    radial-gradient(700px 420px at 20% 80%, rgba(0, 223, 255, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg3), var(--bg2));
}

.boda-game-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 22px;
}

.boda-game-stage[data-game-active="true"] .boda-game-placeholder {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.boda-game-placeholder-title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 760;
}

.boda-game-placeholder-text {
  margin: 0 auto 14px;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.6;
}

.boda-game-iframe-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 800px;
  height: 600px;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  overflow: hidden;
  pointer-events: auto;
}

.boda-game-iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 800px;
  height: 600px;
  border: 0;
  display: block;
}

.boda-site-footer {
  padding: 34px 0 22px;
  border-top: 1px solid rgba(138, 43, 226, 0.2);
  background: linear-gradient(180deg, rgba(26, 13, 56, 0.4), var(--bg));
}

.boda-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.2fr;
  gap: 16px;
  align-items: start;
}

.boda-footer-title {
  margin: 0 0 10px;
  font-weight: 740;
}

.boda-footer-text {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
}

.boda-footer-links {
  display: grid;
  gap: 8px;
}

.boda-disclaimer-grid {
  display: grid;
  gap: 10px;
}

.boda-disclaimer {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.80);
}

.boda-help-links {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.boda-badge-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.boda-badge-img-link {
  display: inline-flex;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.boda-badge-img-link img {
  width: 118px;
  height: auto;
  display: block;
}

.boda-footer-bottom {
  padding-top: 14px;
}

.boda-cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 16px;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.boda-cookie-banner--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.boda-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 70;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 7, 26, 0.85);
  backdrop-filter: blur(8px);
}

.boda-modal-overlay:not([hidden]) {
  display: flex;
}

.boda-modal-content {
  width: 100%;
  max-width: 400px;
  padding: 28px;
  border-radius: var(--radius2);
  border: 1px solid rgba(0, 223, 255, 0.3);
  background: linear-gradient(180deg, rgba(26, 13, 56, 0.95), rgba(15, 7, 26, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.boda-modal-title {
  margin: 0 0 12px;
  font-size: 24px;
}

.boda-modal-text {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.5;
}

.boda-modal-content .boda-btn {
  min-width: 120px;
}

.boda-cookie-card {
  width: min(720px, calc(100% - 24px));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 12, 28, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  padding: 20px;
}

.boda-cookie-title {
  margin: 0 0 8px;
  font-weight: 780;
}

.boda-cookie-text {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.boda-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.boda-policy {
  padding: 44px 0 56px;
}

.boda-policy h1 {
  margin: 0 0 10px;
  font-size: 36px;
  letter-spacing: -0.4px;
}

.boda-policy h2 {
  margin: 22px 0 10px;
  font-size: 18px;
}

.boda-policy p,
.boda-policy li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.boda-policy .boda-card {
  margin-top: 14px;
}

@media (max-width: 1200px) {
  .boda-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .boda-nav {
    position: fixed;
    top: 70px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(15, 7, 26, 0.95);
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  [data-nav-open="true"] .boda-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .boda-nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .boda-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .boda-hero-media {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .boda-hero-title {
    font-size: 40px;
  }

  .boda-grid-2 {
    grid-template-columns: 1fr;
  }

  .boda-features {
    grid-template-columns: 1fr 1fr;
  }

  .boda-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .boda-gallery-item img {
    max-height: 140px;
    object-fit: cover;
  }

  .boda-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .boda-section {
    padding: 32px 0;
  }
}

@media (max-width: 640px) {
  .boda-game-shell-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .boda-game-shell-meta {
    justify-content: center;
    order: 0;
  }

  .boda-game-shell-dots {
    order: -1;
    justify-content: flex-start;
  }

  .boda-game-shell-actions {
    justify-content: center;
    order: 1;
  }

  .boda-game-shell-actions .boda-btn {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 520px) {
  .boda-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .boda-hero {
    padding-top: 36px;
    padding-bottom: 28px;
  }

  .boda-hero-title {
    font-size: 32px;
    line-height: 1.15;
  }

  .boda-hero-lead {
    font-size: 15px;
  }

  .boda-hero-actions {
    flex-direction: column;
  }

  .boda-hero-actions .boda-btn {
    width: 100%;
  }

  .boda-section {
    padding: 24px 0;
  }

  .boda-section-title {
    font-size: 24px;
  }

  .boda-game-stage {
    min-height: 240px;
    max-height: 65vh;
    aspect-ratio: 4 / 3;
  }

  .boda-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .boda-feature {
    padding: 12px;
  }

  .boda-gallery {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .boda-gallery-item img {
    max-height: 110px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .boda-callout-links {
    grid-template-columns: 1fr;
  }

  .boda-cookie-card {
    padding: 16px;
  }

  .boda-cookie-actions {
    flex-direction: column;
  }

  .boda-cookie-actions .boda-btn,
  .boda-cookie-actions a.boda-btn {
    width: 100%;
    justify-content: center;
  }

  .boda-footer-grid {
    gap: 24px;
  }

  .boda-badge-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .boda-badge-img-link img {
    width: 90px;
    height: auto;
  }

  .boda-card {
    padding: 14px;
  }

  .boda-form {
    padding: 14px;
  }
}

.boda-policy code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9em;
}

