:root {
  color-scheme: dark;
  --ocx-bg: #141236;
  --ocx-panel: rgba(255, 255, 255, 0.08);
  --ocx-panel-strong: rgba(13, 17, 49, 0.88);
  --ocx-line: rgba(255, 255, 255, 0.14);
  --ocx-text: #f4f7ff;
  --ocx-muted: #aeb6d9;
  --ocx-primary: #5fff90;
  --ocx-secondary: #ffb149;
  --ocx-shadow: 0 24px 70px rgba(4, 7, 29, 0.45);
  --ocx-radius-xl: 32px;
  --ocx-radius-lg: 24px;
  --ocx-radius-md: 18px;
  --ocx-width: min(1320px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body.ocx-body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(95, 255, 144, 0.2), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 177, 73, 0.18), transparent 28%),
    linear-gradient(180deg, #232253 0%, #17153a 35%, #100f2c 100%);
  color: var(--ocx-text);
  font-family: "Roboto", Arial, sans-serif;
}

.ocx-body a {
  color: inherit;
  text-decoration: none;
}

.ocx-shell {
  position: relative;
  overflow: clip;
}

.ocx-ambient {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.ocx-ambient--left {
  top: -12rem;
  left: -14rem;
  background: rgba(95, 255, 144, 0.14);
}

.ocx-ambient--right {
  top: 18rem;
  right: -16rem;
  background: rgba(255, 177, 73, 0.18);
}

.ocx-topbar,
.ocx-category-nav,
.ocx-main,
.ocx-footer {
  position: relative;
  z-index: 1;
  width: var(--ocx-width);
  margin-inline: auto;
}

.ocx-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 18px;
  width: var(--ocx-width) !important;
  margin: 0 auto !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: none !important;
  float: none !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  background: none !important;
  border-radius: 0 !important;
  font-size: inherit !important;
  line-height: normal !important;
  text-align: left !important;
  position: relative !important;
}

.ocx-brand {
  display: inline-flex;
  align-items: center;
}

.ocx-brand img {
  display: block;
  height: auto;
}

.ocx-topbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ocx-utility-link {
  color: var(--ocx-muted);
  font-size: 0.95rem;
}

.ocx-icon-button,
.ocx-close-button {
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: var(--ocx-text);
  cursor: pointer;
}

.ocx-icon-button {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
}

.ocx-icon-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.ocx-category-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding-bottom: 24px;
}

.ocx-category-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 64px;
  padding: 14px 16px;
  border: 1px solid var(--ocx-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.ocx-category-nav__item:hover,
.ocx-category-nav__item.is-active {
  transform: translateY(-2px);
  border-color: rgba(95, 255, 144, 0.5);
  background: rgba(95, 255, 144, 0.1);
}

.ocx-category-nav__icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ocx-primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.ocx-main {
  display: grid;
  gap: 28px;
  padding-bottom: 72px;
  width: var(--ocx-width) !important;
  margin: 0 auto !important;
}

.ocx-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 26px;
}

.ocx-hero__copy,
.ocx-spotlight-card,
.ocx-browse-strip,
.ocx-content-section,
.ocx-wins,
.ocx-promo,
.ocx-provider-zone,
.ocx-editorial,
.ocx-footer {
  border: 1px solid var(--ocx-line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(11, 16, 41, 0.86));
  box-shadow: var(--ocx-shadow);
  backdrop-filter: blur(14px);
}

.ocx-hero__copy {
  padding: 36px;
  border-radius: var(--ocx-radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  min-height: 450px;
}

.ocx-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(95, 255, 144, 0.11);
  color: var(--ocx-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ocx-hero__copy h1,
.ocx-browse-strip__copy h2,
.ocx-section-head h2,
.ocx-promo__copy h2,
.ocx-provider-zone__copy h2,
.ocx-wins__copy h2,
.ocx-win-card__top h3 {
  margin: 0;
  line-height: 1.04;
}

.ocx-hero__copy h1 {
  font-size: clamp(2.45rem, 5vw, 4.5rem);
  max-width: 13ch;
}

.ocx-hero__copy p,
.ocx-browse-strip__copy p,
.ocx-section-head p,
.ocx-promo__copy p,
.ocx-provider-zone__copy p,
.ocx-wins__copy p {
  margin: 0;
  color: var(--ocx-muted);
  line-height: 1.65;
}

.ocx-hero__actions,
.ocx-drawer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ocx-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.ocx-button:hover {
  transform: translateY(-2px);
}

.ocx-button--primary {
  background: linear-gradient(180deg, #6cff9b 0%, #48e17c 100%);
  color: #0b1b10;
  box-shadow: 0 16px 34px rgba(95, 255, 144, 0.23);
}

.ocx-button--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.ocx-button--light {
  background: #ffffff;
  color: #12122f;
}

.ocx-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ocx-hero__metrics article {
  padding: 18px 18px 16px;
  border-radius: var(--ocx-radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ocx-hero__metrics strong {
  display: block;
  font-size: 1.4rem;
  color: var(--ocx-primary);
}

.ocx-hero__metrics span {
  color: var(--ocx-muted);
  font-size: 0.95rem;
}

.ocx-spotlight-card {
  padding: 28px;
  border-radius: var(--ocx-radius-xl);
  min-height: 450px;
}

.ocx-spotlight-card__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.ocx-spotlight-card__header p {
  margin: 0;
  color: var(--ocx-muted);
}

.ocx-spotlight-card__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(120px, 1fr));
  gap: 14px;
}

.ocx-hero-tile {
  position: relative;
  min-height: 126px;
  border-radius: 24px;
  overflow: hidden;
  background: #0d1131;
  border: 1px solid rgba(255, 255, 255, 0.12);
  isolation: isolate;
}

.ocx-hero-tile--large {
  grid-column: span 2;
  grid-row: span 2;
}

.ocx-hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.ocx-hero-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 38, 0.2) 30%, rgba(10, 14, 38, 0.92) 100%);
}

.ocx-hero-tile__content {
  position: absolute;
  inset: auto 14px 14px 14px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ocx-hero-tile__content span:last-child {
  color: var(--ocx-muted);
  font-size: 0.88rem;
}

.ocx-browse-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border-radius: var(--ocx-radius-lg);
}

.ocx-browse-strip__copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ocx-browse-strip__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ocx-browse-strip__links a {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ocx-muted);
}

.ocx-stack {
  display: grid;
  gap: 24px;
}

.ocx-content-section {
  padding: 28px;
  border-radius: var(--ocx-radius-xl);
}

.ocx-content-section.is-featured {
  background:
    radial-gradient(circle at top right, rgba(95, 255, 144, 0.09), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(11, 16, 41, 0.86));
}

.ocx-content-section.is-secondary {
  background:
    radial-gradient(circle at top left, rgba(255, 177, 73, 0.09), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(11, 16, 41, 0.86));
}

.ocx-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.ocx-section-head > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ocx-section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ocx-primary);
  font-weight: 700;
}

.ocx-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ocx-card-grid--classic {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ocx-game-card {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  min-height: 275px;
  background: #0d1131;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
  box-shadow: 0 14px 34px rgba(1, 4, 19, 0.25);
}

.ocx-game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(95, 255, 144, 0.35);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
}

.ocx-game-card--featured {
  grid-column: span 2;
}

.ocx-card-grid--classic .ocx-game-card {
  min-height: 370px;
}

.ocx-game-card__media,
.ocx-game-card__media img {
  width: 100%;
  height: 100%;
}

.ocx-game-card__media img {
  display: block;
  object-fit: cover;
}

.ocx-game-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(5, 7, 25, 0.04) 0%, rgba(5, 7, 25, 0.12) 38%, rgba(5, 7, 25, 0.92) 100%);
}

.ocx-game-card__label {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 177, 73, 0.9);
  color: #1d1300;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 1;
}

.ocx-game-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.28;
}

.ocx-game-card__subtitle {
  color: var(--ocx-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.ocx-wins {
  padding: 28px;
  border-radius: var(--ocx-radius-xl);
  display: grid;
  gap: 22px;
}

.ocx-wins__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.ocx-wins__copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ocx-wins__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ocx-win-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0d1131;
}

.ocx-win-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ocx-win-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 38, 0.12) 0%, rgba(10, 14, 38, 0.22) 28%, rgba(10, 14, 38, 0.93) 100%);
}

.ocx-win-card__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 20px;
}

.ocx-win-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.ocx-win-card__users {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.ocx-win-card__users img {
  width: 14px;
  height: 14px;
}

.ocx-win-card__ticker {
  max-height: 160px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ocx-win-card__ticker ul {
  list-style: none;
  margin: 0;
  padding: 0;
  animation: ocxTicker 14s linear infinite;
}

.ocx-win-card__ticker li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ocx-win-card__ticker strong {
  color: var(--ocx-text);
}

.ocx-win-card__ticker span {
  color: var(--ocx-primary);
  font-weight: 700;
}

@keyframes ocxTicker {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.ocx-promo {
  overflow: hidden;
  border-radius: var(--ocx-radius-xl);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
}

.ocx-promo__copy {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.ocx-promo__media {
  min-height: 360px;
  background: #0d1131;
}

.ocx-promo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ocx-provider-zone {
  padding: 28px;
  border-radius: var(--ocx-radius-xl);
  display: grid;
  gap: 22px;
}

.ocx-editorial {
  padding: 32px;
  border-radius: var(--ocx-radius-xl);
  display: grid;
  gap: 28px;
  background:
    radial-gradient(circle at top right, rgba(95, 255, 144, 0.08), transparent 24%),
    radial-gradient(circle at left center, rgba(255, 177, 73, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(11, 16, 41, 0.9));
}

.ocx-editorial__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
  align-items: start;
}

.ocx-editorial__intro,
.ocx-editorial__body,
.ocx-editorial__section {
  display: grid;
  gap: 16px;
}

.ocx-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--ocx-muted);
  font-size: 0.92rem;
}

.ocx-breadcrumbs a {
  color: var(--ocx-text);
}

.ocx-editorial__intro h2,
.ocx-editorial__section h2 {
  margin: 0;
  line-height: 1.12;
}

.ocx-editorial__intro h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  max-width: 18ch;
}

.ocx-editorial__section h2 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.ocx-editorial__intro p,
.ocx-editorial__section p {
  margin: 0;
  max-width: 82ch;
  color: var(--ocx-muted);
  line-height: 1.8;
}

.ocx-editorial__facts {
  display: grid;
  gap: 12px;
}

.ocx-editorial__fact,
.ocx-editorial__list li,
.ocx-editorial__section {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.ocx-editorial__fact {
  padding: 18px;
  border-radius: 22px;
}

.ocx-editorial__fact strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
  color: var(--ocx-primary);
}

.ocx-editorial__fact span {
  color: var(--ocx-muted);
  line-height: 1.65;
}

.ocx-editorial__section {
  padding: 28px;
  border-radius: var(--ocx-radius-lg);
}

.ocx-editorial__section--accent {
  background:
    radial-gradient(circle at top right, rgba(95, 255, 144, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(14, 22, 54, 0.94));
}

.ocx-editorial__score-head {
  display: grid;
  grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.ocx-editorial__score-badge {
  display: grid;
  place-items: center;
  min-height: 160px;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(95, 255, 144, 0.18), rgba(95, 255, 144, 0.06));
  border: 1px solid rgba(95, 255, 144, 0.34);
  text-align: center;
}

.ocx-editorial__score-value {
  display: block;
  font-size: clamp(3rem, 7vw, 4.3rem);
  line-height: 0.92;
  color: var(--ocx-primary);
  font-weight: 700;
}

.ocx-editorial__score-badge small {
  display: block;
  margin-top: 6px;
  color: var(--ocx-text);
  font-size: 1rem;
  font-weight: 700;
}

.ocx-editorial__score-copy {
  display: grid;
  gap: 12px;
}

.ocx-editorial__score-copy h2,
.ocx-faq__item h3 {
  margin: 0;
  line-height: 1.2;
}

.ocx-editorial__score-meta {
  color: var(--ocx-muted);
  font-size: 0.94rem;
}

.ocx-editorial__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ocx-editorial__list li {
  padding: 16px 18px;
  border-radius: 20px;
}

.ocx-editorial__list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ocx-text);
}

.ocx-editorial__list span {
  color: var(--ocx-muted);
  line-height: 1.6;
}

.ocx-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ocx-faq__item {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 12px;
}

.ocx-faq__item p {
  margin: 0;
}

.ocx-provider-zone__copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 52rem;
}

.ocx-provider-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.ocx-provider-card {
  display: grid;
  place-items: center;
  min-height: 108px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ocx-provider-card img {
  width: 100%;
  max-width: 120px;
  max-height: 48px;
  object-fit: contain;
}

.ocx-footer {
  padding: 28px;
  margin-bottom: 40px;
  border-radius: var(--ocx-radius-xl);
  width: var(--ocx-width) !important;
  margin-inline: auto !important;
  color: var(--ocx-text) !important;
  text-align: left !important;
  position: relative !important;
}

.ocx-footer__countries,
.ocx-footer__meta,
.ocx-safe-play,
.ocx-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.ocx-footer__countries {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ocx-muted);
}

.ocx-footer__countries a.is-active {
  color: var(--ocx-primary);
}

.ocx-footer__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 24px 0;
}

.ocx-footer__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ocx-footer__links div {
  display: grid;
  gap: 12px;
}

.ocx-footer__links a,
.ocx-footer__bottom a,
.ocx-footer__legal a {
  color: var(--ocx-muted);
}

.ocx-payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ocx-payment-list span,
.ocx-socials a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ocx-text);
}

.ocx-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ocx-safe-play {
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ocx-safe-play__lead {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.ocx-safe-play__lead p {
  margin: 0;
}

.ocx-safe-play__warning {
  color: var(--ocx-secondary);
}

.ocx-footer__legal {
  display: grid;
  gap: 10px;
  padding: 24px 0;
  color: var(--ocx-muted);
  line-height: 1.7;
}

.ocx-footer__legal p {
  margin: 0;
}

.ocx-footer__bottom {
  gap: 16px;
  color: var(--ocx-muted);
}

.ocx-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(360px, 86vw);
  padding: 22px;
  background: rgba(9, 13, 36, 0.98);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(-105%);
  transition: transform 180ms ease;
  z-index: 12;
  display: grid;
  gap: 22px;
}

.ocx-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ocx-close-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.5rem;
}

.ocx-drawer__lang {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ocx-muted);
}

.ocx-drawer__nav {
  display: grid;
  gap: 10px;
}

.ocx-drawer__nav a {
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.ocx-drawer-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(3, 6, 19, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 11;
}

.ocx-body.is-menu-open .ocx-drawer {
  transform: translateX(0);
}

.ocx-body.is-menu-open .ocx-drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1180px) {
  .ocx-hero,
  .ocx-promo,
  .ocx-editorial__hero,
  .ocx-footer__content {
    grid-template-columns: 1fr;
  }

  .ocx-card-grid,
  .ocx-provider-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ocx-card-grid--classic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ocx-wins__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .ocx-topbar {
    padding-top: 18px;
  }

  .ocx-icon-button {
    display: inline-block;
  }

  .ocx-topbar__actions .ocx-utility-link {
    display: none;
  }

  .ocx-category-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ocx-browse-strip,
  .ocx-section-head,
  .ocx-wins__head,
  .ocx-safe-play {
    flex-direction: column;
    align-items: flex-start;
  }

  .ocx-editorial__score-head {
    grid-template-columns: 1fr;
  }

  .ocx-hero__metrics,
  .ocx-footer__links,
  .ocx-provider-grid,
  .ocx-editorial__list,
  .ocx-faq {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ocx-card-grid,
  .ocx-card-grid--classic,
  .ocx-spotlight-card__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ocx-hero-tile--large,
  .ocx-game-card--featured {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  :root {
    --ocx-width: min(100vw - 24px, 1320px);
    --ocx-radius-xl: 24px;
    --ocx-radius-lg: 20px;
  }

  .ocx-topbar__actions .ocx-button--ghost {
    display: none;
  }

  .ocx-hero__copy,
  .ocx-spotlight-card,
  .ocx-browse-strip,
  .ocx-content-section,
  .ocx-wins,
  .ocx-promo__copy,
  .ocx-provider-zone,
  .ocx-editorial,
  .ocx-footer {
    padding: 22px;
  }

  .ocx-hero__metrics,
  .ocx-category-nav,
  .ocx-card-grid,
  .ocx-card-grid--classic,
  .ocx-provider-grid,
  .ocx-editorial__list,
  .ocx-faq,
  .ocx-footer__links,
  .ocx-spotlight-card__grid {
    grid-template-columns: 1fr;
  }

  .ocx-editorial__section {
    padding: 22px;
  }

  .ocx-editorial__score-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ocx-hero__copy h1 {
    max-width: none;
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .ocx-game-card--featured,
  .ocx-hero-tile--large {
    grid-column: span 1;
  }

  .ocx-hero-tile {
    min-height: 180px;
  }
}
