@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ========================================
   BASE
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #132033;
  background: #f4f7fb;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1 {
  margin-top: 0;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1 1 auto;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-logo__image {
  display: block;
  max-height: 38px;
  width: auto;
}

@media (max-width: 767px) {
  .site-logo__image {
    max-height: 30px;
  }
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #18dacb 0%, #14c7ba 100%);
  color: #0f172a;
  box-shadow: 0 10px 20px rgba(20, 199, 186, 0.22);
}

.btn-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-outline {
  border: 1px solid #b8c4d3;
  background: #ffffff;
  color: #425466;
}

.btn-outline:hover {
  border-color: #7f93ad;
  color: #0f172a;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.btn-full {
  width: 100%;
}

.btn-claim {
  position: relative;
  gap: 10px;
  overflow: hidden;
  box-shadow:
    0 12px 24px rgba(20, 199, 186, 0.24),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.btn-claim::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 30%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn-claim:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 30px rgba(20, 199, 186, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  filter: saturate(1.05);
}

.btn-claim:hover::before {
  transform: translateX(120%);
}

.btn-claim__icon {
  transition: transform 0.2s ease;
}

.btn-claim:hover .btn-claim__icon {
  transform: translateX(3px);
}

.btn-cta-secondary {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.26);
}

/* ========================================
   SHARED
======================================== */
.section-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(24, 218, 203, 0.1);
  color: #0f766e;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.section-label--dark {
  background: rgba(24, 218, 203, 0.12);
  color: #7df5eb;
}

.section-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.section-head__link {
  font-size: 14px;
  font-weight: 700;
  color: #0f766e;
}

.section-head__link:hover {
  color: #18aea3;
}

.card-box,
.archive-bottom__box,
.simple-page__content-box,
.review-showcase__card,
.cta-banner__box,
.bookmaker-card {
  background: #ffffff;
  border: 1px solid #dfe7f1;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
}

.obk-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.obk-stars__item {
  font-size: 16px;
  line-height: 1;
}

.obk-stars__item.is-full,
.obk-stars__item.is-half {
  color: #f5b301;
}

.obk-stars__item.is-half {
  opacity: 0.55;
}

.obk-stars__item.is-empty {
  color: #d7dee8;
}

.bookmaker-hero__rating-row .obk-stars__item,
.sidebar-cta__rating .obk-stars__item {
  font-size: 18px;
}

/* ========================================
   HEADER
======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.site-header__top {
  background: linear-gradient(135deg, #15263f 0%, #1c2e4d 100%);
}

.site-header__top-inner {
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-logo__mark {
  font-size: 18px;
  line-height: 1;
  color: #18dacb;
}

.site-logo__text {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.site-logo__text span {
  color: #18dacb;
}

.site-nav {
  margin-left: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-nav__list a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav__list a:hover {
  color: #18dacb;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__bottom {
  background: #0f1b30;
}

/* ========================================
   MOBILE NAVIGATION / BURGER
======================================== */
.burger {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1002;
}

.burger span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transform: translateX(-50%);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    top 0.3s ease;
}

.burger span:nth-child(1) {
  top: 16px;
}
.burger span:nth-child(2) {
  top: 23px;
}
.burger span:nth-child(3) {
  top: 30px;
}

.burger.is-active span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
  opacity: 0;
}

.burger.is-active span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #15263f 0%, #1c2e4d 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu__list a {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
}

body.menu-open {
  overflow: hidden;
}

.mobile-category-dropdown {
  display: none;
  position: relative;
  width: 100%;
}

.mobile-category-dropdown__toggle {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 16px;
  border: 0 !important;
  outline: none;
  box-shadow: none !important;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.12s ease;
}

.mobile-category-dropdown__toggle:hover {
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 0 1px rgba(24, 218, 203, 0.15),
    0 6px 18px rgba(24, 218, 203, 0.08);
}

.mobile-category-dropdown__toggle:active {
  transform: scale(0.98);
}

.mobile-category-dropdown__current {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-category-dropdown__arrow {
  position: relative;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  margin-left: 2px;
  transition: transform 0.24s ease;
}

.mobile-category-dropdown__arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-right: 2px solid #18dacb;
  border-bottom: 2px solid #18dacb;
  transform: rotate(45deg);
  transform-origin: center;
}

.mobile-category-dropdown.is-open .mobile-category-dropdown__arrow {
  transform: rotate(180deg);
}

.mobile-category-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  padding: 10px 12px 12px;
  background: #0f1b30;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    visibility 0.24s ease;
  z-index: 30;
}

.mobile-category-dropdown.is-open .mobile-category-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-category-dropdown__menu li + li {
  margin-top: 4px;
}

.mobile-category-dropdown__menu a {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.mobile-category-dropdown__menu a:hover {
  background: rgba(24, 218, 203, 0.08);
  color: #ffffff;
  transform: translateX(2px);
}

.mobile-category-dropdown__menu a.is-active {
  background: rgba(24, 218, 203, 0.14);
  color: #18dacb;
}

/* ========================================
   FASTLINKS SHORTCODE
======================================== */
.category-nav--shortcode {
  float: left;
  width: min(100%, 350px);
  margin: 6px 28px 22px 0;
  padding: 0;
  background: transparent !important;
}

.category-nav--shortcode > .container {
  max-width: none;
  padding: 0;
}

.category-nav--shortcode .category-nav__toggle {
  display: none !important;
}

.category-nav--shortcode .category-nav__inner {
  display: block !important;
  width: 100%;
  padding: 24px 26px;
  border-radius: 4px;
  background: #0f1b30 !important;
  border: 1px solid rgba(24, 218, 203, 0.12);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
  overflow: visible !important;
}

.category-nav--shortcode .category-nav__list {
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: fastlinks;
}

.category-nav--shortcode .category-nav__list li {
  margin: 0 !important;
  counter-increment: fastlinks;
}

.category-nav--shortcode .category-nav__list a {
  display: block !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.category-nav--shortcode .category-nav__list a::before {
  content: counter(fastlinks) '. ';
  color: #18dacb;
}

.category-nav--shortcode .category-nav__list a:hover,
.category-nav--shortcode .category-nav__list a.is-active {
  color: #18dacb !important;
  /* transform: translateX(2px); */
}

.category-nav--shortcode + * {
  margin-top: 0 !important;
}

@media (max-width: 767px) {
  .category-nav--shortcode {
    float: none;
    width: 100%;
    margin: 22px 0;
  }

  .category-nav--shortcode .category-nav__inner {
    padding: 20px;
  }
}

.category-nav--shortcode.category-nav--left {
  float: left;
  margin: 6px 28px 22px 0;
}

.category-nav--shortcode.category-nav--right {
  float: right;
  margin: 6px 0 22px 28px;
}

.category-nav--shortcode.category-nav--center {
  float: none;
  width: min(100%, 360px);
  margin: 28px auto;
}

.category-nav--shortcode.category-nav--full {
  float: none;
  width: 100%;
  margin: 28px 0;
}

.fastlinks-clear {
  clear: both;
}

@media (max-width: 767px) {
  .category-nav--shortcode,
  .category-nav--shortcode.category-nav--left,
  .category-nav--shortcode.category-nav--right,
  .category-nav--shortcode.category-nav--center,
  .category-nav--shortcode.category-nav--full {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 24px 0 !important;
    clear: both;
  }

  .category-nav--shortcode .category-nav__inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px !important;
  }

  .category-nav--shortcode .category-nav__list a {
    font-size: 12px !important;
    line-height: 1.35;
  }
}

/* ========================================
   ARCHIVE / BOOKMAKERS PAGE
======================================== */
.archive-hero {
  position: relative;
  padding: 54px 0 42px;
}

.archive-hero__content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.archive-hero h1 {
  margin: 0 0 16px;
  font-size: 52px;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.archive-hero p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
}

.archive-hero__stats {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.hero-stat-card {
  min-width: 160px;
  padding: 24px 22px;
  border: 1px solid #dbe5f0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(8px);
}

.hero-stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 34px;
  line-height: 1;
  color: #0f172a;
}

.hero-stat-card span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #64748b;
}

.bookmakers-section,
.archive-list {
  padding: 0 0 70px;
}

.bookmaker-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bookmaker-card {
  overflow: hidden;
}

.bookmaker-card__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: center;
  padding: 22px;
}

.bookmaker-card__main {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-width: 0;
}

.bookmaker-card__logo-wrap {
  position: relative;
  flex: 0 0 118px;
}

.bookmaker-card__badge {
  position: absolute;
  top: -10px;
  left: -6px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
}

.bookmaker-card__badge.is-hot {
  background: linear-gradient(180deg, #ff7a3d 0%, #ff5a1f 100%);
}
.bookmaker-card__badge.is-top {
  background: linear-gradient(180deg, #24d3c5 0%, #14b8a6 100%);
}
.bookmaker-card__badge.is-new {
  background: linear-gradient(180deg, #4f46e5 0%, #3730a3 100%);
}
.bookmaker-card__badge.is-default {
  background: linear-gradient(180deg, #64748b 0%, #475569 100%);
}

.bookmaker-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #000000 0%, #1b2d4c 100%);
  overflow: hidden;
}

.bookmaker-card__logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
}

.bookmaker-card__logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.05;
  color: #ffffff;
  word-break: break-word;
}

.bookmaker-card__content,
.bookmaker-card__meta,
.bookmaker-card__cta-wrap {
  min-width: 0;
}

.bookmaker-card__title {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.bookmaker-card__title a {
  color: inherit;
}

.bookmaker-card__text {
  margin: 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.55;
  color: #526174;
}

.bookmaker-card__meta {
  display: grid;
  grid-template-columns: 86px minmax(190px, 1fr);
  gap: 20px;
  align-items: center;
}

.bookmaker-card__rating {
  text-align: center;
}

.bookmaker-card__rating-value {
  margin-bottom: 6px;
  font-size: 46px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #0f172a;
}

.bookmaker-card__rating.is-empty,
.bookmaker-card__rating-placeholder {
  min-height: 96px;
}

.bookmaker-card__stars {
  margin-bottom: 6px;
  display: flex;
  justify-content: center;
}

.bookmaker-card__review-link {
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}

.bookmaker-card__review-link:hover,
.bookmaker-card__visit-link:hover {
  color: #0f172a;
}

.bookmaker-card__cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 190px;
}

.bookmaker-card__code {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 10px 0 14px;
  border-radius: 16px;
  border: 1px dashed #cbd5e1;
  background: #f8fbfd;
}

.bookmaker-card__code-label {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}

.bookmaker-card__code-value {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bookmaker-card__copy {
  flex: 0 0 auto;
  min-width: 74px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #d6dee8;
  border-radius: 13px;
  background: #ffffff;
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.bookmaker-card__copy:hover {
  border-color: #b9c7d8;
  background: #f8fbfd;
}

.bookmaker-card__copy.is-copied {
  background: #dcfce7;
  border-color: #86efac;
  color: #166534;
}

.bookmaker-card__button {
  width: 100%;
  min-height: 46px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 800;
}

.bookmaker-card__visit-link {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}

.bookmaker-card__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 12px 22px 14px;
  border-top: 1px solid #edf2f7;
  background: #fbfdff;
}

.bookmaker-card__bottom span {
  position: relative;
  padding-left: 15px;
  font-size: 12px;
  line-height: 1.4;
  color: #64748b;
}

.bookmaker-card__bottom span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #18dacb;
  transform: translateY(-50%);
}

.bookmaker-cards {
  max-width: 980px;
  margin: 0 auto;
}

/*.bookmaker-card {*/
/*  max-width: 980px;*/
/*  margin: 0 auto;*/
/*}*/

/* ========================================
   ARCHIVE BOTTOM / SIMPLE PAGE / SHARED GUTENBERG
======================================== */
.archive-bottom {
  padding: 10px 0 70px;
}

.archive-bottom__box,
.simple-page__content-box {
  padding: 32px;
  margin-top: 25px;
}

.simple-page__hero-content {
  max-width: 860px;
}

.simple-page__hero-content h1 {
  margin: 0 0 14px;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.simple-page__hero-content p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
}

.simple-page__content {
  padding: 0 0 70px;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) {
  font-size: 16px;
  line-height: 1.75;
  margin-top: 50px;
}

.simple-page__editor {
  margin-top: 0;
}

.archive-bottom__content {
  margin-top: 0;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) > * + * {
  margin-top: 28px;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.1;
  color: #0f172a;
  letter-spacing: -0.03em;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
  color: #0f172a;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) p:last-child {
  margin-bottom: 0;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) ul {
  margin: 0 0 18px 22px;
  padding-left: 22px;
  list-style: disc;
  color: #475569;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) ol {
  margin: 0 0 18px 22px;
  padding-left: 22px;
  list-style: decimal;
  color: #475569;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) li {
  margin-bottom: 10px;
  line-height: 1.7;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-image img,
:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) img {
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}
.wp-block-image {
  display: flex;
  justify-content: center;
}

/* Gutenberg columns / pros-cons */
:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-columns.is-layout-flex {
  gap: 24px;
  margin: 24px 0 32px;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-column {
  background: #ffffff;
  border: 1px solid #dbe3ee;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-column h3 {
  margin: -24px -24px 18px;
  padding: 16px 20px;
  font-size: 18px;
  border-radius: 22px 22px 0 0;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-column:first-child h3 {
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.18), rgba(20, 184, 166, 0.04));
  color: #0f766e;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-column:last-child h3 {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.12), rgba(239, 68, 68, 0.04));
  color: #dc2626;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-column li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: #0f172a;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-column li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  font-family: Arial, sans-serif;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-column:first-child li::before {
  content: '✓';
  background: rgba(20, 184, 166, 0.14);
  color: #14b8a6;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-column:last-child li::before {
  content: '✕';
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

/* ========================================
   CONTENT TABLES / GUTENBERG / SHORTCODE
======================================== */
:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-table,
:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .comparison-table-wrap,
:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .content-table-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 30px 0 40px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #dbe3ee !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05) !important;
}

/* Any table inside content should be styled, even without .wp-block-table */
:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) table {
  width: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  margin: 30px 0 40px !important;
  border: 1px solid #dbe3ee !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  table-layout: auto !important;
  background: #ffffff !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05) !important;
}

/* If table is already inside a wrapper, wrapper owns spacing/border/shadow */
:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-table table,
:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .comparison-table-wrap table,
:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .content-table-wrap table {
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) table th,
:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) table td {
  min-width: 0 !important;
  padding: 18px 20px !important;
  border: 0 !important;
  border-bottom: 1px solid #edf2f7 !important;
  color: #334155 !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  vertical-align: middle !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) table thead th {
  background: #eef4fb !important;
  color: #0f172a !important;
  font-weight: 700 !important;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) table tbody td,
:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) table tbody td:first-child {
  font-weight: 400 !important;
  color: #334155 !important;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) table tbody tr:nth-child(even) td {
  background: #fbfdff !important;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) table tbody tr:hover td {
  background: #f1f7ff !important;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) table tbody tr:last-child td {
  border-bottom: 0 !important;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) table a {
  color: #0f766e;
  font-weight: 700;
  text-decoration: none;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) table a:hover {
  color: #14b8a6;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-table::-webkit-scrollbar,
:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .comparison-table-wrap::-webkit-scrollbar,
:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .content-table-wrap::-webkit-scrollbar {
  height: 6px;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-table::-webkit-scrollbar-thumb,
:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .comparison-table-wrap::-webkit-scrollbar-thumb,
:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .content-table-wrap::-webkit-scrollbar-thumb {
  background: rgba(33, 211, 197, 0.7);
  border-radius: 999px;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-table::-webkit-scrollbar-track,
:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .comparison-table-wrap::-webkit-scrollbar-track,
:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .content-table-wrap::-webkit-scrollbar-track {
  background: rgba(15, 27, 48, 0.08);
  border-radius: 999px;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) {
  max-width: 100%;
  overflow-x: visible;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) figure,
:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-image,
:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) img {
  max-width: 100%;
}

:where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) img {
  height: auto;
}

/* ========================================
   FAQ
======================================== */
.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 40px;
}

.faq__title {
  margin: 0 0 6px;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  color: #071a44;
}

.faq .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #dbe3ee;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.faq-item.is-open {
  border-color: #22d3c5;
  box-shadow: 0 14px 30px rgba(34, 211, 197, 0.15);
}

.faq-item__toggle {
  width: 100%;
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 20px 58px 20px 22px;
  border: 0;
  background: transparent;
  text-align: left;
  display: block;
}

.faq-item__question {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #0f172a;
}

.faq-item__icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #eef4fb;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: #0f172a;
  transform: translate(-50%, -50%);
}

.faq-item__icon::before {
  width: 12px;
  height: 2px;
}

.faq-item__icon::after {
  width: 2px;
  height: 12px;
}

.faq-item.is-open .faq-item__icon {
  background: #22d3c5;
}

.faq-item.is-open .faq-item__icon::after {
  display: none;
}

.faq-item__content {
  display: none;
  padding: 0 22px 22px;
}

.faq-item.is-open .faq-item__content {
  display: block;
}

.faq-item__answer {
  margin: 0;
  color: #475569;
  line-height: 1.8;
  font-size: 16px;
}

.faq-item__answer p {
  margin: 0;
}

/* ========================================
   PROMO BOX
======================================== */
.bookmaker-content .promo-box {
  position: relative;
  border: 1px solid #dbe3ee;
  border-radius: 22px;
  background: #fff;
  padding: 24px;
  margin: 28px 0 34px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  text-align: center;
}

.bookmaker-content .promo-title {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.bookmaker-content .promo-code-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-bottom: 8px;
}

.bookmaker-content .promo-code {
  display: inline-block;
  min-width: 220px;
  padding: 14px 20px;
  border: 2px dashed #14cfc0;
  border-radius: 14px;
  background: #f8fffe;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #0f172a;
  margin-bottom: 16px;
}

.bookmaker-content .promo-btn {
  display: inline-block;
  background: #22d3c5;
  color: #0f172a;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
}

/* ========================================
   SINGLE BOOKMAKER
======================================== */
.bookmaker-single {
  background: #f4f7fb;
}

.bookmaker-hero__title {
  font-size: 68px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

@media (max-width: 1024px) {
  .bookmaker-hero__title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .bookmaker-hero__title {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .bookmaker-hero__title {
    font-size: 28px;
  }
}

.bookmaker-hero {
  padding: 22px 0 42px;
  background: linear-gradient(180deg, #03070d 0%, #05080f 100%);
  color: #ffffff;
}

.bookmaker-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 380px;
  gap: 40px;
  align-items: center;
}

.bookmaker-hero__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.bookmaker-hero__logo,
.sidebar-cta__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #090d14;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.bookmaker-hero__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 124px;
  height: 124px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.bookmaker-hero__logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

.bookmaker-hero__rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bookmaker-hero__rating-value {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
}

.hero-offer-card {
  text-align: center;
}

.hero-offer-card h2 {
  margin: 0 0 8px;
  font-size: 38px;
  line-height: 1.05;
  color: #ffffff;
}

.hero-offer-card__code {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
}

.hero-offer-card p {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.hero-offer-card__note {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.bookmaker-body__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.bookmaker-section {
  margin-bottom: 24px;
}

.bookmaker-section:last-child {
  margin-bottom: 0;
  padding: 50px;
}

.bookmaker-section h2,
.sidebar-info h3 {
  margin: 0 0 20px;
  font-size: 34px;
  line-height: 1.1;
  color: #0f172a;
}

.bookmaker-verdict-text p,
.bookmaker-section__content p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.pros-cons__col {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
}

.pros-cons__head {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 800;
}

.pros-cons__col--pros .pros-cons__head {
  background: #ddf5f0;
  color: #0f766e;
}

.pros-cons__col--cons .pros-cons__head {
  background: #fde7e7;
  color: #dc2626;
}

.pros-cons__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 16px 4px;
}

.pros-cons__list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
}

.pros-cons__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #d8f3e6;
  color: #0f766e;
  font-size: 12px;
  font-weight: 800;
}

.pros-cons__list--cons li::before {
  content: '×';
  background: #fde2e2;
  color: #dc2626;
}

.pros-cons-shortcode {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 34px;
}

.pros-cons-shortcode__col {
  overflow: hidden;
  border: 1px solid #dbe3ee;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.pros-cons-shortcode__head {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-size: 16px;
  font-weight: 800;
}

.pros-cons-shortcode__col--pros .pros-cons-shortcode__head {
  background: #ddf5f0;
  color: #0f766e;
}

.pros-cons-shortcode__col--cons .pros-cons-shortcode__head {
  background: #fde7e7;
  color: #dc2626;
}

.pros-cons-shortcode__list {
  margin: 0 !important;
  padding: 18px 18px 6px !important;
  list-style: none !important;
}

.pros-cons-shortcode__list li {
  position: relative;
  margin: 0 0 14px !important;
  padding-left: 30px;
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
}

.pros-cons-shortcode__list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.pros-cons-shortcode__col--pros li::before {
  content: '✓';
  background: #d8f3e6;
  color: #0f766e;
}

.pros-cons-shortcode__col--cons li::before {
  content: '×';
  background: #fde2e2;
  color: #dc2626;
}

@media (max-width: 767px) {
  .pros-cons-shortcode {
    grid-template-columns: 1fr;
  }
}

.signup-code-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  margin: 20px 0;
  border-radius: 18px;
  border: 1px dashed #cbd5e1;
  background: #f8fbfd;
}

.signup-code-box__left {
  flex: 1 1 auto;
  min-width: 0;
}

.signup-code-box__label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}

.signup-code-box__value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-points {
  display: grid;
  gap: 16px;
}

.feature-point {
  padding: 18px 20px;
  border-radius: 18px;
  background: #f8fbfd;
  border: 1px solid #e6edf5;
}

.feature-point h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #0f172a;
}

.feature-point p {
  margin: 0;
}

.sidebar-info {
  margin-top: 50px;
  margin-bottom: 22px;
  padding: 20px;
}

.sidebar-info__group {
  margin-bottom: 18px;
}

.sidebar-info__group:last-child {
  margin-bottom: 0;
}

.sidebar-info__label {
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
}

.sidebar-info__text {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

.sidebar-info__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.info-chip {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid #dbe4ee;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.sidebar-cta {
  position: sticky;
  top: 145px;
  padding: 26px 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #263b5e 0%, #213551 100%);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.16);
  text-align: center;
  color: #ffffff;
}

.sidebar-cta__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.sidebar-cta__logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.sidebar-cta__title {
  margin-bottom: 8px;
  font-size: 30px;
  font-weight: 800;
}

.sidebar-cta__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}

.sidebar-cta__rating span {
  font-size: 26px;
  font-weight: 800;
}

.sidebar-cta__subtitle {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.sidebar-cta__code {
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.sidebar-cta__note {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   LEGACY SECTIONS KEPT FOR REUSE
======================================== */
.codes-table {
  background: #f4f7fb;
}

.codes-table .section-head {
  margin-bottom: 24px;
}

.codes-table .section-head h2 {
  margin-bottom: 10px;
}

.codes-table .section-head p {
  max-width: 720px;
  color: #526174;
  line-height: 1.7;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
}

.codes-table__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: #ffffff;
}

.codes-table__table thead {
  background: #2f3e57;
  color: #ffffff;
}

.codes-table__table th,
.codes-table__table td {
  padding: 16px 18px;
  font-size: 14px;
  text-align: left;
}

.codes-table__table th {
  font-weight: 700;
}

.codes-table__table td {
  color: #334155;
  border-bottom: 1px solid #e5edf6;
}

.codes-table__table tbody tr:nth-child(even) {
  background: #f8fbfd;
}

.codes-table__table tbody tr:hover {
  background: #eef6ff;
}

.codes-table__table td strong {
  font-weight: 800;
  color: #0f172a;
}

.text-media__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 50px 0;
}

.text-media__content h2 {
  margin-bottom: 16px;
}

.text-media__content p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
}

.text-media__content h3 {
  margin: 20px 0 12px;
  font-size: 20px;
  color: #0f172a;
}

.text-media__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.text-media__list li {
  list-style: disc;
  color: #334155;
}

.text-media__media img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.review-showcase__card {
  padding: 28px;
}

.review-showcase__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.review-showcase__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.review-showcase__rank {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #eef2f7;
  color: #0f172a;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.review-showcase__logo {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #5b35d5 0%, #7c4dff 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  flex-shrink: 0;
}

.review-showcase__heading h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  color: #0f172a;
}

.review-showcase__score {
  flex-shrink: 0;
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.04em;
}

.review-showcase__gallery,
.review-showcase__content,
.review-showcase__proscons {
  margin-bottom: 26px;
}

.review-showcase__image {
  border-radius: 22px;
  overflow: hidden;
  background: #f4f7fb;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.review-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-showcase__content p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.8;
  color: #334155;
}

.review-showcase__proscons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.review-showcase__pros h3,
.review-showcase__cons h3 {
  margin: 0 0 14px;
  font-size: 20px;
  color: #0f172a;
}

.review-showcase__pros ul,
.review-showcase__cons ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-showcase__pros li,
.review-showcase__cons li {
  position: relative;
  padding-left: 34px;
  font-size: 17px;
  line-height: 1.7;
  color: #334155;
}

.review-showcase__pros li::before,
.review-showcase__cons li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.review-showcase__pros li::before {
  content: '✓';
  background: #dcfce7;
  color: #16a34a;
}

.review-showcase__cons li::before {
  content: '×';
  background: #fee2e2;
  color: #dc2626;
}

.review-showcase__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.faq-section {
  background: #f4f7fb;
  padding-top: 50px;
}

.cta-banner__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  background: linear-gradient(135deg, #15263f 0%, #1c2e4d 100%);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
  overflow: hidden;
  position: relative;
  color: #ffffff;
}

.cta-banner__box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(24, 218, 203, 0.08);
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta-banner__content h2 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.cta-banner__content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.cta-banner__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
  margin-top: 30px;
  background: #0f172a;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 40px;
  padding: 52px 0 34px;
}

.site-logo--footer .site-logo__text {
  font-size: 26px;
}

.site-footer__brand p {
  max-width: 420px;
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__nav-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, max-content));
  justify-content: center;
  gap: 48px;
}

.footer-nav h3 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover {
  color: #18dacb;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.56);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;
  padding: 0;

  border: 0;
  border-radius: 16px;

  background: #11263b;
  color: #ffffff;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #16324d;
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1100px) {
  .site-nav,
  .site-header__actions {
    display: none;
  }

  .burger {
    display: block;
  }

  .archive-hero__content,
  .bookmaker-hero__grid,
  .bookmaker-body__grid,
  .site-footer__top {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .bookmaker-card__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bookmaker-card__main {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
  }

  .bookmaker-card__meta {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
  }

  .bookmaker-card__rating,
  .bookmaker-card__visit-link {
    text-align: left;
  }

  .bookmaker-card__stars {
    justify-content: flex-start;
  }

  .sidebar-cta {
    position: static;
  }
}

@media (max-width: 900px) {
  .site-header__bottom .container {
    padding-left: 0;
    padding-right: 0;
  }

  .site-header__bottom {
    display: block;
  }

  .mobile-category-dropdown {
    display: block;
  }

  .cta-banner__box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .cta-banner__actions {
    width: 100%;
    min-width: 0;
  }

  .cta-banner__actions .btn,
  .cta-banner__actions .btn-cta-secondary {
    width: 100%;
  }

  .review-showcase__gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .bookmaker-card__top {
    padding: 22px;
    gap: 20px;
  }

  .bookmaker-card__main {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }

  .bookmaker-card__logo-wrap {
    width: 120px;
    min-width: 120px;
  }

  /*.bookmaker-card__logo {*/
  /*  width: 120px;*/
  /*  height: 84px;*/
  /*  padding: 12px;*/
  /*  border-radius: 18px;*/
  /*}*/

  .bookmaker-card__meta {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bookmaker-card__cta-wrap,
  .bookmaker-card__code,
  .bookmaker-card__button {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }

  .site-header__top-inner {
    min-height: 68px;
  }

  .site-logo__text {
    font-size: 22px;
  }

  .archive-hero,
  .simple-page__hero {
    padding: 38px 0 26px;
  }

  .archive-hero h1,
  .simple-page__hero-content h1 {
    font-size: 36px;
  }

  .archive-hero p,
  .simple-page__hero-content p {
    font-size: 16px;
  }

  .archive-hero__stats {
    width: 100%;
    flex-direction: column;
  }

  .hero-stat-card {
    width: 100%;
  }

  .section-head h2,
  :where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) h2,
  .bookmaker-section h2,
  .sidebar-info h3,
  .cta-banner__content h2 {
    font-size: 28px;
  }

  :where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) h3,
  .feature-point h3,
  .review-showcase__pros h3,
  .review-showcase__cons h3 {
    font-size: 20px;
  }

  .archive-bottom__box,
  .simple-page__content-box,
  .review-showcase__card,
  .cta-banner__box {
    padding: 22px;
    border-radius: 22px;
  }

  .bookmaker-card {
    border-radius: 22px;
  }

  .bookmaker-card__top {
    padding: 18px;
    gap: 18px;
  }

  .bookmaker-card__main {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bookmaker-card__logo-wrap {
    width: 110px;
    min-width: 110px;
  }

  /*.bookmaker-card__logo {*/
  /*  width: 110px;*/
  /*  height: 78px;*/
  /*}*/

  .bookmaker-card__badge {
    top: -8px;
    left: -6px;
    min-height: 28px;
    padding: 5px 10px;
    font-size: 12px;
  }

  .bookmaker-card__title {
    font-size: 22px;
  }

  .bookmaker-card__text,
  :where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) p,
  .review-showcase__content p,
  .cta-banner__content p {
    font-size: 15px;
  }

  .bookmaker-card__rating {
    text-align: left;
  }

  .bookmaker-card__rating-value {
    font-size: 38px;
  }

  .bookmaker-card__stars {
    justify-content: flex-start;
  }

  .bookmaker-card__code {
    min-height: 52px;
    padding: 0 10px 0 14px;
    gap: 10px;
    border-radius: 16px;
  }

  .bookmaker-card__copy {
    min-width: 72px;
    height: 36px;
    border-radius: 12px;
    font-size: 12px;
  }

  .bookmaker-card__button {
    min-height: 48px;
    border-radius: 14px;
    font-size: 15px;
  }

  .bookmaker-card__visit-link {
    text-align: left;
    font-size: 13px;
  }

  .bookmaker-card__bottom {
    padding: 12px 18px 16px;
    gap: 8px 16px;
  }

  .bookmaker-card__bottom span {
    font-size: 12px;
    padding-left: 14px;
  }

  .review-showcase__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .review-showcase__heading h2 {
    font-size: 24px;
  }

  .review-showcase__score,
  .bookmaker-hero__info h1 {
    font-size: 42px;
  }

  .review-showcase__actions,
  .site-footer__nav-wrap,
  .pros-cons {
    grid-template-columns: 1fr;
  }

  .faq-item summary,
  :where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-details summary {
    padding: 17px 52px 17px 18px;
    font-size: 16px;
  }

  .faq-item summary::after,
  :where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-details summary::after {
    right: 14px;
    width: 28px;
    height: 28px;
  }

  .faq-item__content,
  :where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-details > :not(summary) {
    padding: 0 18px 18px;
  }

  :where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-table td,
  :where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-table th,
  :where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) table td,
  :where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) table th {
    padding: 12px 14px !important;
    font-size: 14px !important;
  }

  :where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) .wp-block-table table,
  :where(.bookmaker-content, .archive-bottom__content, .simple-page__editor) table.has-fixed-layout {
    min-width: 560px !important;
  }

  .hero-offer-card h2,
  .sidebar-cta__title {
    font-size: 28px;
  }

  .hero-offer-card__code,
  .signup-code-box__value {
    font-size: 22px;
  }

  .signup-code-box {
    flex-direction: column;
    align-items: stretch;
  }

  .review-showcase__gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .bookmaker-card__top {
    padding: 16px;
  }

  .bookmaker-card__logo-wrap {
    width: 96px;
    min-width: 96px;
  }

  .bookmaker-card__logo {
    width: 96px;
    height: 72px;
  }

  .bookmaker-card__title {
    font-size: 20px;
  }

  .bookmaker-card__rating-value {
    font-size: 34px;
  }

  .bookmaker-card__code {
    flex-wrap: wrap;
    align-items: center;
    padding: 12px;
  }

  .bookmaker-card__code-label {
    width: 100%;
  }

  .bookmaker-card__code-value {
    flex: 1 1 auto;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    word-break: break-word;
  }

  .bookmaker-card__copy {
    width: auto;
    min-width: 84px;
  }
}

@media (max-width: 767px) {
  .bookmaker-single .bookmaker-body__grid {
    display: block;
  }

  .bookmaker-single .bookmaker-content,
  .bookmaker-single .bookmaker-section,
  .bookmaker-single .card-box {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .bookmaker-single .bookmaker-section:last-child {
    padding: 22px;
  }

  .bookmaker-single .category-nav--shortcode,
  .bookmaker-single .category-nav--shortcode.category-nav--left,
  .bookmaker-single .category-nav--shortcode.category-nav--right,
  .bookmaker-single .category-nav--shortcode.category-nav--center,
  .bookmaker-single .category-nav--shortcode.category-nav--full {
    float: none !important;
    clear: both !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 22px 0 !important;
  }

  .bookmaker-single .category-nav--shortcode .category-nav__inner {
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px !important;
  }

  .bookmaker-single .category-nav--shortcode .category-nav__list a {
    font-size: 12px !important;
    line-height: 1.35;
    word-break: break-word;
  }

  .bookmaker-single .bookmaker-hero {
    padding: 20px 0 28px;
  }

  .bookmaker-single .bookmaker-hero__brand {
    align-items: center;
  }

  .bookmaker-single .bookmaker-hero__logo {
    width: 82px;
    height: 82px;
    border-radius: 18px;
  }

  .bookmaker-single .hero-offer-card h2 {
    font-size: 22px;
  }

  .bookmaker-single .sidebar-info {
    margin-top: 24px;
  }
}

@media (max-width: 1024px) {
  .bookmaker-single .bookmaker-body__grid {
    grid-template-columns: 1fr !important;
  }

  .bookmaker-single .bookmaker-sidebar {
    width: 100%;
    max-width: 100%;
  }

  .bookmaker-single .sidebar-cta {
    position: static !important;
    width: 100%;
    max-width: 100%;
    margin-top: 24px;
  }
}

@media (max-width: 1024px) {
  .bookmaker-single .wp-block-table,
  .bookmaker-single .comparison-table-wrap,
  .bookmaker-single .content-table-wrap {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    display: block !important;
  }

  .bookmaker-single .wp-block-table table,
  .bookmaker-single .comparison-table-wrap table,
  .bookmaker-single .content-table-wrap table {
    width: max-content !important;
    min-width: 640px !important;
    max-width: none !important;
  }
}

@media (max-width: 767px) {
  .bookmaker-single .wp-block-table table,
  .bookmaker-single .comparison-table-wrap table,
  .bookmaker-single .content-table-wrap table {
    min-width: 560px !important;
  }
}

/* Single bookmaker table overflow fix */
.bookmaker-single .bookmaker-section {
  min-width: 0;
  overflow: hidden;
}

.bookmaker-single .bookmaker-content {
  min-width: 0;
  max-width: 100%;
}

.bookmaker-single figure.wp-block-table {
  width: 100% !important;
  max-width: 100% !important;
  margin: 28px 0 36px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  display: block !important;
  -webkit-overflow-scrolling: touch;
}

.bookmaker-single figure.wp-block-table table {
  /* width: max-content !important; */
  min-width: 640px !important;
  max-width: none !important;
  margin: 0 !important;
}

@media (max-width: 767px) {
  .bookmaker-single figure.wp-block-table table {
    min-width: 560px !important;
  }
}
