:root {
  --bg: #080b0f;
  --bg-soft: #101820;
  --bg-panel: #141d26;
  --bg-panel-2: #0f2724;
  --text: #f5f7fb;
  --text-soft: #c9d3df;
  --muted: #8fa0b1;
  --line: rgba(216, 230, 240, 0.16);
  --gold: #f4c34d;
  --gold-dark: #322706;
  --emerald: #36d399;
  --teal: #2bbac0;
  --rose: #f17d8f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius: 22px;
  --container: 1180px;
  --article: 920px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(54, 211, 153, 0.16), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(244, 195, 77, 0.12), transparent 30rem),
    linear-gradient(180deg, #070a0d 0%, #0b1116 42%, #080b0f 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0;
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover,
a:focus-visible {
  color: var(--gold);
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 10px 14px;
  border-radius: 10px;
  color: #081016;
  background: var(--gold);
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 11, 15, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  width: min(100% - 32px, var(--container));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-branding,
.brand-link,
.custom-logo-link {
  flex: 0 0 auto;
  min-width: 0;
  max-width: min(48vw, 220px);
}

.custom-logo,
.custom-logo-link img,
.site-branding img,
.brand-logo img,
.footer-brand img {
  display: block;
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 56px;
  object-fit: contain;
}

.footer-brand img {
  max-width: 150px;
  max-height: 48px;
}

.primary-navigation {
  flex: 1 1 auto;
}

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

.primary-navigation .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.primary-navigation a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header-link,
.header-button,
.search-submit,
.wp-block-button__link,
.button-link,
.text-link {
  cursor: pointer;
}

.header-link,
.header-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.header-link {
  color: var(--text-soft);
  border: 1px solid var(--line);
}

.header-button,
.wp-block-button__link,
.button-link {
  color: #10100a;
  background: linear-gradient(135deg, #ffe58a, var(--gold));
  box-shadow: 0 12px 28px rgba(244, 195, 77, 0.24);
}

.header-button:hover,
.wp-block-button__link:hover,
.button-link:hover,
.floating-entry__button:hover {
  color: #10100a;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(244, 195, 77, 0.32);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.site-main {
  width: 100%;
}

.front-page-content > *,
.entry-content > * {
  margin-top: 0;
}

.home-section,
.article-section,
.faq-section,
.page-content-shell,
.archive-shell {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.home-section {
  padding: 60px 0;
}

.home-section:first-child {
  padding-top: 44px;
}

.home-hero {
  width: min(100% - 32px, 1220px);
  margin: 0 auto;
  padding: 56px 0 62px;
  text-align: center;
}

.hero-kicker,
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.home-hero h1,
.page-hero h1 {
  max-width: 940px;
  margin: 0 auto 18px;
  color: var(--text);
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
}

.home-hero p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--text-soft);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 16px;
}

.home-hero .button-link {
  color: #fff7d8;
  border: 1px solid rgba(244, 195, 77, 0.62);
  background:
    linear-gradient(135deg, rgba(244, 195, 77, 0.16), rgba(255, 255, 255, 0.035)),
    #080d11;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
}

.home-hero .button-link:hover,
.home-hero .button-link:focus-visible {
  color: #fff0b8;
  background:
    linear-gradient(135deg, rgba(244, 195, 77, 0.24), rgba(255, 255, 255, 0.05)),
    #0d1419;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.48);
}

.button-link,
.text-link,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.text-link {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.hero-note {
  display: inline-flex;
  max-width: 760px;
  margin: 0 auto;
  padding: 9px 14px;
  border: 1px solid rgba(244, 195, 77, 0.28);
  border-radius: 999px;
  color: #ffe8a3;
  background: rgba(244, 195, 77, 0.08);
  font-size: 14px;
  font-weight: 700;
}

.hero-media,
.large-media {
  margin: 38px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--bg-panel);
  box-shadow: var(--shadow);
}

.hero-media {
  max-width: 1060px;
}

.hero-media img,
.large-media img,
.split-media img,
.card-image img {
  display: block;
  width: 100%;
  height: auto;
}

.quick-access {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.quick-card,
.feature-card,
.game-card,
.review-card,
.step-card,
.info-card,
.bonus-card,
.payment-card,
.app-card,
.category-card,
.faq-group,
.link-card {
  position: relative;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
}

.quick-card {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}

.quick-card strong,
.feature-card h3,
.game-card h3,
.review-card strong,
.step-card h3,
.info-card h3,
.bonus-card h3,
.payment-card h3,
.app-card h3,
.category-card h3,
.link-card h3 {
  display: block;
  margin: 0 0 8px;
  color: var(--text);
  font-size: 19px;
  line-height: 1.25;
}

.quick-card span,
.feature-card p,
.game-card p,
.review-card p,
.step-card p,
.info-card p,
.bonus-card p,
.payment-card p,
.app-card p,
.category-card p,
.link-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}

.section-heading {
  max-width: 780px;
  margin: 0 0 30px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.article-section h2,
.faq-section h2,
.entry-content h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 34px;
  line-height: 1.16;
}

.section-heading p,
.entry-content p,
.article-section p,
.faq-section p {
  color: var(--text-soft);
}

.feature-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.feature-grid,
.bonus-grid,
.payment-check-grid,
.app-card-grid,
.category-grid,
.link-card-grid,
.faq-group-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

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

.bonus-card,
.payment-card,
.app-card,
.category-card,
.link-card {
  min-height: 100%;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.games-category-layout {
  display: grid;
  grid-template-columns: minmax(250px, 360px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.games-category-layout.cards-only {
  grid-template-columns: 1fr;
}

.games-category-layout.cards-only .category-grid {
  width: 100%;
}

.games-category-media {
  max-width: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg-panel);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.games-category-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.games-category-layout .category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.games-category-layout .category-card {
  padding: 18px;
  border-radius: 20px;
}

.games-category-layout .category-card.has-image {
  display: flex;
  align-items: flex-end;
  min-height: 212px;
  padding: 0;
  overflow: hidden;
  border-color: rgba(244, 195, 77, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032)),
    rgba(13, 19, 24, 0.92);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.games-category-layout .category-card.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 9, 12, 0.02) 0%, rgba(5, 9, 12, 0.28) 48%, rgba(5, 9, 12, 0.78) 100%),
    linear-gradient(135deg, rgba(244, 195, 77, 0.12), transparent 46%);
  pointer-events: none;
}

.category-card__media {
  position: absolute;
  inset: 0;
  height: 100%;
  overflow: hidden;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.04);
}

.category-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.06) brightness(1.04);
}

.category-card__body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 74px 16px 16px;
}

.games-category-layout .category-card h3 {
  color: #fff7d8;
  font-size: 17px;
  margin-bottom: 6px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
}

.games-category-layout .category-card p {
  color: rgba(255, 255, 255, 0.83);
  font-size: 14px;
  line-height: 1.42;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.games-category-layout.cards-only + .section-cta {
  margin-top: 18px;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.feature-card.wide {
  min-height: 208px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(54, 211, 153, 0.14), transparent 60%),
    var(--bg-panel);
}

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

.games-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0 34px;
}

.games-hub-grid.image-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.games-hub-grid.image-cards .link-card.has-image {
  min-height: 236px;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  border-color: rgba(244, 195, 77, 0.18);
  background: rgba(13, 19, 24, 0.92);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.games-hub-grid.image-cards .link-card.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 9, 12, 0.02) 0%, rgba(5, 9, 12, 0.3) 48%, rgba(5, 9, 12, 0.82) 100%),
    linear-gradient(135deg, rgba(244, 195, 77, 0.12), transparent 46%);
  pointer-events: none;
}

.games-hub-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.games-hub-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.06) brightness(1.04);
}

.games-hub-card__body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 86px 18px 18px;
}

.games-hub-grid.image-cards .link-card h3 {
  color: #fff7d8;
  margin-bottom: 6px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
}

.games-hub-grid.image-cards .link-card p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.45;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.games-hub-grid.image-cards .mini-link {
  display: inline-flex;
  margin-top: 12px;
  color: #ffe58a;
}

.games-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0 0;
}

.games-detail-card {
  position: relative;
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(244, 195, 77, 0.09), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03)),
    rgba(13, 19, 24, 0.9);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.games-detail-card.is-wide {
  grid-column: 1 / -1;
}

.games-detail-card h2 {
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  color: var(--text);
  font-size: 24px;
}

.games-detail-card p {
  margin: 0 0 12px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.66;
}

.games-detail-card p:last-child {
  margin-bottom: 0;
}

.game-card {
  overflow: hidden;
}

.game-card .mini-link,
.quick-card .mini-link {
  margin-top: 16px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--bg-panel);
  box-shadow: var(--shadow);
}

.payment-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.payment-strip.compact span {
  min-width: 92px;
  justify-content: center;
}

.payment-strip span,
.trust-pill,
.toc-list a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.055);
  font-size: 14px;
  font-weight: 800;
}

.payment-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid rgba(216, 230, 240, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(54, 211, 153, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.032));
  box-shadow: var(--shadow);
}

.payment-showcase__content {
  min-width: 0;
}

.payment-showcase__lead {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--text-soft);
}

.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.payment-method-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid rgba(244, 195, 77, 0.24);
  border-radius: 999px;
  color: var(--text);
  background: rgba(8, 11, 15, 0.38);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.payment-check-grid.payment-check-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.payment-showcase .payment-card {
  display: grid;
  gap: 8px;
  min-height: auto;
  padding: 16px;
  border-radius: 18px;
  background: rgba(8, 11, 15, 0.48);
}

.payment-card__top {
  display: flex;
  align-items: center;
  gap: 9px;
}

.payment-card__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  border-radius: 999px;
  color: #081016;
  background: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

.payment-showcase .payment-card h3 {
  margin: 0;
  font-size: 16px;
}

.payment-showcase .payment-card p {
  font-size: 14px;
  line-height: 1.52;
}

.payment-showcase__cta {
  margin: 18px 0 0;
}

.payment-showcase__visual {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg-panel);
}

.payment-showcase__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.payment-showcase__visual figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(8, 11, 15, 0.78);
  backdrop-filter: blur(12px);
}

.payment-showcase__visual figcaption span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.payment-showcase__visual figcaption strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.35;
}

.info-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.steps-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps-grid.official-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-number {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #0e1211;
  background: var(--emerald);
  font-weight: 900;
}

.reviews-grid {
  grid-template-columns: repeat(5, 1fr);
}

.stars {
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
}

.notice-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(241, 125, 143, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(241, 125, 143, 0.12), transparent 56%),
    rgba(255, 255, 255, 0.045);
}

.notice-band.compact {
  max-width: 980px;
  margin: 0 auto;
}

.notice-band h2,
.notice-band p {
  margin: 0;
}

.article-section {
  padding: 66px 0;
}

.article-shell {
  max-width: var(--article);
  margin: 0 auto;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(11, 17, 22, 0.82);
  box-shadow: var(--shadow);
}

.brand-summary-section {
  padding-top: 48px;
}

.brand-summary-panel {
  max-width: 1080px;
}

.brand-summary-head {
  max-width: 840px;
  margin-bottom: 26px;
}

.brand-summary-head h2 {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.brand-summary-head p:last-child {
  margin-bottom: 0;
  color: var(--text-soft);
}

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

.brand-summary-card {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(216, 230, 240, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(54, 211, 153, 0.07), transparent 55%),
    rgba(255, 255, 255, 0.035);
}

.brand-summary-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.28;
}

.brand-summary-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.58;
}

.brand-summary-card--cta {
  border-color: rgba(244, 195, 77, 0.28);
  background:
    linear-gradient(135deg, rgba(244, 195, 77, 0.11), transparent 58%),
    rgba(255, 255, 255, 0.045);
}

.brand-summary-card--cta .text-link {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 950;
}

.article-shell.brand-entry-article h2:first-of-type {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.article-shell .toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 34px;
  padding: 0;
  list-style: none;
}

.article-shell h2 {
  padding-top: 18px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.article-shell h3 {
  margin: 26px 0 10px;
  color: var(--text);
  font-size: 23px;
}

.article-shell p,
.article-shell li {
  color: var(--text-soft);
}

.article-shell a,
.entry-content a {
  color: #ffe08a;
}

.article-note {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 16px;
  color: var(--text-soft);
  background: rgba(244, 195, 77, 0.08);
}

.faq-section {
  padding: 24px 0 76px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item,
.entry-content details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.faq-item summary,
.entry-content summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 900;
}

.faq-item p,
.entry-content details p {
  margin: 0;
  padding: 0 20px 20px;
}

.page-main {
  padding: 58px 0 92px;
}

.page-content-shell,
.archive-shell {
  max-width: 980px;
}

.page-content-shell--wide {
  max-width: var(--container);
}

.page-hero {
  margin-bottom: 32px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(43, 186, 192, 0.12), transparent 56%),
    rgba(255, 255, 255, 0.045);
}

.page-hero h1 {
  margin-left: 0;
  margin-right: 0;
  font-size: 44px;
}

.page-hero--games {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 32px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(54, 211, 153, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
}

.page-hero__copy {
  min-width: 0;
}

.page-hero__intro {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.7;
}

.page-hero__media {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg-panel);
  box-shadow: var(--shadow);
}

.page-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.games-hub-page .entry-content {
  padding: 0;
  border: 0;
  background: transparent;
}

.games-category-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 30px;
}

.game-category-card {
  display: flex;
  min-height: 176px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid rgba(216, 230, 240, 0.16);
  border-radius: 20px;
  color: var(--text);
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(244, 195, 77, 0.11), transparent 52%),
    rgba(255, 255, 255, 0.045);
}

.game-category-card.has-media {
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  background: rgba(9, 14, 19, 0.92);
}

.game-category-card__media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid rgba(216, 230, 240, 0.12);
  background: var(--bg-panel);
}

.game-category-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(8, 11, 15, 0.62) 100%),
    linear-gradient(135deg, rgba(244, 195, 77, 0.12), transparent 48%);
  pointer-events: none;
}

.game-category-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.01);
  transition: transform 220ms ease, filter 220ms ease;
}

.game-category-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.game-category-card:hover,
.game-category-card:focus-visible {
  color: var(--text);
  border-color: rgba(244, 195, 77, 0.42);
  background:
    linear-gradient(135deg, rgba(54, 211, 153, 0.14), transparent 52%),
    rgba(255, 255, 255, 0.06);
}

.game-category-card.has-media:hover .game-category-card__media img,
.game-category-card.has-media:focus-visible .game-category-card__media img {
  filter: saturate(1.16) contrast(1.08) brightness(1.04);
  transform: scale(1.045);
}

.game-category-card strong {
  display: block;
  margin: 0 0 8px;
  color: #fff7d8;
  font-size: 18px;
  line-height: 1.25;
}

.game-category-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.game-category-card__text {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.game-category-card__link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.games-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.games-content-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(43, 186, 192, 0.09), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.03)),
    rgba(13, 19, 24, 0.88);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.games-content-card.is-wide {
  grid-column: 1 / -1;
}

.games-content-card h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 26px;
  line-height: 1.2;
}

.games-content-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.68;
}

.games-content-card a {
  color: var(--gold);
  font-weight: 800;
}

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

.choice-card {
  padding: 18px;
  border: 1px solid rgba(244, 195, 77, 0.2);
  border-radius: 18px;
  background: rgba(8, 11, 15, 0.38);
}

.choice-card h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 17px;
}

.choice-card p {
  font-size: 14px;
  line-height: 1.52;
}

.games-content-card.responsible-card {
  border-color: rgba(54, 211, 153, 0.28);
  background:
    linear-gradient(135deg, rgba(54, 211, 153, 0.13), transparent 52%),
    rgba(255, 255, 255, 0.04);
}

.games-faq-block {
  margin-top: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.games-faq-block h2 {
  margin-top: 0;
}

.games-faq-block .schema-faq {
  display: grid;
  gap: 12px;
}

.games-faq-block .schema-faq-section {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 11, 15, 0.34);
}

.games-faq-block .schema-faq-question {
  display: block;
  color: var(--text);
  font-size: 17px;
  line-height: 1.35;
}

.games-faq-block .schema-faq-answer {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

.entry-content {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.045);
}

.entry-content h2:first-child {
  margin-top: 0;
}

.entry-content h2 {
  margin-top: 34px;
}

.entry-content h3 {
  margin: 26px 0 8px;
  color: var(--text);
}

.entry-content ul,
.entry-content ol {
  color: var(--text-soft);
}

.entry-content .wp-block-image {
  margin: 28px 0;
}

.entry-content .wp-block-image img {
  border-radius: 22px;
  border: 1px solid var(--line);
}

.entry-content .page-feature-image {
  margin: 26px 0 32px;
}

.entry-content .page-feature-image img {
  display: block;
  width: 100%;
  box-shadow: var(--shadow);
}

body.page-id-25 .entry-content .large-media {
  max-width: 360px;
  margin: 24px auto 34px;
  padding: 10px;
  border-radius: 24px;
}

body.page-id-25 .entry-content .large-media img {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  border: 0;
  border-radius: 18px;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.post-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.search-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
}

.search-field {
  min-height: 46px;
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.search-submit {
  min-height: 46px;
  padding: 10px 16px;
  border: 0;
  border-radius: 14px;
  color: #0e1110;
  background: var(--gold);
  font-weight: 900;
}

.site-footer {
  padding: 54px 0 110px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  background: #07090c;
}

.site-footer__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1.8fr 0.85fr;
  gap: 34px;
}

.footer-brand p,
.footer-contact p {
  margin: 14px 0 0;
  font-size: 14px;
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.footer-group h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 16px;
}

.footer-group ul {
  display: grid;
  gap: 8px;
}

.footer-navigation a {
  color: var(--text-soft);
  font-size: 14px;
  text-decoration: none;
}

.safety-note {
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid rgba(244, 195, 77, 0.26);
  border-radius: 20px;
  color: var(--text-soft);
  background: rgba(244, 195, 77, 0.075);
}

.safety-note h2,
.safety-note h3 {
  margin-top: 0;
}

.footer-contact h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.footer-contact__description {
  line-height: 1.55;
}

.footer-email a {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(244, 195, 77, 0.24);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(244, 195, 77, 0.07);
  font-weight: 900;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.floating-entry {
  position: fixed;
  left: 50%;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 60;
  transform: translate(-50%, 24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-entry__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 190px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 229, 138, 0.55);
  border-radius: 999px;
  color: #10100a;
  background: linear-gradient(135deg, #fff0a3, var(--gold));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.42);
  font-weight: 950;
  text-decoration: none;
}

body.floating-entry-visible .floating-entry {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1080px) {
  .site-header__inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .primary-navigation {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(8, 11, 15, 0.98);
    box-shadow: var(--shadow);
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-navigation .menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .primary-navigation a {
    justify-content: center;
    background: rgba(255, 255, 255, 0.055);
  }

  .header-actions {
    display: none;
  }

  .quick-access,
  .steps-grid,
  .feature-grid,
  .bonus-grid,
  .payment-check-grid,
  .app-card-grid,
  .category-grid,
  .games-hub-grid,
  .link-card-grid,
  .faq-group-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .feature-layout,
  .split-section,
  .split-section.reverse,
  .payment-showcase,
  .page-hero--games,
  .games-category-layout,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

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

  .games-content-grid {
    grid-template-columns: 1fr;
  }

  .page-hero__media img {
    min-height: 280px;
  }

  .payment-showcase__visual img {
    min-height: 280px;
  }

  .games-category-media {
    max-width: 520px;
    margin: 0 auto 8px;
  }

  .games-category-layout .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  .home-hero {
    padding: 34px 0 40px;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .home-hero p {
    font-size: 17px;
  }

  .home-section {
    padding: 40px 0;
  }

  .quick-access,
  .games-grid,
  .reviews-grid,
  .steps-grid,
  .info-pair,
  .post-grid,
  .footer-groups,
  .feature-grid,
  .bonus-grid,
  .payment-check-grid,
  .app-card-grid,
  .category-grid,
  .games-hub-grid,
  .link-card-grid,
  .faq-group-grid {
    grid-template-columns: 1fr;
  }

  .payment-showcase {
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
  }

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

  .payment-check-grid.payment-check-grid--compact {
    grid-template-columns: 1fr;
  }

  .payment-showcase__visual {
    border-radius: 18px;
  }

  .payment-showcase__visual img {
    min-height: 220px;
  }

  .payment-showcase__visual figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 11px 12px;
    border-radius: 14px;
  }

  .article-shell,
  .entry-content,
  .page-hero {
    padding: 26px;
    border-radius: 22px;
  }

  .section-heading h2,
  .article-section h2,
  .faq-section h2,
  .entry-content h2 {
    font-size: 27px;
  }

  .hero-media,
  .large-media,
  .split-media,
  .games-category-media {
    border-radius: 20px;
  }

  .games-category-media {
    max-width: 100%;
    margin-bottom: 4px;
  }

  .games-category-layout .category-grid {
    grid-template-columns: 1fr;
  }

  .games-category-layout .category-card.has-image {
    min-height: 190px;
  }

  .games-hub-grid.image-cards .link-card.has-image {
    min-height: 220px;
  }

  .games-detail-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .games-detail-card {
    padding: 22px;
    border-radius: 20px;
  }

  .games-category-nav,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .game-category-card {
    min-height: 0;
  }

  .games-content-card,
  .games-faq-block {
    padding: 22px;
    border-radius: 20px;
  }

  .brand-summary-grid {
    grid-template-columns: 1fr;
  }

  .brand-summary-card {
    padding: 18px;
    border-radius: 18px;
  }

  body.page-id-25 .entry-content .large-media {
    max-width: 280px;
    margin: 20px auto 28px;
    padding: 8px;
    border-radius: 20px;
  }

  body.page-id-25 .entry-content .large-media img {
    max-height: 560px;
    border-radius: 15px;
  }

  .games-content-card h2 {
    font-size: 23px;
  }

  .page-hero__media img {
    min-height: 220px;
  }

  .page-hero--games .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-hero--games .button-link,
  .page-hero--games .text-link {
    width: 100%;
    justify-content: center;
  }

  .category-card__body {
    padding: 66px 16px 16px;
  }

  .games-hub-card__body {
    padding: 78px 18px 18px;
  }

  .notice-band {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .site-branding,
  .brand-link,
  .custom-logo-link {
    max-width: min(58vw, 160px);
  }

  .custom-logo,
  .custom-logo-link img,
  .site-branding img,
  .brand-logo img {
    max-width: 140px;
    max-height: 44px;
  }

  .floating-entry {
    width: min(100% - 32px, 420px);
  }

  .floating-entry__button {
    width: 100%;
  }
}
