/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #0d0d14;
  --bg-alt:    #111120;
  --card:      #16162a;
  --card-2:    #1c1c34;
  --border:    rgba(255,255,255,0.07);
  --gold:      #f5c518;
  --gold-2:    #e6a800;
  --green:     #22c55e;
  --blue:      #3b82f6;
  --purple:    #a855f7;
  --orange:    #f97316;
  --red:       #ef4444;
  --text:      #e8e8f0;
  --text-muted:#8888aa;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --glow-gold: 0 0 20px rgba(245,197,24,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================
   GRADIENT & UTILITY
   ============================ */
.gradient-text {
  background: linear-gradient(135deg, #f5c518, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, #f5c518, #e6a800);
  color: #0d0d14;
  box-shadow: var(--glow-gold);
}
.btn--gold:hover {
  background: linear-gradient(135deg, #ffd740, #f5c518);
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(245,197,24,0.45);
}

.btn--outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.btn--lg { padding: 14px 32px; font-size: 16px; border-radius: 10px; }
.btn--sm { padding: 7px 14px; font-size: 12px; border-radius: 6px; }
.btn--full { width: 100%; }

/* ============================
   HEADER
   ============================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,20,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  color: var(--text);
  font-weight: 700;
}
.logo__icon { font-size: 22px; line-height: 1; }
.logo__img { height: 28px; width: auto; display: block; }
.logo__text { font-size: 15px; line-height: 1.2; }
.logo__text strong { color: var(--gold); }

.nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.nav a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover { color: var(--text); }

.nav__cta { margin-left: 8px; }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  padding: 100px 0 110px;
  overflow: hidden;
  text-align: center;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-banner.png');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,10,18,0.55) 0%,
      rgba(10,10,18,0.45) 50%,
      rgba(10,10,18,0.72) 100%),
    linear-gradient(to right,
      rgba(10,10,18,0.3) 0%,
      transparent 40%,
      transparent 60%,
      rgba(10,10,18,0.3) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.25);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
}

.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 6vw, 62px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero__sub {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 560px;
  line-height: 1.7;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 36px;
}

.stat { text-align: center; }
.stat__value {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
}
.stat__label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ============================
   SECTIONS
   ============================ */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  background: rgba(245,197,24,0.1);
  color: var(--gold);
  border: 1px solid rgba(245,197,24,0.2);
  padding: 4px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 16px;
}

/* ============================
   CASINO CARDS (LIST)
   ============================ */
.casino-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.casino-card {
  display: grid;
  grid-template-columns: 52px 180px 1fr 200px 200px;
  align-items: center;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.casino-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245,197,24,0.2);
  box-shadow: var(--shadow);
}
.casino-card--featured {
  border-color: rgba(245,197,24,0.35);
  background: linear-gradient(135deg, #1a1a2e, #16162a);
  box-shadow: 0 0 30px rgba(245,197,24,0.08);
}

/* Rank */
.casino-card__rank {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}
.rank--gold   { color: var(--gold); }
.rank--silver { color: #c0c0c0; }
.rank--bronze { color: #cd7f32; }
.rank--default { color: var(--text-muted); }

/* Real logo in casino card list */
.casino-card__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 10px;
  height: 72px;
  transition: background 0.2s;
}
.casino-card__logo-wrap:hover { background: rgba(255,255,255,0.08); }
.casino-card__logo-wrap img {
  max-width: 140px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

/* Real logo in mini-review header */
.mini-review__logo-img {
  max-height: 36px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

/* Real logo in detailed review hero */
.review-hero__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  flex-shrink: 0;
  transition: background 0.2s;
}
.review-hero__logo-link:hover { background: rgba(255,255,255,0.08); }
.review-hero__logo-img {
  max-width: 180px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

/* Screenshot thumbnail in casino card */
.casino-card__screenshot {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.casino-card__screenshot:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.casino-card__screenshot img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Screenshot in mini-review card */
.mini-review__screenshot {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: opacity 0.2s;
  margin: -24px -24px 0;
}
.mini-review__screenshot:hover { opacity: 0.9; }
.mini-review__screenshot img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Screenshot in detailed review hero */
.review-hero__screenshot {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.review-hero__screenshot:hover { opacity: 0.9; }
.review-hero__screenshot img {
  width: 300px;
  height: 170px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Logo placeholder */
.logo-placeholder {
  display: block;
  padding: 12px 10px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
  transition: opacity 0.2s;
}
.logo-placeholder:hover { opacity: 0.85; }
.logo-placeholder--1 { background: linear-gradient(135deg, #1a1a4a, #2e2e7a); color: #a0a8ff; }
.logo-placeholder--2 { background: linear-gradient(135deg, #3a1010, #7a2020); color: #ffaaaa; }
.logo-placeholder--3 { background: linear-gradient(135deg, #0d2a1a, #0d4a2a); color: #6effa8; }
.logo-placeholder--4 { background: linear-gradient(135deg, #1a2a10, #3a4a10); color: #d4ff6e; }
.logo-placeholder--5 { background: linear-gradient(135deg, #2a1a3a, #4a1a6a); color: #e0a0ff; }

/* Info */
.casino-card__name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.casino-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 99px;
}
.tag--green  { background: rgba(34,197,94,0.15);  color: var(--green); }
.tag--blue   { background: rgba(59,130,246,0.15);  color: var(--blue); }
.tag--purple { background: rgba(168,85,247,0.15);  color: var(--purple); }
.tag--orange { background: rgba(249,115,22,0.15);  color: var(--orange); }

.casino-card__stars { display: flex; align-items: center; gap: 6px; }
.stars { color: var(--gold); font-size: 14px; }
.rating-value { font-weight: 700; font-size: 14px; }
.rating-count { color: var(--text-muted); font-size: 12px; }

/* Bonus */
.casino-card__bonus { text-align: center; }
.bonus-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
}
.bonus-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}
.bonus-desc { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* Actions */
.casino-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============================
   BONUS GRID
   ============================ */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.bonus-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.bonus-card--hot {
  border-color: rgba(245,197,24,0.4);
  background: linear-gradient(135deg, #1a150d, #1c1c34);
}

.bonus-card__badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #0d0d14;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
}

.bonus-card__casino-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  min-height: 60px;
}
.bonus-card__casino-logo img {
  max-width: 130px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.bonus-card__icon { font-size: 32px; }
.bonus-card__type { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.bonus-card__casino { font-weight: 700; font-size: 15px; }
.bonus-card__value {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
}
.bonus-card__terms {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.bonus-card__terms li { font-size: 13px; color: var(--text-muted); }

/* ============================
   REVIEW LAYOUT
   ============================ */
.review-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.review-hero {
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.review-hero__logo {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  padding: 20px 24px;
  background: linear-gradient(135deg, #1a1a4a, #2e2e7a);
  color: #a0a8ff;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: opacity 0.2s;
}
.review-hero__logo:hover { opacity: 0.85; }

.review-hero__scores {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.score-item { text-align: center; }
.score-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 800;
  margin: 0 auto 6px;
  border: 3px solid;
}
.score-circle--gold   { border-color: var(--gold);   color: var(--gold); }
.score-circle--green  { border-color: var(--green);  color: var(--green); }
.score-circle--blue   { border-color: var(--blue);   color: var(--blue); }
.score-circle--purple { border-color: var(--purple); color: var(--purple); }
.score-label { font-size: 11px; color: var(--text-muted); }

.review-section {
  margin-bottom: 28px;
}
.review-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.review-section p {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.75;
}

/* Deposit steps */
.deposit-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.deposit-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-2);
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid var(--border);
}
.deposit-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #0d0d14;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.deposit-step__title { font-weight: 600; font-size: 13px; margin-bottom: 2px; }
.deposit-step__val   { font-size: 13px; color: var(--text-muted); }

/* Promo list */
.promo-list { display: flex; flex-direction: column; gap: 10px; }
.promo-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--card-2);
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid var(--border);
}
.promo-item__icon { font-size: 20px; flex-shrink: 0; }
.promo-item__title { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.promo-item__desc  { font-size: 13px; color: var(--text-muted); }

/* Pros / Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pros, .cons {
  background: var(--card-2);
  border-radius: var(--radius);
  padding: 16px;
}
.pros__title { color: var(--green); font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.cons__title { color: var(--red);   font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.pros li, .cons li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pros li:last-child, .cons li:last-child { border: none; }

/* Sidebar */
.review-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 84px;
}

.sidebar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sidebar-card--bonus {
  border-color: rgba(245,197,24,0.3);
  background: linear-gradient(135deg, #1a150a, #1c1c34);
  text-align: center;
  padding: 24px;
}

.sidebar-card__header {
  background: var(--card-2);
  padding: 14px 20px;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border: none; }
.info-table td { padding: 10px 20px; font-size: 13px; }
.info-table td:first-child { color: var(--text-muted); }
.info-table td:last-child { font-weight: 600; text-align: right; }

.table-link { color: var(--gold); }
.table-link:hover { text-decoration: underline; }

.sidebar-bonus__amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--gold);
  margin: 16px 0 4px;
}
.sidebar-bonus__sub {
  font-size: 15px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 6px;
}
.sidebar-bonus__note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ============================
   MINI-REVIEWS
   ============================ */
.mini-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}

.mini-review {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s, border-color 0.2s;
}
.mini-review:hover {
  transform: translateY(-2px);
  border-color: rgba(245,197,24,0.2);
}

.mini-review__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.mini-review__logo {
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
}
.mini-review__rank {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.mini-review__title {
  font-size: 17px;
  font-weight: 700;
}
.mini-review__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.mini-review__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.fact {
  background: var(--card-2);
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fact__label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.fact__val   { font-size: 13px; font-weight: 700; }
.fact__val--good { color: var(--green); }
.fact__val--warn { color: var(--orange); }

/* ============================
   PAYMENT GRID
   ============================ */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.payment-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.payment-item--time { color: var(--green); }
.payment-icon { font-size: 16px; }

/* ============================
   AG RATING SIDEBAR
   ============================ */
.ag-rating {
  padding: 16px 20px;
  text-align: center;
}
.ag-score {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.ag-score span { font-size: 20px; color: var(--text-muted); }
.ag-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.ag-players, .ag-complaints {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
  border-top: 1px solid var(--border);
}
.ag-players strong  { color: var(--green); }
.ag-complaints strong { color: var(--green); }

/* ============================
   FULL REVIEWS
   ============================ */
.full-review {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  transition: border-color 0.2s;
}
.full-review:hover { border-color: rgba(245,197,24,0.2); }
.full-review:last-child { margin-bottom: 0; }

.full-review__top {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
}

.full-review__screenshot {
  display: block;
  overflow: hidden;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.full-review__screenshot img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.3s;
}
.full-review__screenshot:hover img { transform: scale(1.03); }

.full-review__head {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.full-review__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.full-review__logo {
  max-height: 38px;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(1.1);
}
.full-review__rank {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 900;
}
.full-review__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
}
.full-review__ag {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ag-pill {
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.ag-pill strong { color: var(--text); }
.ag-pill--good strong { color: var(--green); }
.ag-pill--warn strong { color: var(--orange); }

.full-review__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

.full-review__body {
  padding: 20px 28px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255,255,255,0.01);
}

.full-review__pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.full-review__facts {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

/* ============================
   COMPARISON TABLE
   ============================ */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.compare-table th {
  background: var(--card-2);
  padding: 14px 18px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.compare-table td {
  padding: 14px 18px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.compare-table tbody tr:last-child td { border: none; }
.compare-table tbody tr { background: var(--card); transition: background 0.15s; }
.compare-table tbody tr:hover { background: rgba(255,255,255,0.03); }

.compare-table__featured td { background: rgba(245,197,24,0.04); }
.compare-table__featured td:first-child { border-left: 3px solid var(--gold); }

/* Logo in comparison table */
.ct-casino {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ct-logo {
  max-width: 120px;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

.badge-top {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #0d0d14;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 99px;
  margin-left: 6px;
  vertical-align: middle;
}

.val-gold { color: var(--gold); font-weight: 700; }
.val-green { color: var(--green); font-weight: 700; }
.val-warn  { color: var(--orange); font-weight: 700; }

/* ============================
   FAQ
   ============================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item[open] { border-color: rgba(245,197,24,0.25); }

.faq-item__q {
  list-style: none;
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.faq-item__q:hover { background: rgba(255,255,255,0.03); }
.faq-item__q::after { content: '+'; font-size: 20px; color: var(--gold); flex-shrink: 0; }
.faq-item[open] .faq-item__q::after { content: '−'; }
.faq-item__q::-webkit-details-marker { display: none; }

.faq-item__a {
  padding: 14px 20px 18px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__desc {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 12px;
  max-width: 260px;
}

.footer__links { display: flex; gap: 48px; }
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col-title {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__disclaimer { font-size: 12px; color: var(--text-muted); }
.footer__copy       { font-size: 12px; color: var(--text-muted); }

/* ============================
   TRUSTED BY STRIP (inside footer)
   ============================ */
.trusted-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.trusted-strip__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.trusted-strip__logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trusted-logo {
  display: flex;
  align-items: center;
  opacity: 0.4;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.trusted-logo:hover { opacity: 0.85; }

.trusted-logo img {
  height: 20px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

/* ============================
   PAYMENT IMAGES (footer + review)
   ============================ */
.pay-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  height: 34px;
  transition: background 0.2s;
}
.pay-img-wrap:hover { background: rgba(255,255,255,0.1); }

.pay-img {
  height: 18px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
  display: block;
}

.payment-item__img {
  height: 18px;
  width: auto;
  max-width: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ============================
   18+ BADGE
   ============================ */
.badge-18 {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  opacity: 0.7;
}

/* ============================
   TESTIMONIALS SLIDER
   ============================ */

/* wrapper with side buttons */
.testi-slider {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* clipping window */
.testi-slider__viewport {
  flex: 1;
  overflow: hidden;
}

/* scrollable track */
.testi-slider__track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* each card takes 1/3 of viewport minus gaps */
.testi-slider__track .testi-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
}

/* nav buttons */
.testi-slider__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  user-select: none;
}
.testi-slider__btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

/* dots */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.testi-dot--active {
  background: var(--gold);
  transform: scale(1.3);
}

.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s;
}
.testi-card:hover {
  border-color: rgba(245,197,24,0.2);
}

.testi-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--card-2), #2a2a4a);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}

.testi-meta {
  flex: 1;
  min-width: 0;
}

.testi-name {
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.testi-country {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--card-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  letter-spacing: 0.3px;
}

.testi-casino {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}

.testi-stars {
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
  letter-spacing: 1px;
}

.testi-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}

.testi-date {
  font-size: 11px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

/* ============================
   FOOTER PAYMENTS
   ============================ */
.footer__payments {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.footer__payments-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.footer__payments-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Payment badges */
.pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  min-width: 44px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}
.pay-badge:hover { opacity: 0.75; }

.pay-badge--visa {
  background: #1a1f71;
  color: #fff;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 1px;
}

.pay-badge--mc {
  background: #252525;
  position: relative;
  width: 44px;
  gap: 0;
  padding: 0;
  overflow: visible;
}
.mc-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.mc-circle--red    { background: #eb001b; margin-right: -7px; }
.mc-circle--orange { background: #f79e1b; opacity: 0.95; }

.pay-badge--btc {
  background: #f7931a;
  color: #fff;
  font-size: 15px;
}

.pay-badge--eth {
  background: #627eea;
  color: #fff;
}

.pay-badge--skrill {
  background: #862165;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.pay-badge--neteller {
  background: #0f3c78;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.pay-badge--paypal {
  background: #003087;
  color: #009cde;
  font-size: 15px;
  font-weight: 900;
}

.pay-badge--psc {
  background: #c40f0f;
  color: #fff;
  font-size: 10px;
}

.pay-badge--applepay {
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  font-family: -apple-system, sans-serif;
  letter-spacing: -0.3px;
  min-width: 52px;
}

.pay-badge--interac {
  background: #f5b300;
  color: #0d0d14;
  font-size: 10px;
  font-weight: 700;
  min-width: 54px;
}

/* ============================
   FOOTER RESPONSIBLE GAMBLING
   ============================ */
.footer__rg {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.rg-badge {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.rg-badge:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
}

.rg-badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .casino-card { grid-template-columns: 44px 1fr 1fr; }
  .casino-card__logo { display: none; }
  .mini-review__screenshot img { height: 130px; }
  .casino-card__actions { flex-direction: row; }
  .review-layout { grid-template-columns: 1fr; }
  .review-sidebar { position: static; }
  .full-review__top { grid-template-columns: 260px 1fr; }
  .full-review__facts { grid-template-columns: repeat(3, 1fr); }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .trusted-strip .container { gap: 16px; }
  .trusted-strip__logos { gap: 14px; }
  .trusted-logo img { height: 18px; }
  .nav { display: none; }
  .hero__stats { flex-wrap: wrap; gap: 16px; padding: 16px 20px; }
  .stat__divider { display: none; }
  .casino-card { grid-template-columns: 40px 1fr; }
  .casino-card__bonus { text-align: left; }
  .casino-card__actions { flex-direction: row; grid-column: 1 / -1; }
  .bonus-grid { grid-template-columns: 1fr 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .review-hero { flex-direction: column; }
  .review-hero__scores { flex-wrap: wrap; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .full-review__top { grid-template-columns: 1fr; }
  .full-review__screenshot img { min-height: 180px; max-height: 200px; }
  .full-review__screenshot { border-right: none; border-bottom: 1px solid var(--border); }
  .full-review__pros-cons { grid-template-columns: 1fr; }
  .full-review__facts { grid-template-columns: repeat(2, 1fr); }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-reviews { grid-template-columns: 1fr; }
  /* slider: 1 card on mobile */
  .testi-slider__track .testi-card { flex: 0 0 100%; }
  .footer__payments { gap: 12px; }
  .footer__links { flex-direction: column; gap: 24px; }
  .rg-badge-18 { margin-left: 0; }
}

/* slider: 2 cards on tablet */
@media (min-width: 640px) and (max-width: 1023px) {
  .testi-slider__track .testi-card { flex: 0 0 calc((100% - 20px) / 2); }
}

@media (max-width: 480px) {
  .bonus-grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; }
  .mini-review__facts { grid-template-columns: 1fr 1fr; }
  .footer__payments-icons { gap: 6px; }
  /* hide side buttons on very small screens — swipe only */
  .testi-slider__btn { display: none; }
}
