.site-header {
  position: sticky;
  top: 0;
  z-index: 1002;
  height: var(--header-height);
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(10, 10, 15, 0.06);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: var(--container);
  margin-inline: auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity var(--transition-fast);
}

.logo-link:hover { opacity: 0.85; }

.site-logo {
  height: 38px;
  width: 200px;
  max-width: 100%;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
}

.site-logo--footer {
  height: 40px;
  margin-bottom: 1rem;
  filter: none;
  opacity: 0.95;
}

.footer-logo-link { display: inline-block; }

.game-frame-title {
  text-align: right;
  margin: 0;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  color: var(--color-ink);
  font-family: var(--font-display);
}

.game-page-frame .container {
  padding: 1.5rem 0 2.5rem;
  max-width: 1060px;
  margin: 0 auto;
}

.game-preview-caption {
  text-align: center;
  margin-bottom: 1.25rem;
}

.game-preview-caption h2 { margin-bottom: 0.4rem; }

.game-preview-caption p {
  color: var(--color-text-muted);
  margin: 0;
}

.game-card-single { max-width: none; margin: 0; }

.game-banner {
  display: grid;
  gap: 0;
  background: var(--color-ink);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.game-banner img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  aspect-ratio: auto;
}

.game-banner .game-card-body {
  padding: 2rem;
  background: transparent;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.game-banner .game-card-body h3,
.game-banner .game-card-body p { color: rgba(255, 255, 255, 0.88); }

.game-banner .tag {
  top: auto;
  bottom: 1.25rem;
  left: 1.25rem;
  right: auto;
}

@media (min-width: 768px) {
  .game-banner { grid-template-columns: 1fr 1.1fr; }
  .game-banner img { min-height: 280px; }
}

.main-nav { display: none; }

.main-nav ul {
  display: flex;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--color-primary-soft);
  color: var(--color-ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-actions .btn { display: none; }

.menu-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--color-white);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.menu-toggle:hover {
  border-color: rgba(94, 92, 230, 0.25);
  box-shadow: var(--shadow-sm);
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.5px;
  margin-left: -9px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), top var(--transition);
}

.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 26px; }

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

body.menu-open .site-header { box-shadow: var(--shadow-md); }

.mobile-nav {
  position: fixed;
  top: var(--chrome-top-height);
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1.5rem 1.5rem 2.5rem;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  z-index: 1001;
  overflow-y: auto;
  border-top: 1px solid rgba(10, 10, 15, 0.06);
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

body.menu-open { overflow: hidden; }

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 0;
}

.mobile-nav a:not(.btn) {
  display: block;
  padding: 1rem 0.25rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-ink);
  border-bottom: 1px solid rgba(10, 10, 15, 0.06);
  transition: color var(--transition-fast);
}

.mobile-nav a:not(.btn):hover { color: var(--color-primary); }

.mobile-nav a:not(.btn)[aria-current="page"] {
  color: var(--color-primary);
  font-weight: 600;
}

.mobile-nav .btn {
  display: flex;
  width: 100%;
  margin-top: 1.25rem;
  justify-content: center;
  border-bottom: none;
}

.mobile-nav-label {
  margin: 0 0 0.5rem;
  padding: 0 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@media (min-width: 600px) and (max-width: 899px) {
  .mobile-nav {
    left: auto;
    width: min(380px, 92vw);
    padding: 1.5rem 2rem 2.5rem;
    border-left: 1px solid rgba(10, 10, 15, 0.06);
  }
}

@media (min-width: 900px) {
  .main-nav { display: block; }
  .header-actions .btn { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none; }
}

.hero {
  padding: 0;
  background: var(--color-ink);
  position: relative;
  overflow: hidden;
  min-height: clamp(540px, calc(100svh - var(--chrome-top-height)), 760px);
  display: flex;
  align-items: flex-end;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  max-height: none;
  overflow: hidden;
}

.hero-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transform: scale(1.03);
  transition: transform 10s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero:hover .hero-visual img { transform: scale(1.06); }

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(18, 16, 31, 0.92) 0%, rgba(18, 16, 31, 0.62) 38%, rgba(109, 92, 230, 0.28) 72%, rgba(232, 93, 76, 0.18) 100%),
    linear-gradient(0deg, rgba(18, 16, 31, 0.55) 0%, transparent 45%);
}

.hero-band {
  position: relative;
  z-index: 2;
  width: 100%;
  background: transparent;
  padding: clamp(1.75rem, 4vw, 2.5rem) 0 clamp(2rem, 5vw, 3rem);
}

.hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 90% at 15% 100%, rgba(240, 180, 41, 0.14), transparent 65%);
  pointer-events: none;
}

.hero-band-inner {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  position: relative;
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 0.85rem;
  max-width: 12ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.0625rem;
  max-width: 520px;
  margin-bottom: 0;
  line-height: 1.75;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.hero-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-badge {
  padding: 0.42rem 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-badge:nth-child(1) {
  background: rgba(109, 92, 230, 0.35);
  border-color: rgba(167, 154, 255, 0.45);
}

.hero-badge:nth-child(2) {
  background: rgba(13, 155, 140, 0.35);
  border-color: rgba(94, 220, 200, 0.4);
}

.hero-badge:nth-child(3) {
  background: rgba(240, 180, 41, 0.28);
  border-color: rgba(255, 220, 120, 0.45);
  color: #fff8e8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-secondary-on-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.btn-secondary-on-dark:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .hero {
    align-items: center;
    min-height: clamp(580px, calc(92svh - var(--chrome-top-height)), 820px);
  }

  .hero-band {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  }

  .hero-band-inner {
    grid-template-columns: 1.35fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }

  .hero-side { align-items: flex-start; }
  .hero-content h1 { max-width: 14ch; }
}

@media (max-width: 767px) {
  .hero-visual::after {
    background:
      linear-gradient(180deg, rgba(18, 16, 31, 0.35) 0%, rgba(18, 16, 31, 0.82) 55%, rgba(18, 16, 31, 0.94) 100%);
  }
}

.game-preview {
  padding: 0;
  background: transparent;
}

.preview-split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.preview-main { order: 1; }

.preview-aside {
  order: 2;
  padding: 1.75rem;
  background: var(--color-white);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.preview-aside .section-label { margin-bottom: 0.65rem; }

.preview-aside h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-bottom: 0.75rem;
}

.preview-aside p {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.preview-aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.preview-aside li {
  padding: 0.75rem 0;
  border-top: 1px solid rgba(10, 10, 15, 0.06);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.preview-aside li strong {
  color: var(--color-ink);
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

@media (min-width: 900px) {
  .preview-split {
    grid-template-columns: 1.65fr 0.85fr;
    gap: 2.5rem;
  }
  .preview-aside {
    position: sticky;
    top: calc(var(--chrome-top-height) + 1.5rem);
  }
}

.game-preview-inner {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.game-frame-block {
  margin-bottom: 1.75rem;
}

.game-frame-block .game-frame-wrapper {
  min-height: 0;
}

.game-frame-host--legacy {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.game-frame-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 0;
  background: #0c0c12;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10, 10, 15, 0.12);
  transition: box-shadow var(--transition);
}

.game-frame-wrapper.is-sized {
  aspect-ratio: auto;
}

.game-frame-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 1;
}

.game-frame-viewport {
  transform-origin: top left;
  will-change: transform;
}

.game-frame-wrapper iframe {
  border: none;
  display: block;
  vertical-align: top;
}

.bento-features {
  display: grid;
  gap: 1.25rem;
}

.feature-row {
  display: grid;
  gap: 0;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(109, 92, 230, 0.12);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(109, 92, 230, 0.25);
}

.feature-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: unset;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-row:hover img { transform: scale(1.04); }

.feature-row-body {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: none;
  position: relative;
  background: var(--gradient-warm);
}

.bento-features .feature-row:nth-child(1) .feature-row-body {
  background: linear-gradient(135deg, #f3eeff 0%, #eef8ff 100%);
}

.bento-features .feature-row:nth-child(2) .feature-row-body {
  background: linear-gradient(135deg, #fff6e8 0%, #ffeef0 100%);
}

.bento-features .feature-row:nth-child(3) .feature-row-body {
  background: linear-gradient(135deg, #e8f8f4 0%, #eef6ff 100%);
}

.bento-features .feature-row:nth-child(4) .feature-row-body {
  background: linear-gradient(135deg, #fff0f5 0%, #f3eeff 100%);
}

.feature-row-body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.75rem;
  bottom: 1.75rem;
  width: 4px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-teal), var(--color-accent));
  border-radius: var(--radius-full);
}

.feature-row-body h3 { margin-bottom: 0.5rem; }

.feature-row-body p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.feature-row--flip .feature-row-body::before {
  left: auto;
  right: 0;
}

@media (min-width: 700px) {
  .feature-row {
    grid-template-columns: 40% 1fr;
    align-items: stretch;
  }

  .feature-row img {
    aspect-ratio: 4 / 3;
    height: 100%;
    min-height: 240px;
    max-height: 300px;
  }

  .feature-row--flip { direction: rtl; }
  .feature-row--flip > * { direction: ltr; }
  .bento-features .feature-row:nth-child(2) { margin-left: 2.5rem; }
  .bento-features .feature-row:nth-child(4) { margin-left: 2.5rem; }
}

.feature-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-glass-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.feature-card h3 { margin: 0 0 0.4rem; }

.feature-card p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.9375rem;
}

.split-section {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.split-section img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(109, 92, 230, 0.1);
}

@media (min-width: 768px) {
  .split-section { grid-template-columns: 1fr 1fr; }
  .split-section--reverse > *:first-child { order: 2; }
}

.game-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-glass-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.game-card img {
  width: 100%;
  aspect-ratio: 10/7;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.game-card:hover img { transform: scale(1.04); }

.game-card-body {
  padding: 1.35rem;
  background: var(--color-white);
}

.game-card-body h3 { margin-bottom: 0.35rem; }

.game-card-body p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.game-card .tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--color-ink);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(10, 10, 15, 0.06);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem 1.75rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(109, 92, 230, 0.1);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.benefit-list .benefit-row:nth-child(1) {
  background: linear-gradient(135deg, #ffffff 0%, #f3eeff 100%);
  border-color: rgba(109, 92, 230, 0.18);
}

.benefit-list .benefit-row:nth-child(2) {
  background: linear-gradient(135deg, #ffffff 0%, #e8f8f4 100%);
  border-color: rgba(13, 155, 140, 0.18);
}

.benefit-list .benefit-row:nth-child(3) {
  background: linear-gradient(135deg, #ffffff 0%, #fff6e8 100%);
  border-color: rgba(240, 180, 41, 0.22);
}

.benefit-list .benefit-row:nth-child(4) {
  background: linear-gradient(135deg, #ffffff 0%, #ffeef0 100%);
  border-color: rgba(232, 93, 76, 0.16);
}

.benefit-row:hover {
  transform: translateX(6px);
  border-color: rgba(109, 92, 230, 0.28);
  box-shadow: var(--shadow-sm);
}

.benefit-row img {
  width: 84px;
  height: 84px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.benefit-row h3 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.benefit-row p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.benefit-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-card img {
  width: 110px;
  height: auto;
  margin: 0 auto 1rem;
  border-radius: var(--radius-md);
}

.testimonials-stack {
  display: grid;
  gap: 1.25rem;
}

.testimonial-featured {
  padding: clamp(2rem, 5vw, 2.75rem);
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  color: var(--color-white);
  border: 1px solid rgba(240, 180, 41, 0.25);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.testimonial-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(240, 180, 41, 0.2), transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(109, 92, 230, 0.22), transparent 55%);
  pointer-events: none;
}

.testimonial-featured p {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  font-style: italic;
  font-family: var(--font-display);
}

.testimonial-featured .testimonial-stars { color: var(--color-accent); }

.testimonial-featured .testimonial-header img {
  border: 2px solid rgba(255, 255, 255, 0.2);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
}

.testimonial-featured .testimonial-header strong,
.testimonial-featured .testimonial-header small { color: var(--color-white); }

.testimonial-pair {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .testimonial-pair { grid-template-columns: 1fr 1fr; }
}

.testimonial-card {
  padding: 1.75rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(109, 92, 230, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-pair .testimonial-card:nth-child(1) {
  background: linear-gradient(180deg, #ffffff 0%, #fff8ee 100%);
  border-color: rgba(240, 180, 41, 0.2);
}

.testimonial-pair .testimonial-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, #f0f5ff 100%);
  border-color: rgba(109, 92, 230, 0.18);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.testimonial-header img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--color-glass-border);
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.12em;
}

.faq-split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.faq-split-intro {
  position: relative;
  z-index: 0;
}

.faq-split-intro img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(109, 92, 230, 0.12);
}

.faq-split-intro h2 { margin-bottom: 0.75rem; }

.faq-split-intro p {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.faq-list {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: none;
  margin: 0;
}

@media (min-width: 768px) {
  .faq-split {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3rem;
  }

  .faq-split-intro {
    position: sticky;
    top: calc(var(--chrome-top-height, 72px) + 1rem);
  }

  .faq-split-intro img {
    max-height: 280px;
  }
}

.banner-block img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 440px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin-bottom: 2.5rem;
  border: 1px solid rgba(109, 92, 230, 0.12);
}

.banner-block-content {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .banner-block-content { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.responsible-band {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.25rem) 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f3eeff 45%, #e8f8f4 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(109, 92, 230, 0.15);
  box-shadow: var(--shadow-md);
}

.responsible-band img {
  width: 96px;
  height: 96px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-md);
  border: 3px solid rgba(109, 92, 230, 0.15);
}

.cta-split {
  display: grid;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(135deg, #1a1033 0%, #0d6e6e 55%, #8b3a2a 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(240, 180, 41, 0.2);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.cta-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 0% 50%, rgba(109, 92, 230, 0.28), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.cta-split img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 380px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  max-width: none;
  margin: 0;
  border-radius: 0;
  opacity: 0.95;
}

.cta-split-body {
  padding: clamp(2rem, 4vw, 2.75rem);
  text-align: left;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-split-body h2,
.cta-split-body p { color: var(--color-white); }

.cta-split-body p {
  margin-bottom: 1.5rem;
  opacity: 0.78;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .cta-split { grid-template-columns: 0.95fr 1.05fr; }
}

.steps-row {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

.step-item {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-glass-border);
  align-items: start;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.steps-row .step-item:nth-child(1) { background: linear-gradient(180deg, #fff, #f3eeff); border-color: rgba(109, 92, 230, 0.14); }
.steps-row .step-item:nth-child(2) { background: linear-gradient(180deg, #fff, #e8f8f4); border-color: rgba(13, 155, 140, 0.14); }
.steps-row .step-item:nth-child(3) { background: linear-gradient(180deg, #fff, #fff6e8); border-color: rgba(240, 180, 41, 0.18); }

.step-item::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  background: var(--gradient-cta);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.step-item h3 { margin-bottom: 0.35rem; }

.step-item p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .steps-row { grid-template-columns: repeat(3, 1fr); }
  .step-item {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .step-item::before { margin: 0 auto 0.75rem; }
}

.team-mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .team-mosaic {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }
}

.values-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.values-layout-header {
  text-align: left;
  margin-left: 0;
  margin-bottom: 1.25rem;
}

.values-layout-media {
  margin: 0;
}

.values-layout-media img {
  width: 100%;
  max-height: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(109, 92, 230, 0.12);
  border-bottom: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.values-layout .values-strip {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .values-layout .values-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .values-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
  }

  .values-layout .values-strip {
    grid-template-columns: 1fr;
  }
}

.contact-cards-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact-cards-row { grid-template-columns: repeat(2, 1fr); }
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-stack { flex-direction: column-reverse; }
  .contact-stack .contact-form { order: -1; }
}

.values-strip {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .values-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .values-strip { grid-template-columns: repeat(4, 1fr); }
}

.values-strip .value-card { border-top: none; }

.faq-item {
  margin-bottom: 0.65rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-xs);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item[open] {
  border-color: rgba(109, 92, 230, 0.22);
  box-shadow: var(--shadow-sm);
  background: linear-gradient(180deg, #ffffff 0%, #faf7ff 100%);
}

.faq-item summary {
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--color-ink);
  transition: background var(--transition-fast);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "";
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--color-primary-soft);
  border-radius: var(--radius-full);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235e5ce6' d='M6 8.5L1.5 4h9z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--transition), background var(--transition-fast);
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
  background-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 8.5L1.5 4h9z'/%3E%3C/svg%3E");
}

.faq-item summary:hover { background: rgba(10, 10, 15, 0.02); }

.faq-answer {
  padding: 0 1.35rem 1.15rem;
  color: var(--color-text-muted);
  animation: faqOpen 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.9375rem;
  line-height: 1.7;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.cta-section {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.cta-section h2,
.cta-section p { color: var(--color-white); }

.cta-section img {
  max-width: 180px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-md);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.15fr; }
}

.contact-info-card {
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  margin-bottom: 1rem;
  border: 1px solid var(--color-glass-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.contact-info-card p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.9375rem;
}

.contact-form {
  padding: 2rem;
  background: linear-gradient(160deg, #ffffff 0%, #f8f4ff 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(109, 92, 230, 0.12);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--color-ink);
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  background: var(--color-bg);
  color: var(--color-ink);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(94, 92, 230, 0.4);
  outline: none;
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(94, 92, 230, 0.1);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.team-card {
  text-align: center;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--color-glass-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.team-card img {
  width: 100%;
  aspect-ratio: 400 / 450;
  height: auto;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.team-card-body {
  padding: 0.85rem 0.65rem 1rem;
}

.team-card-body h3 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.team-card-body p {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  margin: 0;
}

.value-card {
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition);
}

.values-strip .value-card:nth-child(1) { background: linear-gradient(180deg, #fff, #f3eeff); border-color: rgba(109, 92, 230, 0.14); }
.values-strip .value-card:nth-child(2) { background: linear-gradient(180deg, #fff, #e8f8f4); border-color: rgba(13, 155, 140, 0.14); }
.values-strip .value-card:nth-child(3) { background: linear-gradient(180deg, #fff, #fff6e8); border-color: rgba(240, 180, 41, 0.18); }
.values-strip .value-card:nth-child(4) { background: linear-gradient(180deg, #fff, #ffeef0); border-color: rgba(232, 93, 76, 0.14); }

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.value-card h3 { margin-bottom: 0.45rem; }

.value-card p {
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.9375rem;
}

.responsible-notice {
  padding: 1.5rem 1.75rem;
  background: var(--color-primary-soft);
  border: 1px solid rgba(94, 92, 230, 0.14);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.responsible-notice h3 {
  color: var(--color-primary-dark);
  margin-bottom: 0.45rem;
}

.game-page-frame {
  padding-top: 0;
  background: transparent;
  min-height: auto;
}

.game-page-frame .container { max-width: 940px; }

.game-page-frame .game-frame-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.legal-content ul {
  padding-left: 1.35rem;
  color: var(--color-text-muted);
}

.legal-content li { margin-bottom: 0.5rem; }

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-glass-border);
}

.legal-content th,
.legal-content td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-glass-border);
  vertical-align: top;
}

.legal-content th {
  background: var(--color-bg);
  color: var(--color-ink);
  font-weight: 600;
  font-size: 0.875rem;
}

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.45rem;
}

.legal-toc {
  padding: 1.5rem 1.75rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-glass-border);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-xs);
}

.legal-toc ol {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.legal-toc a { font-weight: 500; }

.legal-content code {
  padding: 0.15rem 0.4rem;
  background: var(--color-primary-soft);
  border-radius: 4px;
  font-size: 0.875em;
  color: var(--color-primary-dark);
}

.site-footer {
  background: #08080c;
  color: rgba(255, 255, 255, 0.72);
  padding: 0;
  margin-top: 2rem;
}

.footer-accent-strip {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-accent-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-accent-strip p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

.footer-accent-badge { flex-shrink: 0; opacity: 0.9; }

.footer-body { padding: 3.5rem 0 0; }

.footer-main {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 1.35fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.5fr) minmax(200px, 0.85fr);
    gap: 3rem;
  }
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  opacity: 0.65;
  margin: 0 0 1rem;
  max-width: 32ch;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.78rem;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.footer-social-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-nav-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 480px) and (max-width: 1023px) {
  .footer-nav-panel {
    flex-direction: row;
    gap: 2rem;
  }
  .footer-nav-block { flex: 1; }
}

.footer-nav-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.75rem;
}

.footer-nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-row li { display: flex; align-items: center; }

.footer-nav-row li:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 3px;
  margin-left: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.footer-nav-row a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  padding: 0.15rem 0;
  transition: color var(--transition-fast);
}

.footer-nav-row a:hover { color: var(--color-white); }

.footer-contact-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  align-self: start;
}

.footer-email {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-white);
  word-break: break-all;
  margin-bottom: 0.35rem;
}

.footer-email:hover { color: var(--color-accent); }

.footer-hours {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  opacity: 0.55;
  line-height: 1.6;
}

.footer-play-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.875rem;
}

.footer-legal-note {
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-legal-note p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.7;
  opacity: 0.55;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1.5rem 0;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
  opacity: 0.5;
}

.footer-meta-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.footer-copy { font-weight: 500; opacity: 0.85; }

.footer-compliance-strip {
  padding: 0.75rem 0;
  background: linear-gradient(90deg, rgba(109, 92, 230, 0.35) 0%, rgba(13, 155, 140, 0.28) 50%, rgba(240, 180, 41, 0.22) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-compliance-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  letter-spacing: 0.02em;
}

.footer-compliance-inner span { white-space: nowrap; }

.footer-company-name {
  font-weight: 600;
  color: var(--color-white);
  margin: 0 0 0.4rem;
  font-size: 0.9375rem;
}

.footer-phone {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

.footer-phone:hover { color: var(--color-accent); }

.social-disclaimer-block {
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #fff8ee 50%, #f3eeff 100%);
  border: 1px solid rgba(109, 92, 230, 0.14);
  border-radius: var(--radius-xl);
  margin-bottom: 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.social-disclaimer-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-full);
}

.social-disclaimer-block p {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-ink);
  font-weight: 500;
  padding-left: 0.5rem;
}

.social-disclaimer-block p:last-child { margin-bottom: 0; }

.game-play-disclaimer {
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(109, 92, 230, 0.08), rgba(240, 180, 41, 0.08));
  border: 1px solid rgba(109, 92, 230, 0.16);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-text);
}

.game-play-disclaimer p {
  margin: 0 0 0.5rem;
}

.game-play-disclaimer p:last-child { margin-bottom: 0; }

.game-play-disclaimer--panel {
  margin-top: 1.25rem;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(135deg, #ffffff 0%, #fff8ee 50%, #f3eeff 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}

.game-play-disclaimer a {
  font-weight: 600;
}

.responsible-intro {
  padding: 1.35rem 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f3eeff 100%);
  border: 1px solid rgba(109, 92, 230, 0.14);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.footer-support-links {
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

.footer-support-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
}

.footer-support-row a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-support-row a:hover { color: var(--color-accent); }

.footer-support-note {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.6;
  opacity: 0.62;
}

.compliance-info-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .compliance-info-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .compliance-info-grid { grid-template-columns: repeat(5, 1fr); }
}

.compliance-info-item {
  padding: 1rem 0.85rem;
  color: var(--color-ink);
  border-radius: var(--radius-lg);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.compliance-info-grid .compliance-info-item:nth-child(1) {
  background: linear-gradient(135deg, #f3eeff, #e8f0ff);
  border-color: rgba(109, 92, 230, 0.2);
}

.compliance-info-grid .compliance-info-item:nth-child(2) {
  background: linear-gradient(135deg, #fff6e8, #ffe8d8);
  border-color: rgba(240, 180, 41, 0.25);
}

.compliance-info-grid .compliance-info-item:nth-child(3) {
  background: linear-gradient(135deg, #e8f8f4, #e0f5ef);
  border-color: rgba(13, 155, 140, 0.22);
}

.compliance-info-grid .compliance-info-item:nth-child(4) {
  background: linear-gradient(135deg, #ffeef0, #fff0f8);
  border-color: rgba(232, 93, 76, 0.18);
}

.compliance-info-grid .compliance-info-item:nth-child(5) {
  background: linear-gradient(135deg, #eef6ff, #f3eeff);
  border-color: rgba(109, 92, 230, 0.18);
}

.compliance-info-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.game-launcher.section > .container {
  background: linear-gradient(160deg, #ffffff 0%, #faf5ff 40%, #fff8ee 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 2.75rem);
  border: 1px solid rgba(109, 92, 230, 0.14);
  box-shadow: var(--shadow-md);
}

.game-page-frame.game-launcher > .container {
  background: linear-gradient(160deg, #ffffff 0%, #f0faf8 45%, #fff8ee 100%);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid rgba(13, 155, 140, 0.14);
  box-shadow: var(--shadow-md);
}

.game-pick-card:nth-child(1) { border-color: rgba(109, 92, 230, 0.2); }
.game-pick-card:nth-child(2) { border-color: rgba(13, 155, 140, 0.2); }
.game-pick-card:nth-child(3) { border-color: rgba(240, 180, 41, 0.28); }

.game-pick-card:nth-child(1).is-active { box-shadow: 0 0 0 1px rgba(109, 92, 230, 0.35), 0 12px 36px rgba(109, 92, 230, 0.2); }
.game-pick-card:nth-child(2).is-active { box-shadow: 0 0 0 1px rgba(13, 155, 140, 0.35), 0 12px 36px rgba(13, 155, 140, 0.18); }
.game-pick-card:nth-child(3).is-active { box-shadow: 0 0 0 1px rgba(240, 180, 41, 0.45), 0 12px 36px rgba(240, 180, 41, 0.2); }

.game-launcher-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.game-picker {
  display: grid;
  gap: 1.25rem;
  margin-top: 0;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .game-picker { grid-template-columns: repeat(3, 1fr); }
}

.game-pick-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  overflow: hidden;
  text-align: left;
  font-family: inherit;
  box-shadow: var(--shadow-xs);
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    grid-column var(--transition);
}

.game-pick-card.is-playing {
  grid-column: 1 / -1;
  border-color: rgba(109, 92, 230, 0.35);
  box-shadow: var(--shadow-md);
}

.game-pick-card:hover:not(.is-playing) {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(94, 92, 230, 0.22);
}

.game-pick-card.is-active:not(.is-playing) {
  border-color: rgba(94, 92, 230, 0.45);
  box-shadow: var(--shadow-glow);
}

.game-pick-card .game-pick-preview {
  cursor: pointer;
  overflow: hidden;
}

.game-pick-body [data-game-play],
.game-pick-body a.btn {
  width: auto;
  min-width: 6.5rem;
  flex-shrink: 0;
  text-decoration: none;
}

.game-pick-preview img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.game-pick-card:hover:not(.is-playing) .game-pick-preview img {
  transform: scale(1.04);
}

.game-pick-card.is-playing .game-pick-preview {
  display: none;
}

.game-pick-player {
  position: relative;
  width: 100%;
  min-height: 220px;
  background: #0c0c12;
  overflow: hidden;
}

.game-pick-player::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 1;
}

.game-pick-player iframe {
  border: none;
  display: block;
  vertical-align: top;
}

.game-pick-body {
  padding: 1rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex: 1;
}

.game-pick-body h3 {
  margin: 0;
  font-size: 1.05rem;
  flex: 1;
}

.game-pick-body [data-game-play] {
  width: auto;
  min-width: 6.5rem;
  flex-shrink: 0;
}

.game-pick-card.is-playing .game-pick-body [data-game-play] {
  background: var(--color-white);
  color: var(--color-ink);
  border: 1px solid var(--color-glass-border);
  box-shadow: var(--shadow-xs);
}

.game-pick-card.is-playing .game-pick-body [data-game-play]:hover {
  color: var(--color-primary);
  border-color: rgba(109, 92, 230, 0.28);
}

.company-info-block {
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f3eeff 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(109, 92, 230, 0.14);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.company-info-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-teal), var(--color-accent));
}

.company-info-block h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.company-info-block dl {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.company-info-block dt {
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.company-info-block dd {
  margin: 0 0 0.25rem;
  color: var(--color-ink);
  font-size: 0.9375rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 9999;
  padding: 0;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  max-width: 680px;
  margin-inline: auto;
}

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.875rem;
  flex: 1;
  min-width: 200px;
  line-height: 1.65;
  opacity: 0.85;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.btn-sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.8125rem;
}

.cookie-banner a { color: var(--color-accent); }

.cookie-banner .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.15);
}

.cookie-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 10, 15, 0.65);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.age-gate[hidden] { display: none; }

body.age-locked,
body.age-denied { overflow: hidden; }

body.age-denied #site-chrome-top,
body.age-denied main,
body.age-denied #site-chrome-bottom > :not(#age-gate) {
  visibility: hidden;
}

.age-gate-box {
  width: min(100%, 480px);
  padding: 2.5rem 2rem;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--color-glass-border);
  animation: modalIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.age-gate-badge {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: block;
}

.age-gate-box h2 {
  margin-bottom: 0.75rem;
  font-size: 1.65rem;
}

.age-gate-lead {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
  color: var(--color-ink);
}

.age-gate-box p {
  color: var(--color-text-muted);
  margin-bottom: 0.65rem;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.age-gate-question {
  font-weight: 600;
  color: var(--color-ink) !important;
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 480px) {
  .age-gate-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.age-gate-denied {
  color: var(--color-crimson) !important;
  font-weight: 600;
  margin-top: 1rem !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal[hidden] { display: none; }

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-box {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--color-glass-border);
  animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--color-bg);
  color: var(--color-ink);
  font-size: 1.25rem;
  line-height: 1;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.modal-close:hover { background: var(--color-primary-soft); }

.modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-cta);
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
}

.modal-box h2 {
  margin-bottom: 0.5rem;
  font-size: 1.45rem;
}

.modal-box p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.game-launcher {
  background: transparent;
  position: relative;
}

.game-launcher .container {
  padding: 0;
}

.game-launcher.section {
  background: transparent;
}
