:root {
  --bg-0: #e8f1f4;
  --bg-1: #d4e8ee;
  --ink: #0f1c24;
  --ink-soft: #3d5563;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-solid: #ffffff;
  --line: rgba(15, 28, 36, 0.1);
  --accent: #0b7a75;
  --accent-deep: #065a56;
  --accent-soft: rgba(11, 122, 117, 0.12);
  --shadow: 0 18px 40px rgba(15, 28, 36, 0.08);
  --radius: 18px;
  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--bg-0);
  background-image:
    linear-gradient(165deg, rgba(232, 241, 244, 0.92) 0%, rgba(212, 232, 238, 0.88) 100%),
    url("../images/bg-pattern.png");
  background-size: auto, 480px;
  background-attachment: fixed;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(232, 241, 244, 0.78);
  border-bottom: 1px solid var(--line);
}

.site-header__inner,
.wrap {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  color: var(--ink);
  transition: transform 0.2s ease;
}

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

.logo__mark {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.7rem;
  color: #fff;
  background:
    linear-gradient(145deg, #0f9d96 0%, var(--accent-deep) 55%, #043f3c 100%);
  box-shadow:
    0 8px 18px rgba(11, 122, 117, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.logo__icon {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.logo__text span {
  color: var(--accent);
}

.logo span {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.65rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  opacity: 0.9;
}

.nav-link:hover .nav-icon,
.nav-item:hover > .nav-link .nav-icon {
  opacity: 1;
}

.nav-link:hover,
.nav-item:hover > .nav-link {
  color: #1e6fff;
  background: rgba(30, 111, 255, 0.08);
}

.nav-caret {
  font-size: 0.7rem;
  opacity: 0.75;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 230px;
  padding: 0.45rem;
  background: #fff;
  border: 1px solid rgba(15, 28, 36, 0.1);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(15, 28, 36, 0.12);
  display: none;
  z-index: 40;
}

.nav-dropdown--tall {
  min-width: 280px;
  max-height: min(70vh, 420px);
  overflow-y: auto;
}

.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nav-dropdown a {
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.nav-dropdown a:hover {
  background: rgba(30, 111, 255, 0.08);
  color: #1e6fff;
}

.nav-link--marks {
  color: var(--accent-deep);
}

.page-main {
  padding: 1.5rem 0 3rem;
}

.page-article h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.page-lead {
  margin: 0 0 1.5rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 46rem;
}

.page-article h2 {
  margin: 1.75rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.page-article > p {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  max-width: 46rem;
}

.page-cta-wrap {
  margin: 1.25rem 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.page-cta-wrap .rank-btn {
  display: inline-flex;
  width: auto;
  min-width: 180px;
}

.rank-btn--small {
  min-height: 34px;
  padding: 0.4rem 0.75rem;
  font-size: 0.78rem;
  min-width: 0;
  box-shadow: none;
}

.rank-btn--ghost {
  background: transparent;
  color: #1e6fff !important;
  border: 2px solid #1e6fff;
  box-shadow: none;
}

.rank-btn--ghost:hover {
  background: rgba(30, 111, 255, 0.08);
}

.ref-cta-panel p {
  margin-bottom: 0.75rem;
}

.brand-ref-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  gap: 0.55rem 0.85rem;
  align-items: center;
  list-style: none;
  margin: 0 0 0.65rem;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.brand-ref-row__name {
  font-weight: 700;
  color: #1e6fff;
}

.brand-ref-row__bonus {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--accent-deep);
}

ul.content-list:has(.brand-ref-row) {
  list-style: none;
  padding-left: 0;
}

@media (max-width: 640px) {
  .brand-ref-row {
    grid-template-columns: 1fr;
  }
}

.nav-link:hover {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: min(42vh, 380px);
  display: grid;
  align-items: start;
  padding: 0;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.hero--top {
  min-height: min(38vh, 340px);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(232, 241, 244, 0.35) 0%,
    rgba(232, 241, 244, 0.55) 40%,
    rgba(232, 241, 244, 0.92) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding: 1.35rem 0 1.75rem;
  animation: hero-rise 0.55s ease both;
}

.hero--compact {
  min-height: 0;
  align-items: center;
  margin-bottom: 1rem;
  background: transparent;
}

.hero--compact .hero__content {
  padding: 1.75rem 0 1.25rem;
  animation: hero-rise 0.55s ease both;
}

/* Top banners slider (unused on homepage, kept minimal) */
.top-banners {
  display: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(232, 241, 244, 0.15) 0%,
    rgba(232, 241, 244, 0.55) 45%,
    rgba(232, 241, 244, 0.92) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding: 4.5rem 0 2.5rem;
  animation: hero-rise 0.7s ease both;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero p {
  margin: 0;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  padding-bottom: 3rem;
}

/* Ranking list (homepage) */
.rank-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 3.5rem;
}

.rank-row {
  display: grid;
  grid-template-columns: 52px 132px minmax(150px, 0.95fr) minmax(280px, 1.35fr) 168px;
  gap: 0.85rem 1rem;
  align-items: center;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid rgba(15, 28, 36, 0.08);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(15, 28, 36, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 28, 36, 0.09);
}

.rank-row__rank {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.rank-star {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.18));
}

.rank-row__num {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.rank-row__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.rank-row__logo-wrap {
  position: relative;
  width: 100%;
  max-width: 124px;
  padding: 0.95rem 0.5rem 0.55rem;
  background: linear-gradient(160deg, #eef7fa, #e3f0f4);
  border-radius: 10px;
  border: 1px solid rgba(15, 28, 36, 0.06);
}

.rank-row__rating {
  position: absolute;
  top: -7px;
  left: -5px;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.18rem 0.45rem;
  background: #1e6fff;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(30, 111, 255, 0.35);
  z-index: 1;
}

.rank-row__logo {
  height: 40px;
  display: grid;
  place-items: center;
}

.rank-row__logo img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
}

.rank-row__name {
  font-size: 0.86rem;
  font-weight: 700;
  color: #1e6fff;
  text-align: center;
  line-height: 1.2;
}

.rank-row__bonus {
  text-align: left;
  min-width: 0;
}

.rank-bonus__main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem;
  line-height: 1.15;
}

.rank-bonus__percent {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}

.rank-bonus__amount {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #22c55e;
  line-height: 1.1;
}

.rank-bonus__spins {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
}

.rank-row__meta {
  min-width: 0;
}

.rank-row__rep {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #5b6b76;
}

.rank-check {
  display: inline-grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #e8eef2;
  color: #6b7c86;
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
}

.rank-row__facts {
  display: grid;
  grid-template-columns: 0.9fr 0.85fr 1.25fr;
  gap: 0.55rem;
}

.rank-row__facts > div + div {
  border-left: 1px solid rgba(15, 28, 36, 0.1);
  padding-left: 0.55rem;
}

.rank-fact__label {
  font-size: 0.72rem;
  color: #8a9aa4;
  margin-bottom: 0.15rem;
}

.rank-fact__value {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

.rank-row__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
}

.rank-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.55rem 0.75rem;
  background: #1e6fff;
  color: #fff !important;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(30, 111, 255, 0.28);
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.rank-btn:hover {
  background: #1557d6;
  transform: translateY(-1px);
}

.rank-btn__arrow {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: #1e6fff;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
}

.rank-review {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e6fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rank-review:hover {
  color: #1557d6;
}

/* Homepage content */
.content-block {
  padding: 0.5rem 0 2rem;
}

.section-banner {
  width: 100%;
  height: clamp(140px, 22vw, 220px);
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  margin-bottom: 1.15rem;
  box-shadow: 0 12px 28px rgba(15, 28, 36, 0.08);
}

.section-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-banner--compact {
  height: clamp(110px, 16vw, 160px);
  margin-bottom: 1rem;
}

.section-banner--page {
  height: clamp(160px, 24vw, 260px);
  margin: 0 0 1.25rem;
}

.content-block h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.content-block > p {
  margin: 0;
  max-width: 52rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.content-block--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
  padding-bottom: 2.25rem;
}

.content-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.content-list li + li {
  margin-top: 0.45rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 52rem;
}

.faq__item {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.15rem;
}

.faq__item h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
}

.faq__item p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.content-block--note {
  margin-bottom: 1.5rem;
  padding: 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.content-block--note h2 {
  font-size: 1.2rem;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.25rem 1.35rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 122, 117, 0.35);
  box-shadow: 0 22px 44px rgba(15, 28, 36, 0.12);
}

.brand-card__logo {
  width: 100%;
  height: 72px;
  display: grid;
  place-items: center;
}

.brand-card__logo img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
}

.brand-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-align: center;
}

.brand-card__bonus {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-deep);
  text-align: center;
  line-height: 1.35;
}

.brand-card__cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.bonus-list-lead {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.bonus-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  display: grid;
  gap: 1rem;
}

.bonus-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.bonus-offer--detailed {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1.15rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--panel) 88%, var(--accent) 4%);
  border-bottom: 1px solid var(--line);
}

.bonus-offer--detailed:last-child,
.bonus-offer:last-child {
  border-bottom-color: var(--line);
}

.bonus-offer--info {
  padding: 0.65rem 0.15rem;
  border: none;
  background: transparent;
}

.bonus-offer__type {
  margin: 0 0 0.35rem !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.bonus-offer__content {
  min-width: 0;
}

.bonus-offer__content h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.bonus-offer__summary {
  margin: 0 0 0.65rem !important;
  color: var(--ink);
  font-size: 0.95rem;
}

.bonus-offer__content p {
  margin: 0 0 0.65rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.bonus-offer__content p:last-child {
  margin-bottom: 0;
}

.bonus-offer__cta {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 0.15rem;
}

.bonus-offer__cta .rank-btn {
  white-space: nowrap;
}

.bonus-offer__text {
  flex: 1;
  min-width: 0;
  line-height: 1.45;
}

.bonus-offer--info .bonus-offer__text {
  color: var(--ink-soft);
}

.bonus-list strong {
  color: var(--ink);
}

@media (max-width: 720px) {
  .bonus-offer,
  .bonus-offer--detailed {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .bonus-offer .rank-btn,
  .bonus-offer__cta {
    align-self: flex-start;
    justify-content: flex-start;
  }
}

.howto-panel > p {
  margin-bottom: 1rem;
}

.howto-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.howto-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.howto-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.howto-step__num {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.howto-step__body h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  color: var(--ink);
}

.howto-step__body p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
  font-size: 0.95rem;
}

.howto-tip {
  margin-top: 1.1rem !important;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.howto-tip strong {
  color: var(--ink);
}

.review-panel p + p {
  margin-top: 0.85rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 0 0 2rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer__visual {
  width: 100%;
  height: 140px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.site-footer__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
}

.site-footer .wrap {
  padding-top: 0.25rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-bottom: 0.5rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}

.footer-nav a {
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.88rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* Brand page */
.brand-page {
  padding: 2.5rem 0 4rem;
}

.brand-banner {
  width: 100%;
  height: clamp(160px, 28vw, 260px);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.brand-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--accent);
}

.brand-hero {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.brand-hero__logo {
  width: min(280px, 100%);
  height: 100px;
  display: grid;
  place-items: center;
  padding: 0.75rem 1rem;
  background: var(--accent-soft);
  border-radius: 14px;
}

.brand-hero__logo img {
  max-height: 72px;
  width: auto;
  object-fit: contain;
}

.brand-hero h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.brand-hero__lead {
  margin: 0;
  color: var(--ink-soft);
  max-width: 40rem;
}

.brand-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.85rem;
  font-weight: 700;
}

.review-panel {
  padding: 1.75rem 2rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-panel h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.review-panel p {
  margin: 0;
  color: var(--ink-soft);
}

.review-lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.review-lists h3 {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  font-family: var(--font-display);
}

.review-lists ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.review-lists li + li {
  margin-top: 0.35rem;
}

.empty-note {
  font-style: italic;
}

@media (max-width: 900px) {
  .site-header__inner {
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    gap: 0.15rem;
  }

  .nav-link {
    font-size: 0.82rem;
    padding: 0.4rem 0.5rem;
  }

  .nav-dropdown {
    position: static;
    display: none;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    margin-top: 0.15rem;
  }

  .nav-item:hover > .nav-dropdown,
  .nav-item:focus-within > .nav-dropdown {
    display: flex;
  }
}

@media (max-width: 1100px) {
  .rank-row {
    grid-template-columns: 48px 120px 1fr 160px;
    grid-template-areas:
      "rank brand bonus cta"
      "rank brand meta cta";
    gap: 0.75rem 0.85rem;
  }

  .rank-row__rank { grid-area: rank; }
  .rank-row__brand { grid-area: brand; }
  .rank-row__bonus { grid-area: bonus; align-self: end; }
  .rank-row__meta { grid-area: meta; align-self: start; }
  .rank-row__cta { grid-area: cta; align-self: center; }
}

@media (max-width: 760px) {
  .rank-row {
    grid-template-columns: 44px 1fr;
    grid-template-areas:
      "rank brand"
      "bonus bonus"
      "meta meta"
      "cta cta";
    gap: 0.75rem;
    padding: 0.9rem;
  }

  .rank-row__rank { grid-area: rank; }
  .rank-row__brand { grid-area: brand; align-items: flex-start; }
  .rank-row__bonus { grid-area: bonus; }
  .rank-row__meta { grid-area: meta; }
  .rank-row__cta { grid-area: cta; max-width: none; }

  .rank-row__facts {
    grid-template-columns: 1fr;
  }

  .rank-row__facts > div + div {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(15, 28, 36, 0.08);
    padding-top: 0.45rem;
  }
}

@media (max-width: 640px) {
  .site-header__inner,
  .wrap,
  .hero__content {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .hero {
    min-height: min(32vh, 280px);
  }

  .hero__content {
    padding-top: 1.1rem;
  }

  .brand-hero,
  .review-panel {
    padding: 1.35rem;
  }

  .site-footer__visual {
    height: 100px;
  }

  .content-block--split {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .pay-icons {
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  }

  .slot-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

/* Payment icons + slot gallery (img/pay, img/slots) */
.media-block {
  margin: 1.5rem 0 0.5rem;
}

.media-block h2 {
  margin-bottom: 0.85rem;
}

.pay-icons,
.slot-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.pay-icons {
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
}

.slot-grid {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.pay-icon,
.slot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 0.5rem;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
}

.pay-icon img {
  width: 72px;
  height: 48px;
  object-fit: contain;
}

.slot-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.pay-icon span,
.slot-card span {
  font-size: 0.72rem;
  line-height: 1.25;
  color: var(--ink-soft);
  font-weight: 600;
}

.review-panel .media-block:first-child {
  margin-top: 0;
}

.review-panel .media-block + .media-block {
  margin-top: 1.25rem;
}
