:root {
  --bg: #0b1020;
  --panel: #121a2f;
  --panel-2: #182340;
  --text: #e9edf7;
  --muted: #b7c0d8;
  --accent: #4f8cff;
  --accent-2: #23d5ab;
  --danger: #ff5f7a;
  --warn: #ffbc42;
  --contents-tab-active: #ea7928;
  --border: #2a365e;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
html, body { margin: 0; padding: 0; min-height: 100%; }
body.site {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.1px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

body.site::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--site-bg-image);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: blur(18px) saturate(0.85);
  opacity: 0.35;
  transform: scale(1.1);
  transform-origin: center;
  z-index: -1;
  pointer-events: none;
}

.site-shell {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
}

.site-shell > .site-footer {
  margin-top: auto;
  padding-top: 32px;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(11, 16, 32, 0.78);
  border-bottom: 1px solid rgba(233, 237, 247, 0.09);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.topbar-cta {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.signin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2ec773, #1fa855);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 18px rgba(35, 213, 171, 0.25);
  transition: filter 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
}

.signin-btn:hover,
.signin-btn:focus-visible {
  filter: brightness(1.07);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(35, 213, 171, 0.35);
}

.signin-btn--disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
  box-shadow: none;
}

@media (max-width: 640px) {
  .topbar-inner {
    gap: 10px;
  }
  .signin-btn {
    padding: 7px 14px;
    font-size: 0.85rem;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.3px;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.brand a {
  color: var(--text);
  text-decoration: none;
}

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

.navbar {
  position: sticky;
  top: 60px;
  z-index: 99;
  backdrop-filter: blur(12px);
  background: rgba(11, 16, 32, 0.85);
  border-bottom: 1px solid rgba(233, 237, 247, 0.09);
}

body.site:has(.listing-page--writers-nav-first) .navbar {
  border-bottom: none;
}

.navbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 14px 0;
  flex-wrap: wrap;
  position: relative;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger-menu span {
  width: 24px;
  height: 2px;
  background-color: var(--text);
  display: block;
  transition: 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.navbar-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.navbar-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.93rem;
  transition: 0.2s ease;
  white-space: nowrap;
  font-weight: 500;
}

.navbar-links a:hover {
  color: var(--text);
  border-bottom: 2px solid var(--accent-2);
  padding-bottom: 4px;
}

.bonus-badge {
  position: fixed;
  left: 16px;
  bottom: 20px;
  top: auto;
  right: auto;
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 999px;
  overflow: hidden;
  border: 2px solid rgba(35, 213, 171, 0.85);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.42),
    0 0 0 4px rgba(255, 255, 255, 0.16);
  background: rgba(11, 16, 32, 0.35);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  z-index: 140;
}

.bonus-badge:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.5),
    0 0 0 4px rgba(46, 199, 115, 0.32);
}

.bonus-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 999px;
  transform: scale(1.01);
}

.bonus-badge:focus-visible {
  outline: 2px solid rgba(79, 140, 255, 0.9);
  outline-offset: 2px;
}

/* ---------- Bonus modal ---------- */
body.has-modal-open {
  overflow: hidden;
}

.bonus-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.bonus-modal[hidden] {
  display: none;
}

.bonus-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.bonus-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 18, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.bonus-modal__dialog {
  position: relative;
  width: min(420px, 100%);
  background: linear-gradient(180deg, rgba(19, 26, 48, 0.98), rgba(11, 16, 32, 0.98));
  border: 1px solid rgba(46, 199, 115, 0.38);
  border-radius: 20px;
  padding: 36px 28px 28px;
  text-align: center;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 60px rgba(46, 199, 115, 0.12);
  transform: translateY(16px) scale(0.96);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.bonus-modal.is-open .bonus-modal__dialog {
  transform: translateY(0) scale(1);
}

.bonus-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  border: none;
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.bonus-modal__close:hover,
.bonus-modal__close:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

.bonus-modal__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(46, 199, 115, 0.45), rgba(31, 168, 85, 0.18) 70%, transparent 80%);
  border: 1px solid rgba(46, 199, 115, 0.4);
  box-shadow: 0 0 24px rgba(46, 199, 115, 0.35);
}

.bonus-modal__title {
  margin: 0 0 8px;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  background: linear-gradient(90deg, #ffffff, #b6f5d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bonus-modal__text {
  margin: 0 0 22px;
  color: rgba(230, 236, 255, 0.88);
  font-size: 1rem;
  line-height: 1.5;
}

.bonus-modal__text strong {
  color: #4fe89a;
  font-weight: 700;
}

.bonus-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2ec773, #1fa855);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 12px 24px rgba(35, 213, 171, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.bonus-modal__btn:hover,
.bonus-modal__btn:focus-visible {
  filter: brightness(1.07);
  transform: translateY(-1px);
  box-shadow:
    0 16px 30px rgba(35, 213, 171, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  outline: none;
}

.bonus-modal__note {
  margin: 14px 0 0;
  font-size: 0.78rem;
  color: rgba(200, 210, 235, 0.55);
  letter-spacing: 0.2px;
}

@media (max-width: 480px) {
  .bonus-modal__dialog {
    padding: 30px 20px 22px;
    border-radius: 18px;
  }
  .bonus-modal__title {
    font-size: 1.4rem;
  }
  .bonus-modal__text {
    font-size: 0.94rem;
  }
  .bonus-modal__btn {
    padding: 12px 18px;
    font-size: 0.96rem;
  }
}

.hero {
  padding: 72px 0 36px;
}

.hero--compact {
  padding: 56px 0 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
}

.card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.card + .card {
  margin-top: 18px;
}

.casino-grid-section {
  padding: 24px 0 32px;
}

.casino-grid-title {
  text-align: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 32px;
  padding: 14px 22px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #f6f8ff;
  border-radius: 14px;
  background: rgba(8, 12, 26, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.85),
    0 2px 4px rgba(0, 0, 0, 0.65),
    0 4px 24px rgba(0, 0, 0, 0.45);
}

.casino-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
}

.casino-card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.casino-card__row {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.casino-card__media {
  flex: 0 0 138px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.casino-card__media-meta {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.casino-card__body {
  flex: 1 1 auto;
  min-width: 0;
}

.casino-card__aside {
  flex: 0 0 auto;
  align-self: center;
}

.casino-card__rating--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 0;
}

.casino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  border-color: var(--accent-2);
}

.casino-card__logo {
  width: 100%;
  height: 108px;
  margin-bottom: 0;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.casino-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.casino-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.2), rgba(35, 213, 171, 0.2));
  color: var(--accent-2);
  font-weight: 800;
  font-size: 2rem;
}

.casino-card__content {
  flex: 1;
  margin-bottom: 16px;
}

.casino-card__title {
  margin: 0 0 12px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
}

.casino-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: #ffbc42;
  font-size: 0.9rem;
}

.star:not(.filled) {
  color: rgba(255, 188, 66, 0.3);
}

.rating-value {
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
}

.rating-count {
  color: var(--muted);
  font-size: 0.85rem;
}

.casino-card__bonus {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.casino-card__details {
  margin: 14px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.casino-card__details-toggle {
  margin-top: 14px;
}

.casino-card__details-summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
}

.casino-card__details-summary::-webkit-details-marker {
  display: none;
}

.casino-card__details-summary::after {
  content: "▼";
  font-size: 0.66rem;
  color: rgba(233, 237, 247, 0.85);
}

.casino-card__details-toggle[open] .casino-card__details-summary::after {
  content: "▲";
}

.casino-card__details-toggle[open] .casino-card__details-summary {
  margin-bottom: 10px;
  background: rgba(79, 140, 255, 0.14);
  border-color: rgba(79, 140, 255, 0.4);
}

.casino-card__detail-item {
  padding: 10px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 0;
}

.casino-card__detail-item:nth-child(2n) {
  border-right: none;
}

.casino-card__detail-item dt {
  margin: 0 0 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(233, 237, 247, 0.82);
}

.casino-card__detail-item dd {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text);
  overflow-wrap: anywhere;
}

.casino-card__avatar {
  position: relative;
  flex: 0 0 auto;
  padding-left: 10px;
  display: flex;
  align-items: center;
}

.casino-card__avatar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 44px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(35, 213, 171, 0.35);
}

.casino-card__avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: block;
}

.casino-card__avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-2);
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.25), rgba(35, 213, 171, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.casino-card__avatar--under-logo {
  padding-left: 0;
  align-self: flex-start;
}

.casino-card__avatar--under-logo::before {
  display: none;
}

.casino-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 132px;
}

.casino-card__btn {
  flex: 0 0 auto;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: 0.2s ease;
  cursor: pointer;
  border: 1px solid;
  box-sizing: border-box;
}

.btn-review {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-review:hover {
  background: rgba(79, 140, 255, 0.16);
  border-color: rgba(79, 140, 255, 0.55);
}

.btn-play-now {
  background: linear-gradient(180deg, #2ec773, #1fa855);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-play-now:hover {
  filter: brightness(1.06);
}

.casino-card__btn--disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

.review-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.review-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

.review-list li:last-child {
  border-bottom: none;
}

.review-list a {
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

.review-list a:hover {
  color: var(--accent-2);
}

.review-list .teaser {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.listing-page {
  width: 100%;
  padding: 34px 0 14px;
}

.listing-page--writers-nav-first {
  padding-top: 0;
}

.listing-hero {
  max-width: 1120px;
  position: relative;
  z-index: 2;
  padding: 22px 26px 28px;
  border-radius: var(--radius);
  background: rgba(8, 12, 26, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.listing-hero h1 {
  max-width: 18ch;
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.7vw, 3.3rem);
  line-height: 1.12;
  color: #f6f8ff;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.9),
    0 2px 4px rgba(0, 0, 0, 0.75),
    0 4px 32px rgba(0, 0, 0, 0.55);
}

.listing-hero p {
  max-width: 50rem;
  margin: 0;
  color: rgba(246, 248, 255, 0.98);
  font-size: clamp(1rem, 1.55vw, 1.23rem);
  line-height: 1.45;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 2px 24px rgba(0, 0, 0, 0.55);
}

.listing-hero--after-writers-nav {
  margin-top: 14px;
  padding-top: 22px;
}

.listing-panel {
  margin-top: 26px;
  margin-bottom: 28px;
  padding: 20px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 16, 32, 0.72);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.legal-notice {
  margin: 8px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid rgba(114, 177, 111, 0.55);
  background: rgba(226, 241, 220, 0.9);
}

.legal-notice__icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #d9efcf;
  border: 1px solid rgba(114, 177, 111, 0.65);
  color: #4a7c47;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
}

.legal-notice__text {
  margin: 0;
  color: #2f4a2f;
  font-size: 0.82rem;
  line-height: 1.35;
}

.casino-brand-search {
  margin: 0 0 14px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(233, 237, 247, 0.16);
  background: rgba(10, 16, 32, 0.55);
  backdrop-filter: blur(6px);
}

.casino-brand-search__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(233, 237, 247, 0.9);
}

.casino-brand-search__controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.casino-brand-search__input {
  flex: 1 1 220px;
  min-width: 180px;
  height: 42px;
  max-height: 42px;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 10px;
  border: 1px solid rgba(233, 237, 247, 0.2);
  background: rgba(18, 26, 47, 0.88);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0 14px;
}

.casino-brand-search__input::placeholder {
  color: rgba(183, 192, 216, 0.85);
}

.casino-brand-search__input:focus-visible {
  outline: 2px solid rgba(79, 140, 255, 0.75);
  outline-offset: 1px;
  border-color: rgba(79, 140, 255, 0.75);
}

.casino-brand-search__button,
.casino-brand-search__reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  height: 42px;
  min-width: 108px;
  padding: 0 16px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.casino-brand-search__button {
  border: 1px solid rgba(79, 140, 255, 0.5);
  background: rgba(79, 140, 255, 0.2);
  color: #f4f7ff;
  cursor: pointer;
}

.casino-brand-search__button:hover {
  background: rgba(79, 140, 255, 0.3);
}

.casino-brand-search__button:focus-visible,
.casino-brand-search__reset:focus-visible {
  outline: 2px solid rgba(79, 140, 255, 0.75);
  outline-offset: 2px;
}

.casino-brand-search__reset {
  border: 1px solid rgba(233, 237, 247, 0.22);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.casino-brand-search__reset:hover {
  color: var(--text);
  border-color: rgba(233, 237, 247, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

/* Fallback with higher specificity to avoid browser default rendering */
.casino-brand-search input.casino-brand-search__input {
  border-radius: 10px;
}

.casino-brand-search button.casino-brand-search__button {
  border-radius: 10px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  margin-bottom: 12px;
}

h1 {
  margin: 0 0 14px;
  line-height: 1.2;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}

.lead {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0 0 20px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  border-radius: 999px;
  font-size: 0.83rem;
  padding: 6px 11px;
}

.score-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.score-main {
  background: rgba(79, 140, 255, 0.13);
  border: 1px solid rgba(79, 140, 255, 0.5);
  border-radius: 14px;
  padding: 18px;
}

.score-main .score {
  font-size: 2rem;
  font-weight: 800;
  color: #b4ceff;
  line-height: 1;
  margin-bottom: 6px;
}

.score-main .meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.rating-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.rating-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.rating-list strong { color: var(--text); }

.section {
  margin: 18px 0;
}

h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  margin: 0 0 12px;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

p { margin: 0 0 12px; }

.about-page p {
  color: var(--muted);
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li { margin: 6px 0; }

.good li::marker { color: var(--accent-2); }
.bad li::marker { color: var(--danger); }

.table-wrap { overflow: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

th, td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  padding: 12px;
  font-size: 0.93rem;
  vertical-align: top;
}

th {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

td { color: var(--muted); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.trust-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  min-height: 104px;
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.94rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.86rem;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(35, 213, 171, 0.45);
  border-radius: 14px;
  background: rgba(35, 213, 171, 0.08);
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(180deg, #5b95ff, #4f8cff);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-primary:hover { filter: brightness(1.06); }

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.faq-section {
  margin: 32px 0 24px;
  padding: 28px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-title {
  margin: 0 0 24px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(79, 140, 255, 0.3);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.2s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(79, 140, 255, 0.4);
}

.faq-q {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px;
  cursor: pointer;
  transition: color 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  line-height: 1.4;
}

.faq-q::after {
  content: '▼';
  font-size: 0.7rem;
  color: var(--accent-2);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.open .faq-q::after {
  transform: rotate(180deg);
}

.faq-q:hover {
  color: var(--accent-2);
}

.faq-a {
  display: none;
  color: var(--muted);
  padding: 0 16px 16px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.open .faq-a {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

/* Comments Section */
.comments-section {
  margin: 32px 0 24px;
  padding: 28px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.comments-title {
  margin: 0 0 24px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(35, 213, 171, 0.3);
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comment-item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.comment-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(35, 213, 171, 0.4);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.3), rgba(35, 213, 171, 0.2));
  border: 2px solid rgba(35, 213, 171, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent-2);
  flex-shrink: 0;
}

.comment-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.comment-username {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.comment-date {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.comment-rating {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.comment-rating .star {
  color: #ffbc42;
  font-size: 0.9rem;
}

.comment-body {
  margin: 14px 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

.comment-body p {
  margin: 0;
}

.comment-pros {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.comment-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: rgba(94, 200, 120, 0.15);
  border: 1px solid rgba(94, 200, 120, 0.3);
  border-radius: 20px;
  font-size: 0.8rem;
  color: #5ec878;
  font-weight: 500;
}

.comment-tag.pro-tag {
  background: rgba(94, 200, 120, 0.1);
  border-color: rgba(94, 200, 120, 0.25);
}

.author-box {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 16px;
  margin-top: 12px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 0.86rem;
  color: var(--muted);
}

.meta-row span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 5px 10px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.84rem;
  color: #99a5c7;
  border-left: 3px solid var(--warn);
  padding: 10px 12px;
  background: rgba(255, 188, 66, 0.08);
  border-radius: 8px;
}

.footer {
  margin: 28px 0 40px;
  color: #91a0c4;
  font-size: 0.84rem;
}

.site-footer {
  flex-shrink: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(233, 237, 247, 0.1);
  background: linear-gradient(180deg, rgba(18, 26, 47, 0.92), rgba(11, 16, 32, 0.98));
  backdrop-filter: blur(8px);
}

.site-footer__inner {
  padding: 40px 0 28px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 1fr;
  gap: 32px 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.site-footer__logo-wrap span { color: var(--accent-2); }

.site-footer__logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer__name span { color: var(--accent-2); }

.site-footer__tagline {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 36rem;
}

.site-footer__heading {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(233, 237, 247, 0.55);
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li { margin: 0 0 10px; }

.site-footer__links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--accent-2);
}

.site-footer__text {
  margin: 0 0 10px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer__text--muted {
  margin-bottom: 0;
  font-size: 0.82rem;
  color: #8b97b8;
}

.writers-nav-section {
  position: sticky;
  top: 120px;
  z-index: 80;
  background: rgba(11, 16, 32, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(233, 237, 247, 0.1);
  padding: 14px 0;
}

.listing-page--writers-nav-first .writers-nav-section {
  top: 119px;
  border-top: none;
  margin-top: -1px;
  padding-top: 15px;
}

.writers-nav-bar {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.writers-nav-bar__label {
  flex: 0 0 auto;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(183, 192, 216, 0.88);
}

.writers-nav {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.writers-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(233, 237, 247, 0.28);
  background: transparent;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.writers-nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(233, 237, 247, 0.42);
}

.writers-nav__link.active {
  color: #fff;
  background: var(--contents-tab-active);
  border-color: var(--contents-tab-active);
}

.writers-nav__link.active:hover {
  background: #f08945;
  border-color: #f08945;
}

.writers-nav__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.writers-category-section {
  padding: 48px 0;
  border-bottom: 1px solid rgba(233, 237, 247, 0.05);
  scroll-margin-top: 180px;
}

.writers-category-section:last-child {
  border-bottom: none;
}

.writers-category-title {
  text-align: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 32px;
  padding: 16px 28px 22px;
  font-size: 2rem;
  font-weight: 800;
  color: #f6f8ff;
  position: relative;
  box-sizing: border-box;
  border-radius: 14px;
  background: rgba(8, 12, 26, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.85),
    0 2px 4px rgba(0, 0, 0, 0.65),
    0 4px 28px rgba(0, 0, 0, 0.45);
}

.writers-category-title::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
}

.writers-section {
  padding: 32px 0;
}

.writers-grid-large {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 24px;
}

.writer-card-large {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  min-width: 0;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  transition: all 0.3s ease;
  width: 100%;
}

.writer-card-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  border-color: var(--accent-2);
}

.writer-card-large__image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.writer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.writer-card-large__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.25), rgba(35, 213, 171, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  font-weight: 800;
  font-size: 3rem;
  border-radius: 12px;
}

.writer-card-large__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.writer-card-large__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.writer-card-large__name {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  min-width: 0;
  overflow-wrap: anywhere;
}

.writer-card-large__type {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.2), rgba(35, 213, 171, 0.1));
  border: 1px solid rgba(79, 140, 255, 0.3);
  border-radius: 20px;
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.writer-card-large__bio {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  min-width: 0;
  overflow-wrap: break-word;
}

.writer-card-large__contact {
  margin-top: auto;
  width: 100%;
  min-width: 0;
}

.writer-email-link {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding: 10px 14px;
  background: rgba(79, 140, 255, 0.15);
  border: 1px solid rgba(79, 140, 255, 0.3);
  border-radius: 8px;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: 0.2s ease;
}

.writer-email-link:hover {
  background: rgba(79, 140, 255, 0.25);
  border-color: var(--accent);
  color: #fff;
}

.site-footer__bar {
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.82rem;
  color: #91a0c4;
}

.site-footer__fine {
  margin: 0;
  font-size: 0.76rem;
  color: #6c7899;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .writers-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    padding: 32px 0 24px;
  }

  .writers-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 12px;
  }

  .writer-card__name {
    font-size: 0.85rem;
  }

  .writer-card__bio {
    font-size: 0.75rem;
  }
}

.profile {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  align-items: center;
}

.avatar {
  width: 100%;
  max-width: 220px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1200px) {
  .navbar-links {
    gap: 20px;
  }

  .navbar-links a {
    font-size: 0.88rem;
  }
}

@media (max-width: 980px) {
  .hero-grid, .grid-two, .trust-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }

  .navbar-links {
    gap: 12px;
  }

  .navbar-links a {
    font-size: 0.80rem;
  }

  .bonus-badge {
    width: 56px;
    height: 56px;
    left: 14px;
    bottom: 18px;
  }
}

@media (max-width: 1024px) {
  .casino-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .casino-card__logo {
    height: 100px;
  }

  .casino-card__title {
    font-size: 1rem;
  }

  .writers-grid-large {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .writer-card-large {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .writer-card-large__image {
    max-width: 200px;
    margin: 0 auto;
  }

  .writer-card-large__content {
    align-items: center;
  }

  .writer-card-large__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .writer-card-large__name {
    font-size: 1.35rem;
  }

  .writer-card-large__type {
    font-size: 0.8rem;
    padding: 5px 11px;
  }
}

@media (max-width: 768px) {
  .casino-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .casino-grid-section {
    padding: 18px 0 24px;
  }

  .casino-grid-title {
    margin-bottom: 24px;
    font-size: 1.6rem;
    padding: 12px 16px;
  }

  .casino-card {
    padding: 16px;
  }

  .casino-card__logo {
    height: 90px;
    margin-bottom: 12px;
  }

  .casino-card__title {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .casino-card__bonus {
    font-size: 0.85rem;
  }

  .casino-card__btn {
    font-size: 0.80rem;
    padding: 8px 10px;
  }

  .writers-nav-section {
    top: 100px;
    padding: 12px 0;
  }

  .listing-page--writers-nav-first .writers-nav-section {
    top: 99px;
    padding-top: 13px;
  }

  .writers-nav-bar {
    gap: 14px;
  }

  .writers-nav {
    gap: 8px;
  }

  .writers-nav__link {
    font-size: 0.82rem;
    padding: 8px 14px;
  }

  .writers-category-section {
    padding: 32px 0;
  }

  .writers-category-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
}

@media (max-width: 640px) {
  .casino-brand-search {
    padding: 10px;
  }

  .casino-brand-search__label {
    margin-bottom: 6px;
    font-size: 0.8rem;
  }

  .casino-brand-search__controls {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }

  /* In a column flex, flex-basis is height — avoid tall “textarea” look */
  .casino-brand-search__input {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    height: 44px;
    min-height: 44px;
    max-height: 44px;
    font-size: 16px;
    padding: 0 12px;
    background: rgba(18, 26, 47, 0.96);
  }

  .casino-brand-search__button {
    flex: 0 0 auto;
    width: auto;
    min-width: 88px;
    height: 44px;
    padding: 0 14px;
  }

  .casino-brand-search__reset {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    height: 40px;
    margin-top: 2px;
  }

  .navbar-inner {
    padding: 8px 0;
    justify-content: flex-end;
  }

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

  .navbar-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(18, 26, 47, 0.95);
    border-top: 1px solid rgba(233, 237, 247, 0.1);
    padding: 12px 0;
    z-index: 200;
  }

  .navbar-links.active {
    display: flex;
  }

  .navbar-links a {
    padding: 12px 16px;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(233, 237, 247, 0.08);
  }

  .navbar-links a:last-child {
    border-bottom: none;
  }

  .navbar-links a:hover {
    background: rgba(79, 140, 255, 0.1);
    border-bottom: none;
    padding-bottom: 12px;
  }

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

  .casino-grid-title {
    font-size: 1.4rem;
    padding: 10px 14px;
  }

  .casino-card {
    padding: 14px;
  }

  .casino-card__row {
    flex-direction: column;
    gap: 14px;
  }

  .casino-card__media {
    flex: 0 0 auto;
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  .casino-card__logo {
    width: 92px;
    height: 92px;
    flex-shrink: 0;
  }

  .casino-card__media-meta {
    margin-top: 0;
    flex: 1;
    min-width: 0;
  }

  .casino-card__aside {
    align-self: stretch;
    width: 100%;
  }

  .casino-card__actions {
    flex-direction: row;
    min-width: 0;
    gap: 8px;
  }

  .casino-card__btn {
    flex: 1 1 0;
    width: auto;
    font-size: 0.75rem;
    padding: 8px 10px;
  }

  .casino-card__title {
    font-size: 0.9rem;
  }

  .casino-card__details {
    grid-template-columns: 1fr;
  }

  .casino-card__detail-item {
    border-right: none;
  }

  .casino-card__detail-item:last-child {
    border-bottom: none;
  }

  .writers-section {
    padding: 20px 0;
  }

  .writers-grid-large {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .writer-card-large {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 16px;
  }

  .writer-card-large__image {
    max-width: 150px;
    margin: 0 auto;
  }

  .writer-card-large__header {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .writer-card-large__name {
    font-size: 1.2rem;
    margin-bottom: 0;
  }

  .writer-card-large__type {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  .writer-card-large__bio {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .writer-email-link {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  .writers-nav-section {
    top: 88px;
    padding: 10px 0;
  }

  .listing-page--writers-nav-first .writers-nav-section {
    top: 87px;
    padding-top: 11px;
  }

  .writers-nav-bar {
    gap: 10px;
  }

  .writers-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 2px;
  }

  .writers-nav__link {
    font-size: 0.78rem;
    padding: 8px 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .writers-category-section {
    padding: 24px 0;
  }

  .writers-category-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
    padding: 14px 18px 18px;
  }

  .writers-category-title::after {
    bottom: 10px;
  }
}

@media (max-width: 640px) {
  .bonus-badge {
    width: 52px;
    height: 52px;
    left: 12px;
    bottom: 16px;
  }
}

@media (max-width: 840px) {
  .profile { grid-template-columns: 1fr; }
  .avatar { max-width: 180px; }
}

.listing-empty a {
  color: var(--accent-2);
}

.casino-article {
  margin-bottom: 18px;
}

.review-overview-card {
  margin-bottom: 18px;
  padding: 14px 16px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-overview-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 0;
}

.review-overview-card__head + .review-specs-accordion {
  margin-top: 12px;
}

.review-overview-card__logo-wrap {
  flex: 0 0 auto;
  width: 120px;
  height: 52px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.review-overview-card__logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.review-overview-card__meta {
  margin-left: auto;
  text-align: right;
  min-width: 0;
}

.review-overview-card__rating,
.review-overview-card__author {
  margin: 0;
  font-size: 0.88rem;
}

.review-overview-card__rating {
  font-weight: 800;
  color: var(--text);
}

.review-overview-card__author-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.review-overview-card__author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.review-overview-card__author-avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.25), rgba(35, 213, 171, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 800;
  color: var(--accent-2);
  font-size: 1.1rem;
}

.review-overview-card__author-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.review-overview-card__author {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.review-overview-card__author a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.review-overview-card__author a:hover {
  color: var(--accent-2);
}

.review-overview-card__date {
  margin: 0;
  color: rgba(183, 192, 216, 0.8);
  font-size: 0.8rem;
  font-weight: 500;
}

.review-specs-accordion {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.review-specs-accordion__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  user-select: none;
  min-height: 44px;
  box-sizing: border-box;
}

.review-specs-accordion__summary::-webkit-details-marker {
  display: none;
}

.review-specs-accordion__summary::after {
  content: "▼";
  flex-shrink: 0;
  font-size: 0.65rem;
  color: rgba(233, 237, 247, 0.75);
}

.review-specs-accordion[open] .review-specs-accordion__summary::after {
  content: "▲";
}

.review-specs-accordion[open] .review-specs-accordion__summary {
  background: rgba(79, 140, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.review-specs-accordion__panel {
  padding: 0;
}

.review-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.1);
}

.review-specs-grid__item {
  padding: 10px 12px;
  min-width: 0;
  background: rgba(12, 18, 34, 0.65);
}

.review-specs-grid__item dt {
  margin: 0 0 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(233, 237, 247, 0.78);
}

.review-specs-grid__item dd {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text);
  overflow-wrap: anywhere;
}

@media (max-width: 900px) and (min-width: 641px) {
  .review-specs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.casino-body {
  color: var(--muted);
  margin-top: 8px;
}

.casino-body h2,
.casino-body h3,
.casino-body h4 {
  color: var(--text);
  margin: 1.1em 0 0.5em;
}

.casino-body p {
  margin: 0 0 12px;
}

.casino-body ul,
.casino-body ol {
  margin: 0 0 12px;
  padding-left: 1.25rem;
}

.casino-body a {
  color: var(--accent);
}

.casino-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.casino-body table {
  width: 100%;
  min-width: 0;
  margin-bottom: 16px;
}

.casino-body h2 {
  scroll-margin-top: 150px;
  margin-top: 32px;
  margin-bottom: 16px;
}

/* Table of Contents Section */
.toc-section {
  margin: 28px 0;
  padding: 24px;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid rgba(138, 43, 226, 0.35);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(138, 43, 226, 0.15);
}

.toc-title {
  margin: 0 0 18px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.toc-link {
  display: block;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(138, 43, 226, 0.2);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.toc-link:hover {
  background: rgba(138, 43, 226, 0.15);
  border-color: rgba(138, 43, 226, 0.4);
  color: #d8b5ff;
  transform: translateY(-1px);
}

.back-link {
  margin: 0 0 24px;
}

/* Casino Specifications Table */
.casino-specs-table-section {
  margin: 0;
  min-width: 0;
  overflow: hidden;
}

.casino-specs-table-wrapper {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.casino-specs-title {
  margin: 0;
  padding: 20px 18px 14px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  word-break: break-word;
  overflow-wrap: break-word;
}

.casino-specs-table {
  width: 100%;
  border-collapse: collapse;
  flex: 1;
  overflow-y: auto;
  table-layout: fixed;
}

.casino-specs-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease;
}

.casino-specs-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.casino-specs-table tbody tr:last-child {
  border-bottom: none;
}

.spec-label {
  width: 40%;
  padding: 11px 12px;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text);
  text-align: left;
  vertical-align: top;
  white-space: normal;
  word-break: break-word;
}

.spec-value {
  width: 60%;
  padding: 11px 12px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.review-page {
  overflow-x: hidden;
}

/* Casino Ratings & Hits & Misses & Specs Layout */
.casino-full-section {
  margin: 32px 0;
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 24px;
  align-items: start;
}

/* Casino Ratings & Hits & Misses */
.casino-ratings-section {
  margin: 0;
  min-width: 0;
}

.casino-ratings-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 100%;
}

.casino-detailed-ratings {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.casino-rating-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-rating-overall {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.casino-rating-score {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-2);
}

.casino-rating-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  font-size: 1.1rem;
}

.casino-rating-stars .star {
  color: #ffbc42;
}

.casino-rating-stars .star:not(.filled) {
  color: rgba(255, 188, 66, 0.3);
}

.casino-rating-label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-top: 6px;
}

.casino-rating-source {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}

.casino-ratings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.casino-rating-item {
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.casino-rating-item__label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.casino-rating-item__stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.casino-rating-item__stars .star {
  color: #ffbc42;
  font-size: 0.8rem;
}

.casino-rating-item__stars .star:not(.filled) {
  color: rgba(255, 188, 66, 0.3);
}

.casino-rating-item__value {
  margin-left: auto;
  font-weight: 700;
  color: var(--accent-2);
  font-size: 0.85rem;
}

/* Hits & Misses */
.casino-hits-misses {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.casino-hits-misses__header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-hits-misses__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.casino-hits-misses__title::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(79, 140, 255, 0.2);
  border: 1px solid rgba(79, 140, 255, 0.4);
  border-radius: 50%;
  color: var(--accent);
  font-weight: 900;
  font-size: 0.9rem;
}

.casino-hits-misses__content {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: start;
}

.casino-chart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.casino-donut-chart {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: conic-gradient(
    #5ec878 0deg calc(360deg * var(--hits-percent) / 100),
    #cc5c54 calc(360deg * var(--hits-percent) / 100) 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.casino-donut-chart::after {
  content: '';
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--panel);
}

.casino-donut-chart__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.casino-donut-chart__hits {
  font-size: 1.4rem;
  font-weight: 900;
  color: #5ec878;
}

.casino-donut-chart__label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.casino-chart-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.casino-chart-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
}

.casino-chart-legend__color {
  width: 16px;
  height: 16px;
  border-radius: 2px;
}

.casino-chart-legend__color.hits {
  background: #5ec878;
}

.casino-chart-legend__color.misses {
  background: #cc5c54;
}

.casino-hits-misses__lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.casino-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.casino-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.casino-list li::before {
  content: '●';
  flex: 0 0 auto;
  color: inherit;
  font-weight: 800;
  padding-top: 2px;
}

.casino-list--hits li::before {
  color: #5ec878;
}

.casino-list--misses li::before {
  color: #cc5c54;
}

.review-hero {
  position: relative;
  width: 100%;
  background-color: var(--panel);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  margin-top: 0;
}

.review-hero--compact {
  min-height: 0;
  padding: 18px 0 16px;
  align-items: flex-end;
}

.review-hero--compact .review-hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(11, 16, 32, 0.35) 0%,
    rgba(11, 16, 32, 0.82) 100%
  );
}

.review-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 16, 32, 0.25) 0%,
    rgba(11, 16, 32, 0.75) 55%,
    rgba(11, 16, 32, 0.92) 100%
  );
  pointer-events: none;
}

.review-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 4px;
}

.review-hero__content h1 {
  margin: 0 0 10px;
  max-width: min(900px, 100%);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

.review-hero--compact .review-hero__content h1 {
  margin: 0 0 6px;
  font-size: clamp(1.25rem, 4.2vw, 1.65rem);
  line-height: 1.2;
}

.review-hero__content .lead {
  margin: 0;
  color: rgba(233, 237, 247, 0.92);
  max-width: 52ch;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
}

.review-hero__teaser {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: min(56ch, 100%);
}

.review-hero--compact .review-hero__teaser {
  font-size: 0.86rem;
  -webkit-line-clamp: 3;
}

.review-page__main {
  padding: 20px 0 12px;
  max-width: 100%;
}

@media (max-width: 1200px) {
  .casino-full-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .casino-specs-table-wrapper {
    height: auto;
  }

  .casino-ratings-container {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .review-hero--compact {
    padding: 14px 0 12px;
  }

  .review-hero--compact .review-hero__content h1 {
    font-size: 1.2rem;
  }

  .listing-page {
    padding-top: 18px;
  }

  .listing-page--writers-nav-first {
    padding-top: 0;
  }

  .listing-hero {
    padding: 18px 18px 20px;
  }

  .listing-panel {
    margin-top: 16px;
    padding: 16px;
  }

  .legal-notice {
    margin: 4px 0 10px;
    align-items: flex-start;
  }

  .review-overview-card {
    padding: 12px 12px;
  }

  .review-overview-card__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .review-overview-card__meta {
    margin-left: 0;
    text-align: left;
    width: 100%;
  }

  .review-overview-card__logo-wrap {
    width: 100%;
    max-width: 200px;
    height: 56px;
  }

  .review-specs-grid {
    grid-template-columns: 1fr;
  }

  .review-page__main {
    padding: 14px 0 10px;
  }

  .casino-article {
    min-width: 0;
  }

  .casino-body {
    overflow-x: auto;
  }

  /* Full Section Mobile */
  .casino-full-section {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px 0;
  }

  .casino-specs-table-wrapper {
    height: auto;
  }

  /* Specs Table Mobile */
  .casino-specs-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .casino-specs-table {
    min-width: 100%;
  }

  .casino-specs-title {
    padding: 18px 16px 12px;
    font-size: 1.1rem;
  }

  .spec-label {
    width: 40%;
    padding: 12px 14px;
    font-size: 0.85rem;
    min-width: 100px;
  }

  .spec-value {
    width: 60%;
    padding: 12px 14px;
    font-size: 0.85rem;
    min-width: 150px;
  }

  /* Casino Ratings Mobile */
  .casino-ratings-container {
    max-width: 100%;
  }

  .casino-ratings-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .casino-rating-item {
    padding: 10px;
  }

  .casino-detailed-ratings {
    padding: 16px;
  }

  .casino-hits-misses {
    padding: 16px;
  }

  .casino-hits-misses__content {
    grid-template-columns: 120px 1fr;
    gap: 16px;
  }

  .casino-hits-misses__lists {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .casino-donut-chart {
    width: 120px;
    height: 120px;
  }

  .casino-donut-chart::after {
    width: 75px;
    height: 75px;
  }

  .casino-donut-chart__hits {
    font-size: 1.2rem;
  }

  .casino-rating-score {
    font-size: 1.7rem;
  }

  .casino-rating-label {
    font-size: 0.9rem;
  }

  /* FAQ Mobile */
  .faq-section {
    margin: 24px 0 20px;
    padding: 20px;
  }

  .faq-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }

  .faq-q {
    font-size: 0.9rem;
    padding: 14px;
  }

  .faq-a {
    font-size: 0.88rem;
    padding: 0 14px 14px;
  }

  /* Table of Contents Mobile */
  .toc-section {
    margin: 20px 0;
    padding: 18px;
  }

  .toc-title {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .toc-columns {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .toc-link {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  /* Comments Mobile */
  .comments-section {
    margin: 24px 0 20px;
    padding: 20px;
  }

  .comments-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .comments-list {
    gap: 16px;
  }

  .comment-item {
    padding: 16px;
  }

  .comment-header {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
  }

  .comment-rating {
    align-self: flex-start;
  }

  .comment-body {
    font-size: 0.88rem;
  }

  .comment-pros {
    gap: 6px;
  }

  .comment-tag {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
}

/* ============================================================
   BONUSES PAGE
   ============================================================ */

.bonuses-page {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 0 40px;
}

.bonuses-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.bonuses-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bonuses-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.bonuses-breadcrumb__item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

.bonuses-breadcrumb__item--current {
  background: rgba(35, 213, 171, 0.12);
  border-color: rgba(35, 213, 171, 0.35);
  color: var(--accent-2);
}

.bonuses-updated {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.3;
}

.bonuses-updated__date {
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
}

.bonuses-hero {
  background: rgba(15, 22, 41, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.bonuses-hero__title {
  margin: 0 0 12px;
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--text);
}

.bonuses-hero__lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.bonuses-tabs-section {
  background: rgba(15, 22, 41, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.bonuses-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bonuses-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 1rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.bonuses-tab + .bonuses-tab {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.bonuses-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.bonuses-tab--active {
  color: var(--text);
  background: rgba(35, 213, 171, 0.08);
  border-bottom-color: var(--accent-2);
}

.bonuses-tab__icon {
  font-size: 1.15rem;
  line-height: 1;
}

.bonuses-tab__label {
  letter-spacing: 0.2px;
}

.bonuses-filterbar {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  background: rgba(11, 16, 32, 0.5);
}

.bonuses-filterbar--two-selects {
  grid-template-columns: 2fr 1fr 1fr;
}

.bonuses-filterbar--single-select {
  grid-template-columns: 2.4fr 1fr;
}

.bonuses-filterbar__search {
  position: relative;
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.bonuses-filterbar__input {
  flex: 1 1 auto;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.92rem;
  padding: 10px 14px;
}

.bonuses-filterbar__input::placeholder {
  color: var(--muted);
}

.bonuses-filterbar__search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.bonuses-filterbar__search-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.bonuses-filterbar__select {
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(255, 255, 255, 0.05);
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
                    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.92rem;
  padding: 10px 36px 10px 14px;
  cursor: pointer;
}

.bonuses-filterbar__select:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.bonuses-list-section {
  margin-top: 6px;
}

.bonuses-list-title {
  margin: 0 0 14px;
  font-size: 1.35rem;
  color: var(--text);
}

.bonuses-list {
  background: rgba(15, 22, 41, 0.6);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
}

.bonuses-list__placeholder {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 1rem;
}

.bonuses-list__placeholder:last-child {
  margin-bottom: 0;
}

.bonuses-list__reset {
  display: inline-block;
  margin-top: 4px;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2ec773, #1fa855);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 14px rgba(35, 213, 171, 0.22);
  transition: filter 0.15s ease, transform 0.15s ease;
}

.bonuses-list__reset:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* ---------- Bonus tab article (below list) ---------- */
.bonuses-article-section {
  margin-top: 28px;
  padding-bottom: 8px;
}

.bonuses-article {
  background: linear-gradient(180deg, rgba(19, 26, 48, 0.78), rgba(13, 19, 36, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 32px 32px 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.bonuses-article__title {
  margin: 0 0 16px;
  font-size: 1.55rem;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: 0.2px;
}

.bonuses-article__body {
  color: rgba(230, 236, 255, 0.88);
  font-size: 1rem;
  line-height: 1.65;
}

.bonuses-article__body h2,
.bonuses-article__body h3,
.bonuses-article__body h4 {
  color: var(--text);
  margin: 1.4em 0 0.55em;
  line-height: 1.25;
}

.bonuses-article__body h2 { font-size: 1.35rem; }
.bonuses-article__body h3 { font-size: 1.15rem; }
.bonuses-article__body h4 { font-size: 1.02rem; }

.bonuses-article__body p {
  margin: 0 0 1em;
}

.bonuses-article__body ul,
.bonuses-article__body ol {
  margin: 0 0 1em 1.25em;
  padding: 0;
}

.bonuses-article__body li {
  margin: 0 0 0.35em;
}

.bonuses-article__body a {
  color: #4fe89a;
  text-decoration: none;
  border-bottom: 1px dashed rgba(79, 232, 154, 0.55);
}

.bonuses-article__body a:hover {
  color: #78f3b1;
  border-bottom-color: #78f3b1;
}

.bonuses-article__body strong {
  color: #fff;
}

.bonuses-article__body blockquote {
  margin: 1em 0;
  padding: 10px 16px;
  border-left: 3px solid rgba(46, 199, 115, 0.6);
  background: rgba(46, 199, 115, 0.06);
  border-radius: 0 10px 10px 0;
  color: rgba(230, 236, 255, 0.82);
}

.bonuses-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 10px 0;
}

.bonuses-article__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  font-size: 0.95rem;
}

.bonuses-article__body th,
.bonuses-article__body td {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.bonuses-article__body th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 640px) {
  .bonuses-article {
    padding: 22px 18px 20px;
    border-radius: 14px;
  }
  .bonuses-article__title {
    font-size: 1.25rem;
  }
  .bonuses-article__body {
    font-size: 0.96rem;
  }
}

@media (max-width: 768px) {
  .bonuses-hero {
    padding: 22px 18px;
  }

  .bonuses-hero__title {
    font-size: 1.4rem;
  }

  .bonuses-tab {
    padding: 14px 8px;
    font-size: 0.9rem;
  }

  .bonuses-filterbar {
    grid-template-columns: 1fr 1fr;
  }

  .bonuses-filterbar__search {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .bonuses-tab__label {
    font-size: 0.82rem;
  }

  .bonuses-filterbar {
    grid-template-columns: 1fr;
  }
}

/* ----- Bonus tab counter ----- */
.bonuses-tab__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(35, 213, 171, 0.14);
  color: var(--accent-2);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}

.bonuses-tab--active .bonuses-tab__count {
  background: var(--accent-2);
  color: #08221a;
}

/* ----- Bonus cards grid ----- */
.bonuses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.bonus-card {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 18px;
  padding: 18px;
  background: rgba(15, 22, 41, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.bonus-card:hover {
  border-color: rgba(35, 213, 171, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.36);
}

.bonus-card--featured {
  border-color: rgba(255, 188, 66, 0.55);
  box-shadow: 0 14px 32px rgba(255, 188, 66, 0.12),
              0 14px 32px rgba(0, 0, 0, 0.28);
}

.bonus-card__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  text-align: center;
}

.bonus-card__logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  padding: 8px;
}

.bonus-card__logo--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--accent-2);
  background: linear-gradient(135deg, rgba(79, 140, 255, 0.18), rgba(35, 213, 171, 0.18));
}

.bonus-card__brand-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bonus-card__brand-name {
  font-weight: 800;
  color: var(--text);
  font-size: 0.98rem;
}

.bonus-card__tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bonus-card__tag--bonuses {
  background: rgba(35, 213, 171, 0.14);
  color: var(--accent-2);
  border-color: rgba(35, 213, 171, 0.35);
}

.bonus-card__tag--no-deposit {
  background: rgba(79, 140, 255, 0.14);
  color: #8ab4ff;
  border-color: rgba(79, 140, 255, 0.35);
}

.bonus-card__tag--free-spins {
  background: rgba(255, 188, 66, 0.14);
  color: var(--warn);
  border-color: rgba(255, 188, 66, 0.35);
}

.bonus-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.bonus-card__title {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text);
  line-height: 1.3;
}

.bonus-card__desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.bonus-card__specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px 14px;
  margin: 4px 0 0;
}

.bonus-card__specs > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 8px 10px;
}

.bonus-card__specs dt {
  margin: 0;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.bonus-card__specs dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
}

.bonus-card__terms {
  margin-top: 6px;
  font-size: 0.88rem;
  color: var(--muted);
}

.bonus-card__terms summary {
  cursor: pointer;
  color: var(--accent);
  font-weight: 700;
}

.bonus-card__terms p {
  margin: 8px 0 0;
  line-height: 1.5;
}

.bonus-card__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.bonus-card__promo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  text-align: center;
}

.bonus-card__promo-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.bonus-card__promo-code {
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.6px;
}

.bonus-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  background: linear-gradient(180deg, #2ec773, #1fa855);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 22px rgba(35, 213, 171, 0.3);
  transition: filter 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.bonus-card__btn:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .bonus-card {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 14px;
  }

  .bonus-card__brand {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 12px;
    padding: 10px 12px;
  }

  .bonus-card__logo {
    width: 56px;
    height: 56px;
    padding: 4px;
    flex: 0 0 auto;
  }

  .bonus-card__logo--placeholder {
    font-size: 1rem;
  }

  .bonus-card__brand-meta {
    flex: 1 1 auto;
    align-items: flex-start;
  }

  .bonus-card__cta {
    flex-direction: row;
    align-items: center;
  }

  .bonus-card__promo,
  .bonus-card__btn {
    flex: 1 1 0;
  }
}

@media (max-width: 480px) {
  .bonus-card__logo {
    width: 48px;
    height: 48px;
  }

  .bonus-card__brand-name {
    font-size: 0.95rem;
  }

  .bonus-card__cta {
    flex-direction: column;
  }
}

/* ============================================================ */
/* Slots page — list + detail                                    */
/* ============================================================ */

.slots-page {
  padding: 2rem 0 4rem;
}

.slots-hero {
  margin-bottom: 2rem;
}

.slots-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.slots-breadcrumb__item {
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.slots-breadcrumb__item:hover {
  opacity: 1;
}

.slots-breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin-left: 0.5rem;
  opacity: 0.5;
}

.slots-breadcrumb__item--current {
  color: #ffd166;
  opacity: 1;
  pointer-events: none;
}

.slots-hero__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 0.75rem;
  color: #fff;
}

.slots-hero__lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.slots-toolbar {
  margin-bottom: 1.5rem;
}

.slots-filterbar {
  display: flex;
  max-width: 540px;
}

.slots-filterbar__search {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
}

.slots-filterbar__input {
  flex: 1;
  padding: 0.7rem 0.9rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
}

.slots-filterbar__search-btn {
  padding: 0.5rem 0.85rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: color 0.15s ease;
}

.slots-filterbar__search-btn:hover {
  color: #ffd166;
}

.slots-list-section {
  padding: 1rem 0 2rem;
}

.slots-list-title {
  font-size: 1.4rem;
  margin: 0 0 1.2rem;
  color: #fff;
}

.slots-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.slot-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.slot-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 209, 102, 0.35);
}

.slot-card--featured {
  border-color: rgba(255, 209, 102, 0.45);
  box-shadow: 0 8px 24px rgba(255, 209, 102, 0.08);
}

.slot-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
}

.slot-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.slot-card:hover .slot-card__img {
  transform: scale(1.03);
}

.slot-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  background: linear-gradient(135deg, #223, #112);
}

.slot-card__badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: #ffd166;
  color: #1a1a1a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.slot-card__body {
  padding: 0.85rem 1rem 0.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.slot-card__title {
  margin: 0;
  font-size: 1.05rem;
  color: #fff;
}

.slot-card__title a {
  color: inherit;
  text-decoration: none;
}

.slot-card__title a:hover {
  color: #ffd166;
}

.slot-card__provider {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.slot-card__teaser {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  line-height: 1.45;
}

.slot-card__specs {
  margin: 0.4rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 0.6rem;
}

.slot-card__specs div {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  padding-top: 0.35rem;
}

.slot-card__specs dt {
  color: rgba(255, 255, 255, 0.55);
}

.slot-card__specs dd {
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.slot-card__cta {
  display: flex;
  gap: 0.5rem;
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.slot-card__btn {
  flex: 1;
  text-align: center;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease;
}

.slot-card__btn--review {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.slot-card__btn--review:hover {
  background: rgba(255, 255, 255, 0.15);
}

.slot-card__btn--play {
  background: linear-gradient(135deg, #24c26f, #1fa85e);
  color: #fff;
}

.slot-card__btn--play:hover {
  background: linear-gradient(135deg, #28d17a, #1fa85e);
  transform: translateY(-1px);
}

.slots-list {
  padding: 2rem 0;
  text-align: center;
}

.slots-list__placeholder {
  color: rgba(255, 255, 255, 0.7);
  margin: 0.5rem 0;
}

.slots-list__reset {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.45rem 0.95rem;
  border-radius: 8px;
  background: #24c26f;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.slots-list__reset:hover {
  background: #28d17a;
}

/* Slot detail ----------------------------------------------- */

.slot-page {
  padding: 1.5rem 0 4rem;
}

.slot-breadcrumb-section {
  margin-bottom: 1rem;
}

.slot-hero {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  align-items: start;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 1.5rem;
}

.slot-hero__media {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: rgba(0, 0, 0, 0.35);
}

.slot-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slot-hero__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2.3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #223, #112);
}

.slot-hero__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #fff;
}

.slot-hero__provider {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.slot-hero__teaser {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.slot-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.slot-hero__stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  display: flex;
  flex-direction: column;
}

.slot-hero__stat span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.slot-hero__stat strong {
  color: #fff;
  font-size: 1rem;
  margin-top: 0.15rem;
}

.slot-hero__cta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.slot-hero__btn {
  padding: 0.7rem 1.3rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #24c26f, #1fa85e);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.12s ease, box-shadow 0.15s ease;
}

.slot-hero__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(36, 194, 111, 0.3);
}

@media (max-width: 720px) {
  .slot-hero {
    grid-template-columns: 1fr;
  }
}

/* Key Features table */
.slot-keyfeatures-section {
  margin-bottom: 1.75rem;
}

.slot-keyfeatures-title {
  margin: 0 0 0.85rem;
  font-size: 1.3rem;
  color: #fff;
}

.slot-keyfeatures-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.slot-keyfeatures-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.slot-keyfeatures-table tr + tr td {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.slot-keyfeatures-table__label,
.slot-keyfeatures-table__value {
  padding: 0.7rem 1rem;
  vertical-align: top;
}

.slot-keyfeatures-table__label {
  color: rgba(255, 255, 255, 0.6);
  width: 34%;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.02);
}

.slot-keyfeatures-table__value {
  color: #fff;
  font-weight: 600;
}

.slot-description-section {
  margin-bottom: 1.75rem;
}

.slot-description.rich-text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.slot-bonuses-section {
  margin-top: 2rem;
}

.slot-bonuses-title {
  font-size: 1.35rem;
  margin: 0 0 0.4rem;
  color: #fff;
}

.slot-bonuses-subtitle {
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Slot detail — "Back to all slots" button */
.slot-back {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: flex-start;
}

.slot-back__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.slot-back__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 209, 102, 0.35);
  transform: translateX(-2px);
}

.slot-back__arrow {
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.15s ease;
}

.slot-back__btn:hover .slot-back__arrow {
  transform: translateX(-3px);
}

/* ============================================================ */
/* Slot detail — redesigned bonus cards (screenshot format)     */
/* ============================================================ */

.slot-bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
  margin-top: 1.1rem;
}

.slot-bonus-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.slot-bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.slot-bonus-card__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  padding: 1.5rem 1rem;
  min-height: 140px;
}

.slot-bonus-card__logo {
  max-width: 80%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.slot-bonus-card__logo--placeholder {
  width: 80px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.slot-bonus-card__body {
  padding: 1.25rem 1.15rem 0.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  color: #111;
}

.slot-bonus-card__title {
  margin: 0;
  color: #111;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}

.slot-bonus-card__desc {
  margin: 0;
  color: #3a3a3a;
  font-size: 0.88rem;
  line-height: 1.5;
  flex: 1;
}

.slot-bonus-card__promo {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding-top: 0.25rem;
  color: #111;
  font-size: 0.9rem;
}

.slot-bonus-card__promo-label {
  color: #1a1a1a;
  font-weight: 500;
}

.slot-bonus-card__promo-code {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  background: none;
  border: none;
  color: #0a0a0a;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.slot-bonus-card__promo-code:hover {
  color: #24c26f;
}

.slot-bonus-card__promo-code.is-copied {
  color: #24c26f;
  text-decoration: none;
}

.slot-bonus-card__promo-text {
  letter-spacing: 0.02em;
}

.slot-bonus-card__copy-icon {
  opacity: 0.7;
  transition: opacity 0.15s ease;
}

.slot-bonus-card__promo-code:hover .slot-bonus-card__copy-icon {
  opacity: 1;
}

.slot-bonus-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.75rem 0.85rem 0.85rem;
  padding: 0.8rem 1rem;
  background: #24c26f;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.15s ease, transform 0.1s ease;
}

.slot-bonus-card__btn:hover {
  background: #1fa85e;
  transform: translateY(-1px);
}

.slot-bonus-card__btn:active {
  transform: translateY(0);
}

@media (max-width: 520px) {
  .slot-bonus-grid {
    grid-template-columns: 1fr;
  }

  .slot-bonus-card__logo-wrap {
    min-height: 110px;
  }
}

/* Slot detail — author + publish date */
.slot-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin: 0.1rem 0 1rem;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
}

.slot-hero__author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.slot-hero__author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.slot-hero__author-avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}

.slot-hero__author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.slot-hero__author-label,
.slot-hero__date-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.slot-hero__author-name {
  color: #ffd166;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

.slot-hero__author-name:hover {
  text-decoration: underline;
}

.slot-hero__author-role {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.slot-hero__date {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  margin-left: auto;
  text-align: right;
}

.slot-hero__date-value {
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
}

@media (max-width: 560px) {
  .slot-hero__meta {
    gap: 0.75rem;
  }

  .slot-hero__date {
    margin-left: 0;
    text-align: left;
    width: 100%;
  }
}

/* Slots page — reset link next to the search form */
.slots-filterbar {
  gap: 0.6rem;
  align-items: stretch;
}

.slots-filterbar__reset {
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.slots-filterbar__reset:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 209, 102, 0.35);
}

/* Slot detail — description panel matches casino review card */
.slot-description-section {
  margin-bottom: 1.75rem;
}

.slot-description-card {
  margin: 0;
}
