:root {
  --b22-bg: #f5f9f7;
  --b22-surface: #ffffff;
  --b22-ink: #102326;
  --b22-muted: #52666c;
  --b22-line: #d8e5df;
  --b22-primary: #07886f;
  --b22-primary-dark: #046455;
  --b22-teal: #0fa6a0;
  --b22-coral: #e4553f;
  --b22-amber: #f2b84b;
  --b22-navy: #11243a;
  --b22-soft: #e7f5ef;
  --b22-lavender: #ece9ff;
  --b22-shadow: 0 18px 45px rgba(21, 55, 62, 0.12);
  --b22-container: min(1120px, calc(100vw - 32px));
  --b22-content: min(900px, calc(100vw - 32px));
  --b22-radius: 18px;
}

/* bet22 2026 homepage polish */
.home-hero__grid {
  grid-template-columns: minmax(0, .88fr) minmax(380px, .82fr);
}

.home-hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 6.4vw, 78px);
}

.home-hero p {
  max-width: 670px;
  font-size: 18px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-chips li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(33, 240, 139, .25);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, .06);
  color: rgba(244, 248, 255, .9);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  align-self: center;
}

.hero-visual img {
  min-height: 360px;
}

.quick-access-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .64fr);
  gap: 28px;
  align-items: center;
}

.quick-visual-panel .bet22-section-image {
  margin: 0;
}

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

.quick-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.quick-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px auto;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  opacity: .85;
}

.quick-card small {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--green);
}

.brand-features-layout {
  display: grid;
  grid-template-columns: minmax(260px, .48fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.brand-features-section .section-heading h2 {
  max-width: 360px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.06;
}

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

.brand-feature-card {
  position: relative;
  min-height: 188px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  padding: 24px;
  background:
    radial-gradient(circle at 90% 8%, rgba(247, 201, 72, .11), transparent 8rem),
    linear-gradient(145deg, rgba(16, 35, 61, .92), rgba(7, 21, 38, .96));
  box-shadow: 0 16px 44px rgba(0, 0, 0, .22);
}

.brand-feature-card:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 150px;
}

.brand-feature-card h3 {
  margin: 14px 0 8px;
  color: var(--text);
  font-size: 21px;
}

.brand-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.games-section .bet22-section-image,
.bonus-section .bet22-section-image,
.payment-section .bet22-section-image,
.reviews-section .bet22-section-image {
  margin-bottom: 28px;
}

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

.ranking-game-card {
  padding: 18px;
}

.ranking-game-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
}

.ranking-game-card h3,
.promo-card h3,
.payment-method-card h3,
.step-card h3 {
  margin-top: 8px;
}

.ranking-game-card p,
.promo-card p,
.payment-method-card p,
.step-card p,
.review-card p {
  font-size: 15px;
  line-height: 1.62;
}

.split-section--visual {
  align-items: center;
}

.ranking-panel {
  border-radius: 28px;
  padding: 34px;
}

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

.promo-card {
  padding: 24px;
}

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

.payment-method-card {
  min-height: 150px;
  padding: 20px;
}

.payment-method-card .method-icon {
  width: 32px;
  height: 32px;
}

.timeline-grid {
  counter-reset: start-step;
}

.timeline-card {
  counter-increment: start-step;
  min-height: 0;
  padding-top: 58px;
}

.timeline-card::before {
  content: counter(start-step);
  position: absolute;
  top: 20px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: #04110b;
  font-weight: 900;
}

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

.ranking-review-card {
  padding: 22px;
}

.responsible-card {
  background:
    radial-gradient(circle at 82% 18%, rgba(33, 240, 139, .15), transparent 16rem),
    linear-gradient(135deg, rgba(13, 27, 47, .98), rgba(3, 8, 18, .98));
}

.responsible-card .bet22-section-image {
  margin: 0;
}

.article-shell {
  border-radius: 30px;
}

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

@media (max-width: 1180px) {
  .games-grid--eight {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .home-hero__grid,
  .quick-access-wrap,
  .brand-features-layout {
    grid-template-columns: 1fr;
  }

  .brand-feature-grid,
  .games-grid--eight,
  .promo-grid,
  .payment-icon-wall,
  .reviews-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .home-hero h1 {
    font-size: 42px;
  }

  .hero-visual img {
    min-height: 0;
  }

  .quick-access-grid--six,
  .brand-feature-grid,
  .games-grid--eight,
  .promo-grid,
  .payment-icon-wall,
  .reviews-grid--six {
    grid-template-columns: 1fr;
  }

  .brand-feature-card:nth-child(5) {
    grid-column: auto;
  }

  .ranking-panel,
  .brand-feature-card,
  .promo-card,
  .payment-method-card,
  .ranking-review-card {
    padding: 20px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--b22-bg);
  color: var(--b22-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

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

a {
  color: var(--b22-primary-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover,
a:focus {
  color: var(--b22-coral);
}

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

button,
a {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.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;
}

.screen-reader-text:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: #fff;
  color: #000;
  border: 2px solid var(--b22-primary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 249, 247, 0.92);
  border-bottom: 1px solid rgba(216, 229, 223, 0.9);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  width: var(--b22-container);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-branding {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--b22-ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--b22-primary), var(--b22-teal));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.brand-name {
  font-size: 20px;
}

.custom-logo,
.custom-logo-link img,
.site-branding img,
.brand-logo img,
.site-branding--footer img {
  width: auto;
  max-width: 150px;
  max-height: 52px;
  object-fit: contain;
}

.site-branding--footer .custom-logo,
.site-branding--footer img {
  max-width: 132px;
  max-height: 48px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--b22-line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle__line {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--b22-ink);
}

.primary-menu,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: var(--b22-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.primary-menu a:hover,
.primary-menu a:focus {
  color: var(--b22-primary-dark);
}

.site-main {
  min-height: 60vh;
}

.site-main--front > .wp-block-group,
.site-main--front > .wp-block-cover {
  margin-top: 0;
}

.wp-block-group.alignfull,
.alignfull {
  width: 100%;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 54px;
  background:
    radial-gradient(circle at 78% 18%, rgba(242, 184, 75, 0.28), transparent 28%),
    linear-gradient(135deg, #e8fbf2 0%, #d5f2ef 47%, #f7faf8 100%);
  border-bottom: 1px solid var(--b22-line);
}

.home-hero .wp-block-group__inner-container,
.home-section .wp-block-group__inner-container,
.article-band .wp-block-group__inner-container,
.faq-band .wp-block-group__inner-container,
.notice-band .wp-block-group__inner-container {
  width: var(--b22-container);
  margin: 0 auto;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 44px;
}

.home-hero h1 {
  max-width: 740px;
  margin: 0 0 18px;
  color: #082729;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.02;
}

.home-hero p {
  max-width: 680px;
  margin: 0 0 22px;
  color: #2b5054;
  font-size: 18px;
}

.hero-actions,
.wp-block-buttons.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.wp-block-button__link,
.entry-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  background: var(--b22-primary);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(7, 136, 111, 0.22);
}

.wp-block-button__link:hover,
.wp-block-button__link:focus,
.entry-button:hover,
.entry-button:focus {
  background: var(--b22-primary-dark);
  color: #fff;
}

.wp-block-button.is-style-outline .wp-block-button__link,
.entry-button--secondary {
  border: 1px solid rgba(7, 136, 111, 0.36);
  background: #fff;
  color: var(--b22-primary-dark);
  box-shadow: none;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover,
.entry-button--secondary:hover,
.entry-button--secondary:focus {
  border-color: var(--b22-primary);
  background: var(--b22-soft);
  color: var(--b22-primary-dark);
}

.hero-visual {
  position: relative;
  min-height: 360px;
  border-radius: var(--b22-radius);
  padding: 18px;
  background: #ffffff;
  box-shadow: var(--b22-shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 92px;
  height: 92px;
  border-radius: 8px;
  background: var(--b22-lavender);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: var(--b22-radius);
}

.hero-chips,
.payment-chips,
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-chips li,
.payment-chips li,
.trust-chips li {
  border: 1px solid rgba(7, 136, 111, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: #1e464a;
  font-size: 14px;
  font-weight: 700;
}

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

.home-section--white {
  background: #fff;
}

.home-section--soft {
  background: #eef8f4;
}

.section-heading {
  max-width: 760px;
  margin: 0 0 28px;
}

.section-heading h2,
.article-band h2,
.faq-band h2 {
  margin: 0 0 12px;
  color: var(--b22-ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.16;
}

.section-heading p {
  margin: 0;
  color: var(--b22-muted);
}

.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.quick-access-grid--six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.quick-access-grid a,
.feature-card,
.game-card,
.review-card,
.step-card,
.info-card {
  border: 1px solid var(--b22-line);
  border-radius: var(--b22-radius);
  background: var(--b22-surface);
  box-shadow: 0 8px 24px rgba(20, 57, 64, 0.06);
}

.quick-access-grid a {
  display: flex;
  min-height: 94px;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  color: var(--b22-ink);
  font-weight: 800;
  text-decoration: none;
}

.quick-access-grid a span {
  color: var(--b22-primary-dark);
  font-size: 14px;
}

.quick-access-grid a:hover,
.quick-access-grid a:focus {
  border-color: var(--b22-primary);
  box-shadow: var(--b22-shadow);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.feature-lead {
  border-radius: var(--b22-radius);
  padding: 32px;
  background: var(--b22-navy);
  color: #fff;
}

.feature-lead h2,
.feature-lead p {
  color: #fff;
}

.feature-grid,
.games-grid,
.reviews-grid,
.steps-grid,
.info-grid {
  display: grid;
  gap: 18px;
}

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

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

.feature-card,
.game-card,
.review-card,
.step-card,
.info-card {
  padding: 22px;
}

.feature-card h3,
.game-card h3,
.review-card h3,
.step-card h3,
.info-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.3;
}

.feature-card p,
.game-card p,
.review-card p,
.step-card p,
.info-card p {
  margin: 0;
  color: var(--b22-muted);
}

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

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

.game-card--link {
  display: block;
  color: var(--b22-ink);
  text-decoration: none;
}

.game-card--link:hover,
.game-card--link:focus {
  border-color: var(--b22-primary);
  box-shadow: var(--b22-shadow);
}

.game-card img,
.split-visual img,
.article-image img,
.page-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--b22-radius);
  margin-bottom: 16px;
}

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

.split-panel {
  border: 1px solid var(--b22-line);
  border-radius: var(--b22-radius);
  padding: 32px;
  background: #fff;
}

.bonus-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.44fr);
  gap: 24px;
  align-items: center;
  border-radius: var(--b22-radius);
  padding: 30px;
  background: linear-gradient(135deg, #172b46, #0a574f);
  color: #fff;
}

.bonus-panel h2,
.bonus-panel p {
  color: #fff;
}

.payment-strip {
  border: 1px solid var(--b22-line);
  border-radius: var(--b22-radius);
  padding: 26px;
  background: #fff;
}

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

.payment-method-card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--b22-line);
  border-radius: var(--b22-radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(20, 57, 64, 0.06);
}

.payment-method-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.payment-method-card p {
  margin: 0;
  color: var(--b22-muted);
}

.payment-chips li {
  background: #eef8f4;
}

.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

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

.step-card {
  position: relative;
  padding-top: 48px;
}

.step-card::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: 18px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--b22-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

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

.reviews-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card .stars {
  color: #b77b12;
  font-weight: 900;
}

.notice-band {
  padding: 34px 0;
  background: var(--b22-navy);
  color: #fff;
}

.notice-band .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.notice-band h2,
.notice-band p {
  color: #fff;
}

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

.article-band {
  padding: 82px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 247, 0.96)),
    radial-gradient(circle at 12% 10%, rgba(15, 166, 160, 0.12), transparent 30%);
}

.article-shell {
  max-width: 940px;
  margin: 0 auto;
  border: 1px solid var(--b22-line);
  border-radius: var(--b22-radius);
  padding: 44px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(16, 35, 38, 0.08);
}

.article-shell h2 {
  margin-top: 34px;
}

.article-shell h2:first-child {
  margin-top: 0;
}

.article-shell h3 {
  margin: 28px 0 10px;
  font-size: 22px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #f4faf7;
}

.article-shell p {
  color: #344f55;
}

.toc-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 20px 0 32px;
  padding: 20px;
  border: 1px solid var(--b22-line);
  border-radius: var(--b22-radius);
  background: #f8fcfa;
}

.toc-list a {
  font-weight: 700;
  text-decoration: none;
}

.editorial-note {
  border-left: 4px solid var(--b22-primary);
  margin: 28px 0;
  padding: 18px 20px;
  background: #eef8f4;
}

.faq-band {
  padding: 78px 0 86px;
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  border: 1px solid var(--b22-line);
  border-radius: var(--b22-radius);
  padding: 18px 20px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  color: var(--b22-ink);
  font-weight: 800;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--b22-muted);
}

.entry-page,
.archive-shell {
  width: var(--b22-content);
  margin: 0 auto;
  padding: 54px 0 84px;
}

.entry-header {
  margin-bottom: 28px;
  padding: 34px;
  border-radius: var(--b22-radius);
  background: linear-gradient(135deg, #e8fbf2, #ffffff);
  border: 1px solid var(--b22-line);
}

.entry-kicker {
  margin: 0 0 8px;
  color: var(--b22-primary-dark);
  font-size: 14px;
  font-weight: 900;
}

.entry-header h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.entry-content {
  padding: 34px;
  border: 1px solid var(--b22-line);
  border-radius: var(--b22-radius);
  background: #fff;
}

.entry-content h2 {
  margin: 34px 0 12px;
  font-size: clamp(25px, 4vw, 36px);
  line-height: 1.2;
}

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

.entry-content h3 {
  margin: 26px 0 8px;
}

.entry-content ul,
.entry-content ol {
  padding-left: 22px;
}

.entry-content li + li {
  margin-top: 6px;
}

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

.page-card {
  border: 1px solid var(--b22-line);
  border-radius: var(--b22-radius);
  padding: 18px;
  background: #f8fcfa;
}

.site-footer {
  background: var(--b22-navy);
  color: #eaf3f5;
  padding-bottom: 80px;
}

.site-footer a {
  color: #fff;
}

.site-footer__inner {
  width: var(--b22-container);
  margin: 0 auto;
  padding: 54px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 34px;
}

.footer-brand p,
.footer-contact p,
.footer-note {
  color: #c7d7de;
}

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

.footer-email-card {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(33, 240, 139, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.footer-email-card h3 {
  margin: 0 0 8px;
  color: #f4f8ff;
  font-size: 17px;
}

.footer-email-card p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
}

.footer-email-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(33, 240, 139, 0.35);
  border-radius: 999px;
  background: rgba(33, 240, 139, 0.12);
  color: #21f08b;
  font-weight: 800;
  text-decoration: none;
  word-break: break-word;
}

.footer-email-link:hover,
.footer-email-link:focus {
  background: #21f08b;
  color: #04110b;
}

.footer-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 10px 18px;
}

.footer-menu a {
  text-decoration: none;
}

.contact-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer__bottom {
  width: var(--b22-container);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: #c7d7de;
  font-size: 14px;
}

.floating-entry {
  position: fixed;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 80;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
}

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

.floating-entry__button {
  display: inline-flex;
  min-width: min(320px, calc(100vw - 32px));
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  padding: 14px 24px;
  background: var(--b22-coral);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(13, 35, 52, 0.28);
}

.floating-entry__button:hover,
.floating-entry__button:focus {
  background: #c94332;
  color: #fff;
}

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

.search-field {
  min-height: 46px;
  width: min(360px, 100%);
  border: 1px solid var(--b22-line);
  border-radius: 999px;
  padding: 10px 16px;
}

.search-form button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--b22-primary);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

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

.archive-card {
  border: 1px solid var(--b22-line);
  border-radius: var(--b22-radius);
  padding: 22px;
  background: #fff;
}

.archive-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

@media (max-width: 980px) {
  body.admin-bar .site-header {
    top: 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .primary-navigation {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    border: 1px solid var(--b22-line);
    border-radius: var(--b22-radius);
    padding: 14px;
    background: #fff;
    box-shadow: var(--b22-shadow);
  }

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

  .primary-menu {
    display: grid;
    gap: 4px;
  }

  .primary-menu a {
    min-height: 44px;
  }

  .home-hero__grid,
  .feature-layout,
  .split-section,
  .bonus-panel,
  .notice-band .wp-block-group__inner-container,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

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

  .feature-grid,
  .games-grid,
  .reviews-grid,
  .steps-grid,
  .info-grid,
  .payment-method-grid,
  .page-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

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

  .games-grid--eight,
  .reviews-grid--six,
  .feature-grid--wide {
    grid-template-columns: 1fr;
  }
}

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

  .site-header__inner {
    width: min(100% - 24px, 1180px);
    min-height: 66px;
  }

  .brand-name {
    font-size: 18px;
  }

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

  .home-hero {
    padding: 44px 0 42px;
  }

  .home-hero .wp-block-group__inner-container,
  .home-section .wp-block-group__inner-container,
  .article-band .wp-block-group__inner-container,
  .faq-band .wp-block-group__inner-container,
  .notice-band .wp-block-group__inner-container,
  .site-footer__inner,
  .site-footer__bottom,
  .entry-page,
  .archive-shell {
    width: min(100% - 24px, 1180px);
  }

  .home-hero h1 {
    font-size: 40px;
  }

  .hero-visual {
    min-height: 260px;
    padding: 12px;
  }

  .hero-visual img {
    min-height: 238px;
  }

  .home-section,
  .article-band,
  .faq-band {
    padding: 48px 0;
  }

  .article-shell,
  .entry-content,
  .entry-header,
  .split-panel,
  .bonus-panel {
    padding: 22px;
  }

  .toc-list {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .quick-access-grid a {
    min-height: 82px;
    padding: 14px;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .footer-menu {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    display: grid;
  }
}

@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;
  }
}

.wp-block-image.bet22-wide-image,
.wp-block-image.bet22-content-image {
  width: min(100% - 32px, 1120px);
  margin: 34px auto;
}

.wp-block-image.bet22-content-image {
  width: min(100% - 32px, 860px);
}

.wp-block-image.bet22-wide-image img,
.wp-block-image.bet22-content-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(10, 31, 51, 0.14);
}

@media (max-width: 640px) {
  .wp-block-image.bet22-wide-image,
  .wp-block-image.bet22-content-image {
    width: min(100% - 24px, 1120px);
    margin: 24px auto;
  }

  .wp-block-image.bet22-wide-image img,
  .wp-block-image.bet22-content-image img {
    border-radius: 14px;
  }
}

.bet22-visual {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(8, 20, 38, 0.96), rgba(6, 12, 24, 0.98));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.bet22-visual img,
.bet22-visual picture {
  display: block;
  width: 100%;
}

.bet22-visual img {
  height: auto;
  object-fit: cover;
  border-radius: 24px;
}

.bet22-section-image {
  width: min(100% - 32px, 1120px);
  margin: 34px auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(80, 255, 150, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.entry-content .bet22-section-image {
  width: min(100% - 32px, 860px);
}

.bet22-section-image img {
  display: block;
  width: 100%;
  height: auto;
}

.bet22-card-image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
}

.bet22-hero-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 28px;
}

.hero-visual.bet22-visual {
  min-height: 0;
  padding: 0;
  background: transparent;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.hero-visual.bet22-visual::before {
  display: none;
}

.site-footer__visual {
  width: 100%;
  max-width: 340px;
  margin-top: 20px;
}

.site-footer__visual img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.82;
}

@media (max-width: 768px) {
  .bet22-hero-image {
    aspect-ratio: 4 / 5;
    border-radius: 22px;
  }

  .bet22-section-image {
    width: min(100% - 24px, 1120px);
    margin: 18px auto;
    border-radius: 18px;
  }

  .bet22-card-image {
    aspect-ratio: 4 / 3;
  }
}

/* bet22 premium brand-entry redesign */
:root {
  --bg: #050b16;
  --bg-soft: #071526;
  --card: #0d1b2f;
  --card-2: #10233d;
  --text: #f4f8ff;
  --muted: #aab7c9;
  --green: #21f08b;
  --gold: #f7c948;
  --border: rgba(255, 255, 255, .12);
  --shadow: 0 22px 70px rgba(0, 0, 0, .34);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --b22-bg: var(--bg);
  --b22-surface: var(--card);
  --b22-ink: var(--text);
  --b22-muted: var(--muted);
  --b22-line: var(--border);
  --b22-primary: var(--green);
  --b22-primary-dark: #17c979;
  --b22-teal: #21f08b;
  --b22-coral: var(--gold);
  --b22-amber: var(--gold);
  --b22-navy: var(--bg-soft);
  --b22-soft: rgba(33, 240, 139, .08);
  --b22-lavender: rgba(247, 201, 72, .12);
  --b22-shadow: var(--shadow);
  --b22-radius: var(--radius-md);
}

body {
  background:
    radial-gradient(circle at top right, rgba(33, 240, 139, .08), transparent 34rem),
    radial-gradient(circle at 10% 18%, rgba(247, 201, 72, .08), transparent 30rem),
    var(--bg);
  color: var(--text);
}

a {
  color: var(--green);
}

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

.site-header {
  background: rgba(5, 11, 22, .88);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  min-height: 76px;
}

.site-branding,
.primary-menu a {
  color: var(--text);
}

.brand-mark {
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: #05111d;
  box-shadow: 0 12px 34px rgba(33, 240, 139, .22);
}

.primary-menu {
  gap: 14px;
}

.primary-menu a {
  min-height: 38px;
  padding: 0 2px;
  color: rgba(244, 248, 255, .86);
}

.primary-menu a:hover,
.primary-menu a:focus {
  color: var(--green);
}

.header-entry-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--green);
  color: #04110b;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(33, 240, 139, .22);
}

.header-entry-cta:hover,
.header-entry-cta:focus {
  background: var(--gold);
  color: #160f02;
}

.menu-toggle {
  border-color: var(--border);
  background: rgba(255, 255, 255, .06);
}

.menu-toggle__line {
  background: var(--text);
}

.home-hero,
.home-section,
.article-band,
.faq-band,
.entry-page,
.archive-shell {
  color: var(--text);
}

.home-hero {
  padding: 74px 0 58px;
  background:
    radial-gradient(circle at 75% 18%, rgba(33, 240, 139, .16), transparent 28%),
    radial-gradient(circle at 48% 80%, rgba(247, 201, 72, .12), transparent 30%),
    linear-gradient(135deg, #050b16 0%, #071526 62%, #0d1b2f 100%);
  border-bottom: 1px solid var(--border);
}

.home-hero h1,
.home-hero p,
.section-heading h2,
.section-heading p,
.article-band h2,
.faq-band h2,
.entry-header h1,
.entry-content h2,
.entry-content h3 {
  color: var(--text);
}

.home-hero h1 {
  max-width: 760px;
  letter-spacing: 0;
}

.home-hero p {
  max-width: 640px;
  color: var(--muted);
}

.entry-kicker,
.topic-tag {
  color: var(--gold);
  letter-spacing: 0;
}

.entry-button,
.wp-block-button__link {
  min-height: 44px;
  border-radius: 999px;
  background: var(--green);
  color: #04110b;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(33, 240, 139, .22);
}

.entry-button:hover,
.entry-button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
  background: var(--gold);
  color: #160f02;
  transform: translateY(-1px);
}

.entry-button--secondary,
.wp-block-button.is-style-outline .wp-block-button__link {
  border: 1px solid rgba(244, 248, 255, .22);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  box-shadow: none;
}

.hero-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.hero-chips li,
.payment-chips li,
.trust-chips li {
  border-color: rgba(33, 240, 139, .22);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
}

.home-section {
  padding: 72px 0;
  background: var(--bg);
}

.home-section--white {
  background: linear-gradient(180deg, #071526, #050b16);
}

.home-section--soft {
  background: linear-gradient(180deg, #081424, #0b1b30);
}

.section-heading {
  max-width: 800px;
}

.section-heading p {
  color: var(--muted);
}

.brand-snapshot-card,
.page-hero-card,
.responsible-card,
.quick-summary-card,
.checklist-panel,
.table-panel,
.related-panel,
.page-faq-section,
.cta-banner,
.ranking-panel,
.bonus-panel,
.split-panel,
.entry-header,
.entry-content,
.article-shell,
.faq-list details,
.payment-method-card,
.promo-card,
.content-card,
.quick-access-grid a,
.feature-card,
.game-card,
.review-card,
.step-card,
.info-card,
.page-card,
.archive-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(16, 35, 61, .92), rgba(8, 20, 38, .94));
  color: var(--text);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .2);
}

.brand-snapshot-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .75fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius-lg);
}

.snapshot-grid,
.summary-grid,
.related-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.snapshot-grid span,
.summary-grid span,
.related-link-grid a {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  background: rgba(255, 255, 255, .05);
  color: var(--muted);
  text-decoration: none;
}

.snapshot-grid strong,
.summary-grid strong {
  display: block;
  color: var(--text);
  font-size: 13px;
}

.games-bg-summary {
  --games-bg-image: url("../img/generated/games-summary-bg-alt20260619.webp");
}

.games-bg-cricket {
  --games-bg-image: url("../img/generated/games-cricket-bg-alt20260619.webp");
}

.games-bg-sports {
  --games-bg-image: url("../img/generated/games-sports-bg-alt20260619.webp");
}

.games-bg-casino {
  --games-bg-image: url("../img/generated/games-casino-bg-alt20260619.webp");
}

.games-bg-slots {
  --games-bg-image: url("../img/generated/games-slots-bg-alt20260619.webp");
}

.games-bg-cards {
  --games-bg-image: url("../img/generated/games-cards-bg-alt20260619.webp");
}

.games-bg-fast {
  --games-bg-image: url("../img/generated/games-fast-bg-alt20260619.webp");
}

.quick-summary-card.games-bg-card,
.content-card.games-bg-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(33, 240, 139, .28);
  background:
    linear-gradient(135deg, rgba(5, 11, 22, .9), rgba(7, 21, 38, .74) 52%, rgba(7, 18, 33, .9)),
    var(--games-bg-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .28);
}

.quick-summary-card.games-bg-card::before,
.content-card.games-bg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(33, 240, 139, .14), transparent 18rem),
    linear-gradient(180deg, rgba(5, 11, 22, .08), rgba(5, 11, 22, .46));
  pointer-events: none;
}

.quick-summary-card.games-bg-card > *,
.content-card.games-bg-card > * {
  position: relative;
  z-index: 1;
}

.quick-summary-card.games-bg-card {
  min-height: 330px;
  display: grid;
  align-content: end;
  gap: 18px;
}

.content-card.games-bg-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.games-bg-card .summary-grid span {
  background: rgba(5, 11, 22, .56);
  backdrop-filter: blur(8px);
}

.games-bg-card .topic-tag {
  background: rgba(5, 11, 22, .46);
  backdrop-filter: blur(8px);
}

.games-bg-card h2,
.games-bg-card p,
.games-bg-card strong,
.games-bg-card span {
  text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}

.snapshot-image,
.snapshot-image img,
.inline-section-visual,
.inline-section-visual img {
  width: 100%;
  margin: 0;
}

.quick-access-grid a,
.quick-card {
  min-height: 142px;
  gap: 10px;
  color: var(--text);
}

.quick-access-grid a em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

.quick-access-grid a small,
.game-card small {
  color: var(--green);
  font-weight: 900;
}

.card-icon,
.method-icon {
  display: inline-grid;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, var(--gold), transparent 34%),
    linear-gradient(135deg, rgba(33, 240, 139, .92), rgba(33, 240, 139, .18));
  box-shadow: 0 10px 28px rgba(33, 240, 139, .22);
}

.feature-overview-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(13, 27, 47, .86);
  box-shadow: var(--shadow);
}

.feature-overview-table th,
.feature-overview-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: var(--text);
  text-align: left;
}

.feature-overview-table th {
  background: rgba(33, 240, 139, .12);
  color: var(--green);
  font-size: 13px;
  text-transform: uppercase;
}

.feature-overview-table tr:last-child td {
  border-bottom: 0;
}

.games-grid--eight,
.promo-grid,
.content-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ranking-game-card img {
  margin: -4px 0 16px;
}

.topic-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  border: 1px solid rgba(247, 201, 72, .24);
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(247, 201, 72, .08);
  font-size: 12px;
  font-weight: 900;
}

.game-card p,
.review-card p,
.step-card p,
.feature-card p,
.info-card p,
.content-card p,
.promo-card p,
.payment-method-card p,
.article-shell p,
.faq-list p,
.entry-content p {
  color: var(--muted);
}

.split-section--visual {
  grid-template-columns: minmax(0, .9fr) minmax(0, .8fr);
}

.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(33, 240, 139, .12);
}

.two-column-list {
  columns: 2;
  column-gap: 30px;
}

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

.section-note {
  margin: 22px 0 0;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  background: rgba(247, 201, 72, .08);
  color: var(--text);
}

.timeline-grid {
  position: relative;
}

.timeline-card {
  min-height: 220px;
}

.ranking-review-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
}

.avatar-initials {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: #06101c;
  font-weight: 900;
}

.stars {
  color: var(--gold) !important;
  letter-spacing: 0;
}

.responsible-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: var(--radius-lg);
}

.article-band {
  background:
    radial-gradient(circle at 10% 10%, rgba(33, 240, 139, .09), transparent 28rem),
    linear-gradient(180deg, #071526, #050b16);
}

.article-shell {
  max-width: 940px;
  padding: 46px;
}

.article-shell h3 {
  background: rgba(33, 240, 139, .08);
  color: var(--text);
}

.article-callout,
.editorial-note {
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  margin: 24px 0;
  padding: 18px 20px;
  background: rgba(33, 240, 139, .08);
  color: var(--text);
}

.toc-list {
  border-color: var(--border);
  background: rgba(255, 255, 255, .04);
}

.faq-band {
  background: var(--bg);
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  min-height: 58px;
  padding: 18px 56px 18px 20px;
  color: var(--text);
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 24px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.entry-page,
.archive-shell {
  width: var(--b22-container);
}

.entry-header {
  margin-top: 34px;
  padding: 38px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(33, 240, 139, .16), transparent 16rem),
    linear-gradient(135deg, rgba(13, 27, 47, .96), rgba(5, 11, 22, .98));
}

.entry-content {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-layout {
  display: grid;
  gap: 24px;
}

.page-hero-card {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .72fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius-lg);
}

.quick-summary-card,
.checklist-panel,
.table-panel,
.related-panel,
.page-faq-section,
.cta-banner {
  padding: 28px;
}

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

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

.cta-banner {
  background:
    radial-gradient(circle at 85% 20%, rgba(247, 201, 72, .13), transparent 14rem),
    linear-gradient(135deg, rgba(16, 35, 61, .94), rgba(6, 18, 31, .98));
}

.site-footer {
  background: #030812;
}

.floating-entry__button {
  border: 1px solid rgba(33, 240, 139, .4);
  background: var(--green);
  color: #04110b;
}

@media (max-width: 1100px) {
  .header-entry-cta {
    display: none;
  }

  .primary-navigation {
    background: rgba(7, 21, 38, .98);
    border-color: var(--border);
  }
}

@media (max-width: 980px) {
  .brand-snapshot-card,
  .responsible-card,
  .page-hero-card,
  .split-section--visual {
    grid-template-columns: 1fr;
  }

  .games-grid--eight,
  .promo-grid,
  .content-card-grid,
  .compact-payment-grid,
  .payment-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .home-section,
  .article-band,
  .faq-band {
    padding: 44px 0;
  }

  .home-hero {
    padding: 44px 0;
  }

  .home-hero h1 {
    font-size: 38px;
  }

  .snapshot-grid,
  .summary-grid,
  .related-link-grid,
  .games-grid--eight,
  .promo-grid,
  .content-card-grid,
  .compact-payment-grid,
  .payment-method-grid,
  .reviews-grid--six,
  .steps-grid,
  .quick-access-grid--six {
    grid-template-columns: 1fr;
  }

  .two-column-list {
    columns: 1;
  }

  .brand-snapshot-card,
  .page-hero-card,
  .responsible-card,
  .quick-summary-card,
  .checklist-panel,
  .table-panel,
  .related-panel,
  .page-faq-section,
  .cta-banner,
  .article-shell,
  .entry-header {
    padding: 22px;
  }

  .feature-overview-table,
  .feature-overview-table thead,
  .feature-overview-table tbody,
  .feature-overview-table tr,
  .feature-overview-table th,
  .feature-overview-table td {
    display: block;
  }

  .feature-overview-table thead {
    display: none;
  }

  .feature-overview-table {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .feature-overview-table tr {
    margin-bottom: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(13, 27, 47, .92);
  }

  .feature-overview-table td {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .feature-overview-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }
}

/* bet22 2026 final homepage layout overrides */
.home-hero__grid {
  grid-template-columns: minmax(0, .88fr) minmax(380px, .82fr);
}

.home-hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 6.4vw, 78px);
}

.home-hero p {
  max-width: 670px;
  font-size: 18px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-chips li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(33, 240, 139, .25);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, .06);
  color: rgba(244, 248, 255, .9);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  align-self: center;
}

.hero-visual img {
  min-height: 360px;
}

.quick-access-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .64fr);
  gap: 28px;
  align-items: center;
}

.quick-visual-panel .bet22-section-image {
  margin: 0;
}

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

.quick-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.quick-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px auto;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  opacity: .85;
}

.brand-features-layout {
  display: grid;
  grid-template-columns: minmax(260px, .48fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.brand-features-section .section-heading h2 {
  max-width: 360px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.06;
}

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

.brand-feature-card {
  min-height: 188px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  padding: 24px;
  background:
    radial-gradient(circle at 90% 8%, rgba(247, 201, 72, .11), transparent 8rem),
    linear-gradient(145deg, rgba(16, 35, 61, .92), rgba(7, 21, 38, .96));
  box-shadow: 0 16px 44px rgba(0, 0, 0, .22);
}

.brand-feature-card:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 150px;
}

.brand-feature-card h3 {
  margin: 14px 0 8px;
  color: var(--text);
  font-size: 21px;
}

.brand-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.games-section .bet22-section-image,
.bonus-section .bet22-section-image,
.payment-section .bet22-section-image,
.reviews-section .bet22-section-image {
  margin-bottom: 28px;
}

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

.ranking-game-card {
  padding: 18px;
}

.ranking-game-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
}

.ranking-game-card p,
.promo-card p,
.payment-method-card p,
.step-card p,
.review-card p {
  font-size: 15px;
  line-height: 1.62;
}

.ranking-panel {
  border-radius: 28px;
  padding: 34px;
}

.promo-grid,
.payment-icon-wall,
.reviews-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payment-method-card {
  min-height: 150px;
  padding: 20px;
}

.timeline-grid {
  counter-reset: start-step;
}

.timeline-card {
  counter-increment: start-step;
  min-height: 0;
  padding-top: 58px;
}

.timeline-card::before {
  content: counter(start-step);
  position: absolute;
  top: 20px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: #04110b;
  font-weight: 900;
}

.ranking-review-card {
  padding: 22px;
}

.responsible-card {
  background:
    radial-gradient(circle at 82% 18%, rgba(33, 240, 139, .15), transparent 16rem),
    linear-gradient(135deg, rgba(13, 27, 47, .98), rgba(3, 8, 18, .98));
}

.responsible-card .bet22-section-image {
  margin: 0;
}

.article-shell {
  border-radius: 30px;
}

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

@media (max-width: 1180px) {
  .games-grid--eight {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .home-hero__grid,
  .quick-access-wrap,
  .brand-features-layout {
    grid-template-columns: 1fr;
  }

  .brand-feature-grid,
  .games-grid--eight,
  .promo-grid,
  .payment-icon-wall,
  .reviews-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .home-hero h1 {
    font-size: 42px;
  }

  .hero-visual img {
    min-height: 0;
  }

  .quick-access-grid--six,
  .brand-feature-grid,
  .games-grid--eight,
  .promo-grid,
  .payment-icon-wall,
  .reviews-grid--six {
    grid-template-columns: 1fr;
  }

  .brand-feature-card:nth-child(5) {
    grid-column: auto;
  }

  .ranking-panel,
  .brand-feature-card,
  .promo-card,
  .payment-method-card,
  .ranking-review-card {
    padding: 20px;
  }
}
