@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@600;700;800&display=swap");

/* ── Design tokens ── */
:root {
  --bg-deep: #050810;
  --bg-card: #0d1526;
  --bg-card-solid: #0c1224;
  --bg-elevated: #141c34;
  --bg-panel: #101a30;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #a8862a;
  --accent-green: #22c55e;
  --accent-green-glow: rgba(34, 197, 94, 0.35);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-subtle: rgba(212, 175, 55, 0.18);
  --border-gold: rgba(212, 175, 55, 0.45);
  --shadow-card: 0 10px 28px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.18);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", "Inter", system-ui, sans-serif;
  --container: 1140px;
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(34, 197, 94, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, rgba(5, 8, 16, 0.3) 0%, var(--bg-deep) 100%);
  pointer-events: none;
  z-index: 0;
}

.bg-orbs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}

.bg-orbs span:nth-child(1) {
  width: 400px;
  height: 400px;
  background: rgba(212, 175, 55, 0.12);
  top: -100px;
  left: -100px;
}

.bg-orbs span:nth-child(2) {
  width: 300px;
  height: 300px;
  background: rgba(34, 197, 94, 0.08);
  top: 40%;
  right: -80px;
  animation-delay: -7s;
}

.bg-orbs span:nth-child(3) {
  width: 250px;
  height: 250px;
  background: rgba(99, 102, 241, 0.06);
  bottom: 10%;
  left: 20%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Disclaimer bar ── */
.header-disclamer {
  width: 100%;
  padding: 10px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  background: linear-gradient(90deg, rgba(20, 28, 52, 0.95), rgba(12, 18, 36, 0.98), rgba(20, 28, 52, 0.95));
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 100;
}

/* ── Sticky top header ── */
.top {
  position: sticky;
  top: 0;
  z-index: 90;
  background: linear-gradient(180deg, #070c18 0%, #050810 100%);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 1px 0 rgba(212, 175, 55, 0.08);
  transition: box-shadow var(--transition);
}

.top.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(212, 175, 55, 0.15);
}

.top .container {
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
}

.logo-cover {
  display: none;
  max-width: 180px;
  margin: 0 auto 12px;
}

.logo-cover img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.2));
}

.top h1 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.last-updated {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.last-updated::before {
  content: "● ";
  color: var(--accent-green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── Hero / header section ── */
header {
  text-align: center;
  padding: 36px 0 28px;
}

header > p:first-child {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.6;
}

.sub-headline {
  max-width: 780px;
  margin: 0 auto 28px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.font-bold {
  font-weight: 600;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Trust stats bar */
.trust-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 32px;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.trust-stats .stat {
  text-align: center;
  min-width: 120px;
  padding: 18px 24px;
  position: relative;
}

.trust-stats .stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-gold), transparent);
}

.trust-stats .stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
}

.trust-stats .stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Icon strip */
.iconsList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.iconsList .item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all var(--transition);
}

.iconsList .item:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.iconsList .item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* ── Brand cards — desktop ── */
.brands.desktop {
  display: block;
  padding-bottom: 20px;
}

.brands.mobile {
  display: none;
}

.brandsSpan {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Full-bleed offers: no container max-width, no side gutters */
.brandsFull {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.brandItem {
  display: grid;
  grid-template-columns: 300px 1fr 110px 200px 180px;
  align-items: stretch;
  gap: 0;
  padding: 0;
  margin-bottom: 18px;
  min-height: 172px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}

.brandItem.visible {
  opacity: 1;
  transform: translateY(0);
}

.brandItem:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

/* #1 featured card */
.brandItem:first-of-type {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card), 0 0 60px rgba(212, 175, 55, 0.14);
}

.brandItem:first-of-type::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--gold), transparent 40%, transparent 60%, var(--gold-dark));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Logo panel — the dominant, full-height brand zone */
.logoPanel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 26px;
  background: linear-gradient(145deg, var(--bg-panel) 0%, #0a1122 100%);
  border-right: 1px solid var(--border-subtle);
  overflow: hidden;
}

.logoPanel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, rgba(212, 175, 55, 0.12), transparent 70%);
  pointer-events: none;
}

.logoPanel img {
  position: relative;
  z-index: 1;
  max-width: 230px;
  max-height: 96px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
  transition: transform var(--transition);
}

.brandItem:hover .logoPanel img {
  transform: scale(1.06);
}

/* Rank chip — poker-chip badge, overlaid on the logo panel */
.rankChip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
  color: #150f00;
  background: radial-gradient(circle at 35% 30%, var(--gold-light), var(--gold) 55%, var(--gold-dark) 100%);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45), inset 0 0 0 3px rgba(0, 0, 0, 0.18);
}

.brandItem:first-of-type .rankChip {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45), inset 0 0 0 3px rgba(0, 0, 0, 0.18), 0 0 16px rgba(212, 175, 55, 0.5);
}

.logoPanel .tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  max-width: calc(100% - 74px);
  overflow: hidden;
  text-overflow: ellipsis;
}

.tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 5px 10px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0a;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}

.brandItem:first-of-type .tag,
.brandItemMobile:first-of-type .tag {
  animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 12px 2px rgba(212, 175, 55, 0.3); }
}

/* Content cells to the right of the logo panel */
.brandItem > .bonuses,
.brandItem > .rating,
.brandItem > .claimBtn {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brandItem > .rating,
.brandItem > .claimBtn {
  align-items: center;
  border-left: 1px solid rgba(212, 175, 55, 0.1);
}

.brandItem > .paymentsMethods {
  padding: 24px 16px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(212, 175, 55, 0.1);
}


/* Bonuses */
.bonuses h2 {
  font-family: var(--font-body);
  font-size: inherit;
  font-weight: inherit;
}

.bonuses h2 p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-primary);
}

.bonus-3 {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--text-secondary) !important;
}

.online-players {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-green);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50px;
}

.online-players::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px var(--accent-green-glow);
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.online-players-count {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* Rating */
.rating {
  text-align: center;
}

.rating h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.stars-text {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 4px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.rating p {
  font-size: 11px;
  color: var(--text-muted);
}

/* Payment methods */
.paymentsMethods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

.paymentsMethods .item img {
  height: 22px;
  width: auto;
  opacity: 0.85;
  transition: opacity var(--transition);
  filter: grayscale(20%);
}

.paymentsMethods .item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* CTA button */
.claimBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.btn-redirect.button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 150px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-redirect.button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, #ffe066 0%, var(--gold-light) 50%, var(--gold) 100%);
}

.btn-redirect .text {
  position: relative;
  z-index: 2;
}

.btn-redirect .shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: shimmer 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes shimmer {
  0% { left: -100%; }
  40%, 100% { left: 150%; }
}

.visit-site-link {
  font-size: 12px;
  color: var(--text-muted);
  transition: color var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.visit-site-link:hover {
  color: var(--gold-light);
}

/* Policy text */
.policy-text {
  margin: -8px 0 16px;
  padding: 0 24px;
}

.policy-text p {
  font-size: 10px;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: left;
}

/* ── Mobile brand cards ── */
@media (max-width: 900px) {
  .brands.desktop {
    display: none;
  }

  .brands.mobile {
    display: block;
    padding-bottom: 20px;
  }

  .brandItemMobile {
    position: relative;
    margin-bottom: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .brandItemMobile.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .brandItemMobile:first-of-type {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-card), 0 0 40px rgba(212, 175, 55, 0.12);
  }

  /* Full-width logo banner */
  .logoPanelMobile {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 128px;
    padding: 30px 60px;
    background: linear-gradient(145deg, var(--bg-panel) 0%, #0a1122 100%);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
  }

  .logoPanelMobile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 45%, rgba(212, 175, 55, 0.12), transparent 70%);
    pointer-events: none;
  }

  .logoPanelMobile .brandLogo {
    position: relative;
    z-index: 1;
    max-width: 240px;
    max-height: 88px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
  }

  .logoPanelMobile .rankChip {
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .logoPanelMobile .tag {
    top: 12px;
    right: 12px;
    max-width: calc(100% - 66px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .cardBody {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 18px 20px;
  }

  .cardBody .bonuses p {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text-primary);
    text-align: center;
  }

  .cardBody .online-players {
    margin: 10px auto 0;
  }

  .statsRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 4px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }

  .statsRow .rating {
    flex: 0 0 auto;
    text-align: center;
  }

  .statsRow .rating h2 {
    font-size: 1.35rem;
  }

  .statsRow .paymentsMethods {
    flex: 1;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
  }

  .cardBody .claimBtn .btn-redirect.button {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
  }

  .brandItemMobile .policy-text {
    padding: 0 18px 16px;
    margin-top: -6px;
  }
}


/* ── FAQ ── */
.faqBox {
  padding: 48px 0;
}

.fqa {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  background: linear-gradient(135deg, var(--text-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fqaBox {
  margin-bottom: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.fqaBox:hover {
  border-color: var(--border-gold);
}

.fqaBox h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 18px 48px 18px 20px;
  cursor: pointer;
  position: relative;
  transition: color var(--transition);
  user-select: none;
}

.fqaBox h3::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform var(--transition);
}

.fqaBox.open h3::after {
  transform: translateY(-50%) rotate(45deg);
}

.fqaBox h3:hover {
  color: var(--gold-light);
}

.fqaBox p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.fqaBox.open p {
  max-height: 300px;
  opacity: 1;
  padding: 0 20px 18px;
}

/* ── About section ── */
.about-section-wrapper {
  padding: 48px 0;
  background: linear-gradient(180deg, transparent, rgba(12, 18, 36, 0.5) 20%, rgba(12, 18, 36, 0.5) 80%, transparent);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.about-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-primary);
}

.about-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  opacity: 0;
  transform: translateX(-20px);
}

.about-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.about-item:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.about-image {
  flex: 0 0 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.about-image img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(1.2);
}

.about-item article h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.about-item article p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── Play safe ── */
.playSafe {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.safeBrands {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 20px;
}

.safeBrands img {
  height: 36px;
  width: auto;
  opacity: 0.7;
  transition: opacity var(--transition);
  filter: grayscale(30%);
}

.safeBrands a:hover img,
.safeBrands img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ── Footer ── */
.coprights {
  padding: 32px 24px 48px;
  text-align: center;
  background: rgba(5, 8, 16, 0.9);
  border-top: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}

.coprights p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 8px;
}

/* ── Exit popup ── */
.popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  z-index: 99999;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.popup-underlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 16, 0.92);
}

.popup-body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  margin: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  background: linear-gradient(160deg, var(--bg-elevated), var(--bg-card-solid));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.15);
  overflow: hidden;
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close-popup-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  cursor: pointer;
  transform: rotate(45deg);
  transition: all var(--transition);
  z-index: 10;
}

.close-popup-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-gold);
}

.popup-logo-cover {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 140px;
}

.popup-logo-cover img {
  max-width: 220px;
  max-height: 80px;
  object-fit: contain;
}

.popup-button-cover {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.offer-message {
  text-align: center;
}

.offer-message .welcome-1 {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.offer-message .welcome-2 {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent-green), #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.offer-message .welcome-3 {
  font-size: 14px;
  color: var(--text-secondary);
}

.offer-buttons .get-bonus {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.offer-buttons .get-bonus:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* ── Responsive tweaks ── */
@media (max-width: 1100px) and (min-width: 901px) {
  .brandItem {
    grid-template-columns: 220px 1fr 90px 160px 150px;
    font-size: 14px;
  }

  .brandItem > .bonuses,
  .brandItem > .rating,
  .brandItem > .paymentsMethods,
  .brandItem > .claimBtn {
    padding: 18px 10px;
  }

  .logoPanel {
    padding: 20px 16px;
  }

  .logoPanel img {
    max-width: 160px;
    max-height: 76px;
  }

  .bonuses h2 p {
    font-size: 14px;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 16px;
  }

  .sub-headline {
    display: block;
    font-size: 13px;
  }

  .trust-stats {
    gap: 16px;
    padding: 12px 16px;
  }

  .trust-stats .stat-value {
    font-size: 1.25rem;
  }

  .iconsList {
    gap: 8px;
  }

  .iconsList .item {
    font-size: 11px;
    padding: 8px 12px;
  }

  .iconsList .item img {
    width: 18px;
    height: 18px;
  }

  .about-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
  }

  .about-image {
    margin-bottom: 8px;
  }

  .safeBrands {
    gap: 20px;
  }

  .safeBrands img {
    height: 28px;
  }

  .close-popup-btn {
    top: 8px;
    right: 8px;
  }
}

@media (max-width: 480px) {
  .header-disclamer {
    font-size: 10px;
    padding: 8px 12px;
  }

  .iconsList .item:nth-child(4) {
    font-size: 10px;
  }
}

/* ══════════════════════════════════════════════════
   PREMIUM ENHANCEMENTS — VIP layer
   (additive only — no rule below alters existing
   structural selectors, sizing or functionality)
══════════════════════════════════════════════════ */

/* ── Fine film-grain, adds depth to the flat gradients ── */
.bg-orbs::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 200;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--accent-green));
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
  transition: width 0.1s linear;
}

/* ── Header spotlight sweep ── */
.top {
  overflow: hidden;
}

.top::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -20%;
  width: 60%;
  height: 220%;
  background: linear-gradient(100deg, transparent, rgba(212, 175, 55, 0.09), transparent);
  transform: rotate(8deg);
  animation: spotlightSweep 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes spotlightSweep {
  0%, 100% { left: -30%; }
  50% { left: 110%; }
}

.top h1 {
  position: relative;
}

/* ── Ornamental section dividers ── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 0;
  position: relative;
  z-index: 1;
}

.section-divider::before,
.section-divider::after {
  content: "";
  height: 1px;
  width: 100%;
  max-width: 220px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.section-divider .diamond {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* ── VIP ribbon on the #1 pick ── */
.vip-ribbon {
  position: absolute;
  top: 20px;
  right: -46px;
  z-index: 6;
  width: 170px;
  padding: 5px 0;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transform: rotate(40deg);
  pointer-events: none;
}

.brandItem:first-of-type,
.brandItemMobile:first-of-type {
  position: relative;
}

.brandItemMobile .vip-ribbon {
  top: 16px;
  right: -46px;
  width: 160px;
  font-size: 9px;
}

/* ── Star rating fill bar ── */
.rating-bar {
  width: 72px;
  height: 3px;
  margin: 2px auto 0;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
  transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Verified check next to reviews ── */
.verified-check {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  color: var(--accent-green);
  letter-spacing: 0.02em;
}

.verified-check svg { width: 10px; height: 10px; }

/* ── CTA button: arrow glide + ripple ── */
.btn-redirect.button {
  gap: 8px;
}

.btn-redirect .arrow {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: transform var(--transition);
}

.btn-redirect.button:hover .arrow {
  transform: translateX(4px);
}

.btn-redirect.button {
  isolation: isolate;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, 0.55);
  animation: rippleAnim 0.6s ease-out forwards;
  pointer-events: none;
  z-index: 1;
}

@keyframes rippleAnim {
  to { transform: scale(3); opacity: 0; }
}

/* ── Back to top ── */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card-solid));
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5), 0 0 0 rgba(212, 175, 55, 0);
  cursor: pointer;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, box-shadow var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5), var(--shadow-gold);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ── Trust seal strip (about-section signature) ── */
.trust-seal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px auto 0;
}

.trust-seal .seal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold-light);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02));
  border: 1px solid var(--border-gold);
  border-radius: 50px;
}

.trust-seal .seal svg { width: 13px; height: 13px; }

/* ── About icon micro-interaction ── */
.about-item:hover .about-image {
  transform: rotate(-6deg) scale(1.06);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
}

.about-image {
  transition: transform var(--transition), box-shadow var(--transition);
}

/* ── Featured card corner glow accent (rank chip already glows via box-shadow) ── */

/* ── Responsive: hide ribbon overflow cleanly on very small screens ── */
@media (max-width: 380px) {
  .vip-ribbon { right: -42px; width: 130px; font-size: 8px; }
  .back-to-top { right: 14px; bottom: 14px; width: 42px; height: 42px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
