:root {
  --color-bg: #080913;
  --color-surface: #0d0f1c;
  --color-surface-2: #121528;
  --color-brand: #ffc400;
  --color-gold: #e8a900;
  --color-text: #f5f5f7;
  --color-muted: #989cae;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 196, 0, 0.24);
  --container: 1200px;
  --page-padding: 19px;
  --header-height: 68px;
  --font-system: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-system);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

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

svg {
  display: block;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

h1,
h2,
h3,
h4,
p,
figure,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--color-brand);
  color: #111318;
}

:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - (var(--page-padding) * 2)), var(--container));
  margin-inline: auto;
}

.container--narrow {
  max-width: 820px;
}

.container--article {
  max-width: 860px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  clip: auto;
  background: var(--color-brand);
  color: #080913;
  font-weight: 700;
}

.section {
  position: relative;
  padding: 76px 0;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 7vw, 3.25rem);
}

.section-heading > p:last-child,
.section-heading--split > p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--color-muted);
}

.section-heading--center {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center h2,
.section-heading--center > p {
  margin-right: auto;
  margin-left: auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: var(--color-brand);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow span {
  width: 25px;
  height: 1px;
  background: var(--color-brand);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.89rem;
  font-weight: 750;
  line-height: 1.3;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: center;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

.button--primary {
  background: var(--color-brand);
  color: #101117;
}

.button--primary:hover {
  background: #ffd13f;
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.025);
  color: var(--color-text);
}

.button--outline:hover,
.button--quiet:hover {
  border-color: rgba(255, 196, 0, 0.48);
  color: var(--color-brand);
}

.button--quiet {
  min-height: 42px;
  padding: 9px 13px;
  border-color: var(--color-border);
  color: #d5d6de;
}

.button--compact {
  min-height: 42px;
  padding: 9px 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-brand);
  font-size: 0.86rem;
  font-weight: 750;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(3px);
}

.section-action {
  margin-top: 34px;
  text-align: center;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--color-border);
  background: rgba(8, 9, 19, 0.94);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-branding {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.custom-logo-link {
  display: block;
}

.custom-logo {
  width: auto;
  max-width: 142px;
  max-height: 43px;
}

.wordmark {
  display: inline-flex;
  align-items: flex-start;
  gap: 7px;
  color: var(--color-brand);
}

.wordmark__letters {
  font-size: 1.72rem;
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 1;
}

.wordmark__mark {
  width: 6px;
  height: 6px;
  margin-top: 1px;
  background: var(--color-brand);
  transform: rotate(45deg);
}

.desktop-navigation,
.header-actions--desktop {
  display: none;
}

.header-actions {
  align-items: center;
  gap: 9px;
}

.header-actions--mobile {
  display: flex;
}

.header-actions--mobile .button {
  max-width: 136px;
  min-height: 40px;
  overflow: hidden;
  padding: 8px 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-actions .button--disabled {
  font-size: 0.78rem;
  line-height: 1.08;
  white-space: normal;
}

.menu-toggle,
.menu-close {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform 180ms ease;
}

.mobile-menu {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  height: 100dvh;
  overflow-y: auto;
  padding: 20px;
  border-left: 1px solid var(--color-border);
  background: #0d0f1c;
  transform: translateX(102%);
  visibility: hidden;
  transition: transform 220ms ease, visibility 220ms ease;
}

.menu-is-open .mobile-menu {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu__heading {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-brand);
}

.menu-close {
  border: 1px solid var(--color-border);
  border-radius: 50%;
}

.menu-close span {
  margin-top: -3px;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}

.mobile-navigation,
.mobile-navigation ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-navigation a {
  display: flex;
  min-height: 46px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  color: #dedfe4;
  font-size: 1rem;
  font-weight: 600;
}

.mobile-navigation .sub-menu {
  padding-left: 16px;
}

.mobile-navigation .sub-menu a {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.mobile-menu__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.mobile-menu__actions > :only-child {
  grid-column: 1 / -1;
}

.menu-overlay {
  position: fixed;
  z-index: 1100;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(3, 4, 10, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.menu-is-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    var(--color-bg);
  background-size: 56px 56px;
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 8%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(255, 196, 0, 0.18), transparent);
  content: "";
}

.hero__glow {
  position: absolute;
  top: 14%;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.08);
  filter: blur(90px);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 52px;
  padding-top: 62px;
  padding-bottom: 58px;
}

.hero__content h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 11vw, 5rem);
}

.hero__content h1 span {
  color: var(--color-brand);
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: #aeb1bf;
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero__note {
  display: flex;
  max-width: 430px;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
  color: #797e91;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.hero__note p {
  margin: 0;
}

.hero__note-line {
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: #4b4f61;
}

.hero__visual {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  perspective: 1000px;
}

.brand-panel {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 196, 0, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(145deg, #14182a 0%, #0b0d19 68%);
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.brand-panel::before,
.brand-panel::after {
  position: absolute;
  content: "";
}

.brand-panel::before {
  top: 58px;
  right: -45px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 196, 0, 0.15);
  border-radius: 50%;
}

.brand-panel::after {
  right: 37px;
  bottom: -92px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, rgba(255, 196, 0, 0.17), transparent 60%);
  transform: rotate(45deg);
}

.brand-panel__edge {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 4px;
  height: 42%;
  background: var(--color-brand);
}

.brand-panel__top,
.brand-panel__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7e8395;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-panel__top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-brand);
  box-shadow: 0 0 16px rgba(255, 196, 0, 0.65);
}

.brand-panel__identity {
  position: relative;
  z-index: 2;
  margin: 50px 0 36px;
}

.brand-panel__identity strong,
.brand-panel__identity span {
  display: block;
  line-height: 0.85;
  text-transform: uppercase;
}

.brand-panel__identity strong {
  color: var(--color-brand);
  font-size: clamp(4.4rem, 22vw, 7.5rem);
  font-weight: 950;
  letter-spacing: -0.105em;
}

.brand-panel__identity span {
  margin-top: 17px;
  color: #d6d7de;
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.42em;
}

.brand-panel__categories {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.brand-panel__categories span {
  padding: 9px 11px;
  border-left: 2px solid rgba(255, 196, 0, 0.58);
  background: rgba(255, 255, 255, 0.035);
  color: #c2c4ce;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.brand-panel__orbit {
  position: absolute;
  z-index: 1;
  top: 61px;
  right: -5px;
  width: 130px;
  height: 130px;
  border: 1px dashed rgba(255, 196, 0, 0.15);
  border-radius: 50%;
}

.brand-panel__orbit span {
  position: absolute;
  top: 15px;
  left: 16px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--color-brand);
  border-radius: 50%;
}

.brand-panel__footer {
  margin-top: 25px;
  padding-top: 17px;
  border-top: 1px solid var(--color-border);
}

/* Games */
.games-section {
  background: var(--color-surface);
}

.game-grid {
  display: grid;
  gap: 12px;
}

.game-card {
  position: relative;
  display: flex;
  min-height: 274px;
  flex-direction: column;
  overflow: hidden;
  padding: 27px 24px 24px;
  border: 1px solid var(--color-border);
  background: #101321;
  transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.game-card::before {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(255, 196, 0, 0.09);
  content: "";
  pointer-events: none;
  transform: rotate(45deg);
}

.game-card:hover {
  border-color: var(--color-border-strong);
  background: #121627;
  transform: translateY(-3px);
}

.game-card__number {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255, 255, 255, 0.1);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.icon-box {
  display: inline-flex;
  width: 55px;
  height: 55px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 196, 0, 0.24);
  background: rgba(255, 196, 0, 0.055);
  color: var(--color-brand);
}

.icon-box svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.game-card h3 {
  margin: 31px 0 12px;
  font-size: 1.42rem;
}

.game-card p {
  margin-bottom: 20px;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.game-card .text-link {
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 196, 0, 0.28);
  font-size: 0.9rem;
}

/* Benefits */
.benefits-section {
  border-top: 1px solid rgba(255, 255, 255, 0.035);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}

.benefits-layout {
  display: grid;
  gap: 46px;
}

.benefits-intro {
  margin-bottom: 0;
}

.benefits-intro h2 {
  font-size: clamp(2rem, 8vw, 3.6rem);
}

.benefits-intro > p:last-of-type {
  max-width: 520px;
  color: var(--color-muted);
}

.benefits-intro__rule {
  display: block;
  width: 70px;
  height: 3px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--color-brand) 0 35%, rgba(255, 255, 255, 0.12) 35%);
}

.benefit-list {
  border-top: 1px solid var(--color-border);
}

.benefit-item {
  display: grid;
  grid-template-columns: 34px 1fr 30px;
  gap: 14px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
}

.benefit-item__index {
  padding-top: 4px;
  color: #5f6478;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.benefit-item h3 {
  margin-bottom: 7px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

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

.benefit-item__check,
.feature-ticks > li > span {
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 196, 0, 0.22);
  border-radius: 50%;
  color: var(--color-brand);
}

.benefit-item__check svg,
.feature-ticks svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* Promotions */
.promotions-section {
  background: var(--color-surface);
}

.promotion-grid {
  display: grid;
  gap: 14px;
}

.promotion-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #0b0d18;
}

.promotion-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border-bottom: 1px solid var(--color-border);
  color: #757a8c;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.promotion-card__top i {
  width: 5px;
  height: 5px;
  background: var(--color-brand);
  transform: rotate(45deg);
}

.promotion-card__art {
  position: relative;
  display: flex;
  height: 135px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
  gap: 13px;
  background:
    linear-gradient(135deg, transparent 35%, rgba(255, 196, 0, 0.065)),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(255, 255, 255, 0.025) 39px 40px),
    #111424;
}

.promotion-card__art::before,
.promotion-card__art::after {
  position: absolute;
  width: 95px;
  height: 95px;
  border: 1px solid rgba(255, 196, 0, 0.14);
  content: "";
  transform: rotate(45deg);
}

.promotion-card__art::before {
  top: -50px;
  left: -25px;
}

.promotion-card__art::after {
  right: -40px;
  bottom: -35px;
}

.promotion-card__symbol {
  position: relative;
  z-index: 2;
  display: block;
  width: 62px;
  height: 62px;
  color: var(--color-brand);
}

.promotion-card__art small {
  position: relative;
  z-index: 2;
  color: #8f93a2;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.promotion-card__art--entry .promotion-card__symbol {
  border: 1px solid rgba(255, 196, 0, 0.52);
}

.promotion-card__art--entry .promotion-card__symbol::before {
  position: absolute;
  top: 29px;
  left: 14px;
  width: 32px;
  height: 2px;
  background: currentColor;
  content: "";
}

.promotion-card__art--entry .promotion-card__symbol::after {
  position: absolute;
  top: 22px;
  right: 13px;
  width: 15px;
  height: 15px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.promotion-card__art--reload .promotion-card__symbol {
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-28deg);
}

.promotion-card__art--reload .promotion-card__symbol::after {
  position: absolute;
  top: 3px;
  left: -3px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 12px solid currentColor;
  border-bottom: 7px solid transparent;
  content: "";
  transform: rotate(-20deg);
}

.promotion-card__art--member .promotion-card__symbol::before,
.promotion-card__art--member .promotion-card__symbol::after {
  position: absolute;
  inset: 2px;
  background: rgba(255, 196, 0, 0.82);
  clip-path: polygon(50% 0, 61% 34%, 98% 36%, 68% 57%, 78% 94%, 50% 72%, 22% 94%, 32% 57%, 2% 36%, 39% 34%);
  content: "";
}

.promotion-card__art--member .promotion-card__symbol::after {
  inset: 15px;
  background: #111424;
}

.promotion-card__body {
  padding: 23px 20px 25px;
}

.promotion-card h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.promotion-card p {
  min-height: 52px;
  margin-bottom: 20px;
  color: var(--color-muted);
  font-size: 0.87rem;
}

/* Mobile section */
.mobile-section {
  overflow: hidden;
  background: #090b16;
}

.mobile-layout {
  display: grid;
  align-items: center;
  gap: 64px;
}

.mobile-copy h2 {
  margin-bottom: 17px;
  font-size: clamp(2.2rem, 10vw, 4rem);
}

.section-lead {
  max-width: 570px;
  color: var(--color-muted);
}

.feature-ticks {
  display: grid;
  gap: 2px;
  padding: 0;
  margin: 28px 0 32px;
  list-style: none;
}

.feature-ticks li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
}

.feature-ticks > li > span {
  flex: 0 0 auto;
}

.feature-ticks strong,
.feature-ticks small {
  display: block;
}

.feature-ticks strong {
  color: #e3e4e9;
  font-size: 0.92rem;
}

.feature-ticks small {
  color: #74798c;
  font-size: 0.76rem;
}

.phone-stage {
  position: relative;
  min-height: 480px;
}

.phone-stage__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(255, 196, 0, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(255, 196, 0, 0.06) inset;
  transform: translate(-50%, -50%);
}

.phone-device {
  position: relative;
  z-index: 2;
  width: 236px;
  height: 466px;
  margin-inline: auto;
  padding: 8px;
  border: 1px solid #373b49;
  border-radius: 34px;
  background: #090a10;
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.42);
  transform: rotate(3deg);
}

.phone-device::before {
  position: absolute;
  z-index: 4;
  top: 91px;
  right: -4px;
  width: 3px;
  height: 60px;
  border-radius: 2px;
  background: #353945;
  content: "";
}

.phone-device__speaker {
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 50%;
  width: 65px;
  height: 17px;
  border-radius: 20px;
  background: #080910;
  transform: translateX(-50%);
}

.phone-device__screen {
  height: 100%;
  overflow: hidden;
  border-radius: 27px;
  background: #111426;
}

.phone-ui__top {
  display: flex;
  height: 51px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 17px 7px;
}

.phone-ui__top strong {
  color: var(--color-brand);
  font-size: 1.14rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.phone-ui__top span,
.phone-ui__top span::before,
.phone-ui__top span::after {
  display: block;
  width: 15px;
  height: 1px;
  background: #a8abb6;
  content: "";
}

.phone-ui__top span::before {
  transform: translateY(-4px);
}

.phone-ui__top span::after {
  transform: translateY(3px);
}

.phone-ui__hero {
  position: relative;
  height: 180px;
  overflow: hidden;
  padding: 30px 20px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.1), transparent 65%),
    #0b0d19;
}

.phone-ui__hero::after {
  position: absolute;
  right: -48px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 196, 0, 0.18);
  border-radius: 50%;
  content: "";
}

.phone-ui__hero small,
.phone-ui__hero strong {
  position: relative;
  z-index: 2;
  display: block;
}

.phone-ui__hero small {
  margin-bottom: 15px;
  color: #7e8393;
  font-size: 0.44rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.phone-ui__hero strong {
  color: var(--color-brand);
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.phone-ui__hero i {
  position: absolute;
  right: 25px;
  bottom: 28px;
  width: 8px;
  height: 8px;
  background: var(--color-brand);
  transform: rotate(45deg);
}

.phone-ui__nav {
  display: flex;
  gap: 14px;
  padding: 16px 13px 12px;
  color: #6f7384;
  font-size: 0.48rem;
  font-weight: 700;
}

.phone-ui__nav span {
  padding-bottom: 7px;
  border-bottom: 1px solid transparent;
}

.phone-ui__nav .is-active {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.phone-ui__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 13px;
}

.phone-ui__cards span {
  height: 112px;
  border: 1px solid var(--color-border);
  background:
    linear-gradient(145deg, transparent 45%, rgba(255, 196, 0, 0.09)),
    #171a2b;
}

.phone-stage__badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: #121522;
  color: #c4c6cf;
  font-size: 0.64rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.phone-stage__badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand);
}

.phone-stage__badge--one {
  top: 26%;
  left: 2%;
}

.phone-stage__badge--two {
  right: 0;
  bottom: 21%;
}

/* Payments */
.payments-section {
  background: var(--color-surface);
}

.payments-panel {
  display: grid;
  gap: 45px;
  padding: 34px 23px;
  border: 1px solid var(--color-border);
  background:
    linear-gradient(125deg, rgba(255, 196, 0, 0.035), transparent 46%),
    #101321;
}

.payments-panel__copy h2 {
  max-width: 650px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 8vw, 3.35rem);
}

.payments-panel__copy > p:last-of-type {
  max-width: 610px;
  margin-bottom: 27px;
  color: var(--color-muted);
}

.payment-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.payment-type {
  min-width: 0;
  padding: 20px 14px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.payment-type .icon-box {
  width: 44px;
  height: 44px;
}

.payment-type .icon-box svg {
  width: 22px;
  height: 22px;
}

.payment-type h3 {
  margin: 15px 0 0;
  font-size: 0.92rem;
  line-height: 1.35;
}

/* Guides */
.guides-section {
  background: var(--color-bg);
}

.guide-grid,
.post-grid {
  display: grid;
  gap: 18px;
}

.guide-card,
.entry--card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.guide-card__image,
.entry-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background: #121528;
}

.guide-card__image img,
.entry-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.guide-card:hover .guide-card__image img,
.entry--card:hover .entry-card__image img {
  transform: scale(1.025);
}

.guide-card__placeholder,
.entry-card__placeholder {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #121528;
  background-size: 34px 34px;
}

.guide-card__placeholder::before,
.entry-card__placeholder::before {
  position: absolute;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 196, 0, 0.13);
  content: "";
  transform: rotate(45deg);
}

.guide-card__placeholder strong,
.entry-card__placeholder span {
  position: relative;
  z-index: 2;
  color: var(--color-brand);
  font-size: 2.7rem;
  font-weight: 950;
  letter-spacing: -0.09em;
}

.guide-card__placeholder i {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 7px;
  height: 7px;
  background: var(--color-brand);
  transform: rotate(45deg);
}

.guide-card__body,
.entry-card__body {
  padding: 22px 20px 24px;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 13px;
  margin-bottom: 13px;
  color: #74798c;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.entry-category {
  color: var(--color-brand);
  text-transform: uppercase;
}

.guide-card .entry-meta {
  font-size: 0.74rem;
}

.guide-card .entry-category {
  font-weight: 780;
}

.guide-card h3,
.entry--card .entry-title {
  margin-bottom: 11px;
  font-size: 1.24rem;
  letter-spacing: -0.025em;
}

.guide-card h3 a:hover,
.entry--card .entry-title a:hover {
  color: var(--color-brand);
}

.guide-card__body > p,
.entry-summary {
  margin-bottom: 20px;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.62;
}

.entry-summary p {
  margin: 0;
}

.guides-empty,
.empty-state {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: 46px 24px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  text-align: center;
}

.guides-empty__mark {
  display: flex;
  width: 88px;
  height: 88px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 196, 0, 0.25);
  color: var(--color-brand);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.14em;
  transform: rotate(45deg);
}

.guides-empty__mark span {
  transform: rotate(-45deg);
}

.guides-empty__mark span + span {
  margin-left: 2px;
}

.guides-empty h3,
.empty-state h2 {
  margin-bottom: 7px;
  font-size: 1.4rem;
}

.guides-empty p,
.empty-state p {
  color: var(--color-muted);
}

/* FAQ */
.faq-section {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.faq-layout {
  display: grid;
  gap: 40px;
}

.faq-intro {
  margin-bottom: 0;
}

.faq-intro h2 {
  font-size: clamp(2rem, 8vw, 3.35rem);
}

.faq-list {
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  width: 100%;
  min-height: 76px;
  grid-template-columns: 1fr 28px;
  gap: 18px;
  align-items: center;
  padding: 21px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  color: #e5e6eb;
  font-size: 1.03rem;
  font-weight: 650;
  line-height: 1.45;
}

.faq-item button i {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--color-brand);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 46px 24px 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.faq-answer a {
  color: var(--color-brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.site-footer {
  padding: 65px 0 24px;
  border-top: 1px solid rgba(255, 196, 0, 0.12);
  background: #06070d;
}

.footer-grid {
  display: grid;
  gap: 42px 26px;
}

.wordmark--footer {
  margin-bottom: 20px;
}

.footer-brand > p {
  max-width: 340px;
  margin-bottom: 22px;
  color: #9296a6;
  font-size: 0.875rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links:empty {
  display: none;
}

.social-links a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: #b7bac5;
  font-size: 0.75rem;
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease;
}

.social-links a:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.footer-email {
  display: inline-block;
  margin-top: 17px;
  color: #b4b7c2;
  font-size: 0.82rem;
}

.footer-column h2 {
  margin-bottom: 19px;
  color: #e5e6eb;
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column ul,
.footer-column .menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-column li + li {
  margin-top: 11px;
}

.footer-column a {
  color: #969aaa;
  font-size: 0.84rem;
  line-height: 1.6;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-email:hover {
  color: var(--color-brand);
}

.responsible-notice {
  display: grid;
  gap: 8px;
  margin-top: 50px;
  padding: 21px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.responsible-notice strong {
  color: #c8cad3;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.responsible-notice p {
  color: #858a9b;
  font-size: 0.84rem;
  line-height: 1.65;
}

.footer-bottom {
  padding-top: 22px;
  color: #777c8d;
  font-size: 0.8rem;
  line-height: 1.6;
}

/* Editorial and utility templates */
.content-archive,
.content-single,
.error-page {
  min-height: 65vh;
  padding: 65px 0 85px;
}

.page-heading {
  margin-bottom: 45px;
  text-align: center;
}

.page-heading h1,
.error-page h1,
.entry--single .entry-title {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 9vw, 4.3rem);
}

.page-heading > p,
.archive-description,
.error-page__inner > p {
  color: var(--color-muted);
}

.entry--single .entry-header {
  margin-bottom: 36px;
}

.entry--single .entry-featured {
  margin-bottom: 38px;
}

.entry--single .entry-featured img {
  width: 100%;
}

.entry-content {
  color: #c8cad2;
}

.entry-content > * {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.entry-content > .alignwide {
  width: min(1040px, calc(100vw - (var(--page-padding) * 2)));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.entry-content > .alignfull {
  width: 100vw;
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 1.6em;
}

.entry-content a {
  color: var(--color-brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content blockquote {
  padding: 3px 0 3px 22px;
  margin: 28px auto;
  border-left: 3px solid var(--color-brand);
  color: #dcdee5;
}

.entry-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  text-align: left;
}

.post-navigation {
  display: grid;
  gap: 14px;
  margin-top: 55px;
  padding-top: 26px;
  border-top: 1px solid var(--color-border);
}

.post-navigation a {
  display: block;
  color: #d5d7de;
  font-weight: 650;
}

.post-navigation span {
  display: block;
  margin-bottom: 3px;
  color: var(--color-brand);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.navigation.pagination {
  margin-top: 40px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border: 1px solid var(--color-border);
  color: #bfc2cb;
  font-size: 0.8rem;
}

.page-numbers.current,
.page-numbers:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.error-page__inner {
  text-align: center;
}

.error-page .eyebrow,
.error-page .button-row {
  justify-content: center;
}

.error-page .button-row {
  margin: 28px 0;
}

.search-form {
  display: flex;
  width: min(100%, 520px);
  margin: 28px auto 0;
}

.search-form label {
  flex: 1 1 auto;
}

.search-field {
  width: 100%;
  min-height: 46px;
  padding: 10px 13px;
  border: 1px solid var(--color-border);
  border-right: 0;
  border-radius: 5px 0 0 5px;
  outline: none;
  background: var(--color-surface-2);
  color: var(--color-text);
}

.search-field:focus {
  border-color: var(--color-brand);
}

.search-submit,
.form-submit .submit {
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--color-brand);
  border-radius: 0 5px 5px 0;
  background: var(--color-brand);
  color: #101117;
  cursor: pointer;
  font-weight: 750;
}

.empty-state__mark {
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 196, 0, 0.24);
  color: var(--color-brand);
  font-weight: 900;
}

.comments-area {
  margin-top: 55px;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
}

.comments-area input:not([type="submit"]),
.comments-area textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-surface-2);
  color: var(--color-text);
}

.form-submit .submit {
  border-radius: 5px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 540px) {
  :root {
    --page-padding: 24px;
  }

  .hero__inner {
    padding-top: 78px;
    padding-bottom: 70px;
  }

  .game-grid,
  .payment-types,
  .post-grid,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .promotion-card:last-child {
    grid-column: 1 / -1;
  }

  .responsible-notice {
    grid-template-columns: 190px 1fr;
    align-items: start;
  }

  .post-navigation {
    grid-template-columns: 1fr 1fr;
  }

  .post-navigation > div:last-child {
    text-align: right;
  }
}

@media (min-width: 700px) {
  .section {
    padding: 95px 0;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .section-heading--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 45px;
  }

  .section-heading--split h2 {
    margin-bottom: 0;
  }

  .benefit-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-left: 1px solid var(--color-border);
  }

  .benefit-item {
    padding: 24px 20px;
    border-right: 1px solid var(--color-border);
  }

  .payments-panel {
    padding: 48px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .guides-empty {
    grid-template-columns: auto 1fr;
    justify-items: start;
    padding: 50px;
    text-align: left;
  }
}

@media (min-width: 783px) {
  .admin-bar .site-header {
    top: 32px;
  }
}

@media (min-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .hero {
    min-height: 650px;
  }

  .hero__inner {
    min-height: 650px;
    grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
    gap: 48px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero__content h1 {
    font-size: clamp(3.4rem, 6vw, 5rem);
  }

  .brand-panel {
    min-height: 400px;
    padding: 30px;
    transform: rotateY(-2deg);
  }

  .brand-panel__identity {
    margin: 55px 0 42px;
  }

  .brand-panel__identity strong {
    font-size: clamp(5.5rem, 10vw, 7.7rem);
  }

  .benefits-layout,
  .faq-layout {
    grid-template-columns: minmax(270px, 0.8fr) minmax(500px, 1.2fr);
    gap: 80px;
  }

  .benefits-intro,
  .faq-intro {
    position: sticky;
    top: calc(var(--header-height) + 35px);
    align-self: start;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .mobile-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 80px;
  }

  .phone-stage__badge--one {
    left: 5%;
  }

  .phone-stage__badge--two {
    right: 5%;
  }

  .payments-panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    padding: 58px;
  }

  .footer-grid {
    grid-template-columns: 1.6fr repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (min-width: 1020px) {
  .game-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .promotion-card:last-child {
    grid-column: auto;
  }

  .guide-grid,
  .post-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .desktop-navigation {
    display: block;
    min-width: 0;
  }

  .primary-menu,
  .primary-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .primary-menu {
    display: flex;
    align-items: center;
    gap: clamp(18px, 1.45vw, 24px);
  }

  .primary-menu > li {
    position: relative;
  }

  .primary-menu a {
    display: flex;
    min-height: 44px;
    align-items: center;
    color: #aeb1be;
    font-size: 0.84rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color 180ms ease;
  }

  .primary-menu a:hover,
  .primary-menu .current-menu-item > a,
  .primary-menu .current_page_item > a {
    color: var(--color-brand);
  }

  .primary-menu .sub-menu {
    position: absolute;
    top: calc(100% - 2px);
    left: -16px;
    width: 190px;
    padding: 10px 16px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    opacity: 0;
    pointer-events: none;
    transform: translateY(7px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-menu li:hover > .sub-menu,
  .primary-menu li:focus-within > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-actions--desktop {
    display: flex;
  }

  .site-header .wordmark__letters {
    font-size: 2.02rem;
  }

  .header-actions--desktop .button {
    min-height: 43px;
  }

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

  .mobile-menu,
  .menu-overlay {
    display: none;
  }
}

@media (max-width: 390px) {
  .header-actions--mobile .button {
    max-width: 118px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.78rem;
  }

  .wordmark__letters {
    font-size: 1.55rem;
  }

  .hero__inner {
    gap: 42px;
    padding-top: 52px;
  }

  .hero__content h1 {
    font-size: 2.35rem;
  }

  .brand-panel {
    min-height: 300px;
    padding: 20px;
  }

  .brand-panel__identity {
    margin: 42px 0 32px;
  }

  .brand-panel__identity strong {
    font-size: 4rem;
  }

  .phone-stage__badge--one {
    left: -8px;
  }

  .phone-stage__badge--two {
    right: -8px;
  }

  .payment-type {
    padding: 17px 10px;
  }

  .payment-type h3 {
    font-size: 0.84rem;
  }
}

/* Phase 2 brand pages */
.container--page {
  max-width: 1060px;
}

.brand-page {
  min-height: 70vh;
  background: var(--color-bg);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 58px;
  border-bottom: 1px solid var(--color-border);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #0a0c17;
  background-size: 52px 52px;
}

.page-hero::after {
  position: absolute;
  right: -130px;
  bottom: -230px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 196, 0, 0.1);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.page-hero__accent {
  position: absolute;
  top: 0;
  left: max(var(--page-padding), calc((100vw - var(--container)) / 2));
  width: 82px;
  height: 3px;
  background: var(--color-brand);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 17px;
  font-size: clamp(2.45rem, 10vw, 4.6rem);
}

.page-hero__intro {
  max-width: 760px;
  margin: 0;
  color: #a8acba;
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.78;
}

.page-hero__actions {
  margin-top: 27px;
}

.breadcrumbs {
  margin-bottom: 31px;
  color: #777c8e;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.breadcrumbs ol,
.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.breadcrumbs a:hover,
.breadcrumbs .last,
.breadcrumbs [aria-current="page"] {
  color: #c8cad3;
}

.breadcrumbs i {
  color: #424657;
  font-style: normal;
}

.breadcrumbs--rank-math nav,
.breadcrumbs--rank-math p {
  margin: 0;
}

.content-single > .container > .breadcrumbs {
  margin-bottom: 34px;
}

.brand-page__content {
  padding-top: 58px;
  padding-bottom: 70px;
}

.brand-page__content--legal {
  max-width: 880px;
}

.page-copy {
  color: #c4c7d0;
  overflow-wrap: anywhere;
}

.page-copy::after {
  display: table;
  clear: both;
  content: "";
}

.page-copy h2 {
  max-width: 780px;
  margin: 2.15em 0 0.7em;
  padding-top: 0.8em;
  border-top: 1px solid var(--color-border);
  font-size: clamp(1.7rem, 5vw, 2.2rem);
}

.page-copy > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.page-copy h3 {
  margin: 1.7em 0 0.55em;
  color: #e6e7eb;
  font-size: clamp(1.1rem, 3.5vw, 1.32rem);
  line-height: 1.3;
  letter-spacing: -0.018em;
}

.page-copy p,
.page-copy li {
  max-width: 800px;
  color: #a8acb9;
}

.page-copy p {
  margin-bottom: 1.25em;
}

.page-copy ul,
.page-copy ol {
  max-width: 800px;
  padding: 0;
  margin: 1.4em 0 2em;
  list-style: none;
}

.page-copy li {
  position: relative;
  padding: 11px 0 11px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.page-copy li::before {
  position: absolute;
  top: 21px;
  left: 3px;
  width: 6px;
  height: 6px;
  background: var(--color-brand);
  content: "";
  transform: rotate(45deg);
}

.page-copy a {
  color: var(--color-brand);
  text-decoration: underline;
  text-decoration-color: rgba(255, 196, 0, 0.36);
  text-underline-offset: 3px;
}

.page-copy a:hover {
  text-decoration-color: var(--color-brand);
}

.brand-page__content--account .page-copy h3,
.brand-page__content--guide .page-copy h3 {
  padding-left: 18px;
  border-left: 2px solid var(--color-brand);
}

.brand-page__content--hub .page-copy > h3 {
  margin-top: 0;
  padding: 20px 20px 0;
  border: 1px solid var(--color-border);
  border-bottom: 0;
  background: var(--color-surface);
}

.brand-page__content--hub .page-copy > h3 + p {
  padding: 10px 20px 20px;
  margin-bottom: 12px;
  border: 1px solid var(--color-border);
  border-top: 0;
  background: var(--color-surface);
}

.brand-page__content--safety .page-copy h2 {
  border-top-color: rgba(255, 196, 0, 0.2);
}

.button--disabled {
  border-color: var(--color-border);
  background: rgba(255, 255, 255, 0.035);
  color: #777c8c;
  cursor: not-allowed;
}

.button--disabled:hover {
  transform: none;
}

.page-cta {
  padding: 50px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-2);
}

.page-cta__inner {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(1.75rem, 6vw, 2.55rem);
}

.page-cta p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: var(--color-muted);
}

.page-cta__actions {
  display: grid;
  gap: 13px;
}

.page-cta .page-cta__availability {
  max-width: 310px;
  padding-left: 12px;
  border-left: 2px solid rgba(255, 196, 0, 0.38);
  color: #8e93a4;
  font-size: 0.78rem;
  line-height: 1.55;
}

.related-pages {
  padding: 62px 0 76px;
  background: var(--color-surface);
}

.related-pages__heading {
  margin-bottom: 27px;
}

.related-pages__heading h2 {
  margin: 0;
  font-size: clamp(1.65rem, 5vw, 2.25rem);
}

.related-pages__grid {
  display: grid;
  border-top: 1px solid var(--color-border);
}

.related-pages__grid a {
  display: flex;
  min-width: 0;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 5px;
  border-bottom: 1px solid var(--color-border);
  color: #c9cbd3;
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 180ms ease, padding 180ms ease;
}

.related-pages__grid a:hover {
  padding-left: 10px;
  color: var(--color-brand);
}

.related-pages__grid svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.page-info-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.page-info-card {
  min-width: 0;
  padding: 23px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.page-info-card__label {
  display: block;
  margin-bottom: 19px;
  color: var(--color-brand);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-info-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  overflow-wrap: anywhere;
}

.page-info-card p {
  margin-bottom: 18px;
  color: var(--color-muted);
  font-size: 0.83rem;
}

.page-copy .game-category-grid {
  max-width: none;
  margin-bottom: 54px;
}

.page-copy .game-category-grid .page-info-card {
  min-height: 185px;
}

.page-copy .game-category-grid .page-info-card p {
  margin-bottom: 0;
}

.page-steps {
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.page-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
}

.page-steps > li > span {
  color: var(--color-brand);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.page-steps h3 {
  margin-bottom: 7px;
  font-size: 1.1rem;
}

.page-steps p {
  margin: 0;
  color: var(--color-muted);
}

.page-notice {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  margin: 32px 0;
  padding: 22px;
  border: 1px solid rgba(255, 196, 0, 0.17);
  background: rgba(255, 196, 0, 0.035);
}

.page-notice__mark {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 196, 0, 0.32);
  border-radius: 50%;
  color: var(--color-brand);
  font-size: 0.8rem;
  font-weight: 800;
}

.page-notice h2,
.page-notice h3 {
  margin: 2px 0 7px;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.page-notice p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.84rem;
}

.page-notice a {
  color: var(--color-brand);
  overflow-wrap: anywhere;
}

.support-methods {
  margin-bottom: 60px;
}

.support-methods > h2,
.guide-listing__heading h2,
.sitemap-guides > h2 {
  margin-bottom: 20px;
  font-size: clamp(1.7rem, 6vw, 2.35rem);
}

.guide-categories {
  display: grid;
  gap: 13px;
  margin: 50px 0 58px;
  padding: 21px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.guide-categories > span {
  color: #777c8d;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-categories > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guide-categories a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 7px 13px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: #bec1cb;
  font-size: 0.78rem;
}

.guide-categories a:hover {
  border-color: var(--color-border-strong);
  color: var(--color-brand);
}

.guide-categories a.is-current {
  border-color: var(--color-brand);
  background: rgba(255, 196, 0, 0.08);
  color: var(--color-brand);
}

.guide-listing__heading {
  margin-bottom: 28px;
}

.guide-listing .page-notice {
  margin-bottom: 0;
}

.sitemap-groups {
  display: grid;
  gap: 14px;
  margin-top: 48px;
}

.sitemap-group {
  padding: 25px 22px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.sitemap-group h2 {
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.sitemap-group ul,
.sitemap-guides ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sitemap-group li + li,
.sitemap-guides li + li {
  margin-top: 9px;
}

.sitemap-group a,
.sitemap-guides a {
  color: #aeb2bf;
  font-size: 0.85rem;
}

.sitemap-group a:hover,
.sitemap-guides a:hover {
  color: var(--color-brand);
}

.sitemap-guides {
  margin-top: 52px;
  padding-top: 38px;
  border-top: 1px solid var(--color-border);
}

.sitemap-guides li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 7px 20px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.sitemap-guides time,
.sitemap-guides > p {
  color: #73788b;
  font-size: 0.72rem;
}

.error-page__links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.error-page__links a {
  color: var(--color-brand);
  font-size: 0.82rem;
  font-weight: 700;
}

@media (min-width: 620px) {
  .page-info-grid,
  .sitemap-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .related-pages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--color-border);
  }

  .related-pages__grid a {
    padding-right: 18px;
    padding-left: 18px;
    border-right: 1px solid var(--color-border);
  }
}

@media (min-width: 800px) {
  .page-hero {
    padding: 65px 0 76px;
  }

  .brand-page__content {
    padding-top: 78px;
    padding-bottom: 90px;
  }

  .page-copy p,
  .page-copy li {
    color: #b7bac6;
    font-size: 1rem;
    line-height: 1.73;
  }

  .page-cta__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 50px;
  }

  .page-cta__inner .button-row {
    justify-content: flex-end;
  }

  .page-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sitemap-groups {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .guide-categories {
    grid-template-columns: 150px 1fr;
    align-items: center;
  }
}

/* Phase 3 guide system */
.guide-single,
.guide-archive,
.search-results-page {
  min-height: 65vh;
}

.guide-single__shell,
.guide-archive > .container {
  padding-top: 38px;
  padding-bottom: 80px;
}

.guide-single__shell > .breadcrumbs,
.guide-archive .breadcrumbs {
  margin-bottom: 34px;
}

.guide-header {
  position: relative;
  max-width: 940px;
  padding: 34px 0 42px;
}

.guide-header::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 68px;
  height: 3px;
  background: var(--color-brand);
  content: "";
}

.guide-header__kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-bottom: 20px;
  color: var(--color-brand);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.guide-header__kicker a {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  color: #c3c6d0;
}

.guide-header__kicker a:hover {
  color: var(--color-brand);
}

.guide-header__title {
  max-width: 920px;
  margin-bottom: 21px;
  font-size: clamp(2.45rem, 8vw, 4.75rem);
}

.guide-header__intro {
  max-width: 780px;
  margin-bottom: 23px;
  color: #aeb2c0;
  font-size: clamp(1rem, 2vw, 1.13rem);
  line-height: 1.75;
}

.guide-header__dates {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: #74798c;
  font-size: 0.76rem;
}

.guide-featured {
  width: 100%;
  margin: 0 0 54px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #111426;
}

.guide-featured img {
  width: 100%;
  height: auto;
}

.guide-featured--placeholder {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(145deg, #15192c, #0b0d18 72%);
  background-size: 48px 48px, 48px 48px, auto;
}

.guide-featured--placeholder::before,
.guide-featured--placeholder::after {
  position: absolute;
  border: 1px solid rgba(255, 196, 0, 0.16);
  content: "";
  transform: rotate(45deg);
}

.guide-featured--placeholder::before {
  width: clamp(150px, 30vw, 300px);
  height: clamp(150px, 30vw, 300px);
}

.guide-featured--placeholder::after {
  right: -75px;
  bottom: -75px;
  width: 190px;
  height: 190px;
}

.guide-featured__brand {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.guide-featured__brand strong {
  color: var(--color-brand);
  font-size: clamp(4rem, 15vw, 8.2rem);
  font-weight: 950;
  letter-spacing: -0.1em;
  line-height: 0.85;
}

.guide-featured__brand small {
  color: #c8cad3;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.guide-article__main {
  width: min(100%, 800px);
  margin-inline: auto;
}

.article-toc {
  margin-bottom: 42px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.article-toc summary {
  position: relative;
  padding: 18px 52px 18px 20px;
  cursor: pointer;
  color: #e8e9ed;
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.article-toc summary::-webkit-details-marker {
  display: none;
}

.article-toc summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--color-brand);
  content: "+";
  font-size: 1.2rem;
  transform: translateY(-50%);
}

.article-toc[open] summary::after {
  content: "−";
}

.article-toc ol {
  display: grid;
  gap: 10px;
  padding: 0 24px 20px 45px;
  margin: 0;
  color: #74798c;
  font-size: 0.875rem;
  line-height: 1.55;
}

.article-toc a {
  color: #bfc2cc;
}

.article-toc a:hover {
  color: var(--color-brand);
}

.guide-article .entry-content {
  color: #c9cbd4;
  font-size: 1rem;
  line-height: 1.75;
}

.guide-article .entry-content > * {
  max-width: 800px;
}

.guide-article .entry-content p,
.guide-article .entry-content ul,
.guide-article .entry-content ol,
.guide-article .entry-content figure,
.guide-article .entry-content table,
.guide-article .entry-content blockquote {
  margin-bottom: 1.45em;
}

.guide-article .entry-content h2 {
  scroll-margin-top: calc(var(--header-height) + 24px);
  margin: 2.1em 0 0.72em;
  padding-top: 0.85em;
  border-top: 1px solid var(--color-border);
  font-size: clamp(1.65rem, 5vw, 2rem);
}

.guide-article .entry-content h3 {
  margin: 1.75em 0 0.65em;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
}

.guide-article .entry-content ul,
.guide-article .entry-content ol {
  padding-left: 1.4em;
}

.guide-article .entry-content li + li {
  margin-top: 0.58em;
}

.guide-article .entry-content strong {
  color: #f1f2f5;
}

.guide-article .entry-content a {
  color: #e6b600;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.guide-article .entry-content a:hover {
  color: var(--color-brand);
}

.guide-article .entry-content blockquote {
  padding: 18px 21px;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-brand);
  background: rgba(255, 255, 255, 0.025);
}

.guide-article .entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.guide-article .entry-content figure {
  max-width: 100%;
}

.guide-article .entry-content figure img,
.guide-article .entry-content > img {
  width: auto;
  max-width: 100%;
  border: 1px solid var(--color-border);
}

.guide-article .entry-content figcaption {
  margin-top: 9px;
  color: #777c8e;
  font-size: 0.78rem;
  text-align: center;
}

.guide-article .entry-content table {
  width: 100%;
  color: #c9cbd4;
  font-size: 0.88rem;
}

.guide-article .entry-content th {
  background: rgba(255, 255, 255, 0.035);
  color: #f0f1f4;
}

.guide-article .entry-content code {
  padding: 0.15em 0.38em;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  background: #121528;
  color: #f1d574;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.88em;
}

.article-cta {
  position: relative;
  margin-top: 58px;
  padding: 29px 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 196, 0, 0.24);
  background: linear-gradient(135deg, rgba(255, 196, 0, 0.08), rgba(18, 21, 40, 0.82) 55%);
}

.article-cta::after {
  position: absolute;
  right: -68px;
  bottom: -68px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(255, 196, 0, 0.18);
  content: "";
  transform: rotate(45deg);
}

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

.article-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 5vw, 2.2rem);
}

.article-cta > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 21px;
  color: #a8acba;
  font-size: 0.95rem;
  line-height: 1.65;
}

.article-responsible-note {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.article-responsible-wrap {
  padding: 0 0 58px;
  background: var(--color-surface);
}

.article-responsible-note strong {
  color: var(--color-brand);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-responsible-note p {
  color: #9297a8;
  font-size: 0.82rem;
}

.article-responsible-note a {
  color: #d7d9df;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.related-guides {
  margin-top: 78px;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.related-guides .section-heading h2 {
  font-size: clamp(1.9rem, 6vw, 2.8rem);
}

.archive-hero {
  max-width: 820px;
  margin: 18px 0 48px;
  padding: 42px 0 0;
  border-top: 1px solid var(--color-border);
}

.archive-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 8vw, 4.4rem);
}

.archive-hero__intro {
  max-width: 680px;
  color: #9da1b0;
  font-size: 1rem;
}

.archive-hero__intro p:last-child {
  margin-bottom: 0;
}

.archive-hero--compact {
  margin-top: 0;
  padding-top: 20px;
}

.search-results-page > .container {
  padding-top: 38px;
  padding-bottom: 80px;
}

.search-group + .search-group {
  margin-top: 58px;
}

.search-group > h2 {
  margin-bottom: 22px;
  font-size: clamp(1.65rem, 5vw, 2.25rem);
}

.page-result-grid {
  display: grid;
  gap: 13px;
}

.page-result-card {
  padding: 24px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.page-result-card .eyebrow {
  margin-bottom: 9px;
}

.page-result-card h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.page-result-card h3 a:hover {
  color: var(--color-brand);
}

.page-result-card > p:not(.eyebrow) {
  margin-bottom: 17px;
  color: var(--color-muted);
  font-size: 0.86rem;
}

@media (min-width: 700px) {
  .article-cta {
    padding: 35px 38px;
  }

  .page-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .guide-featured--placeholder {
    aspect-ratio: 16 / 7;
  }

  .guide-article .entry-content {
    font-size: 1.0625rem;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button,
  .post-navigation,
  .comments-area,
  .article-toc,
  .article-cta,
  .related-guides {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .entry-content,
  h1,
  h2,
  h3 {
    color: #111;
  }
}
