/* ==============================================
   NDrops – main.css
   Dark theme · Amber/Gold accent
   Fonts: Bricolage Grotesque (display) + Manrope (body)
   ============================================== */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
table { border-collapse: collapse; width: 100%; }

/* ---------- CSS VARIABLES ---------- */
:root {
  --primary:        #f59e0b;
  --primary-hover:  #d97706;
  --primary-light:  #1c1500;
  --bg:             #0b0d12;
  --bg-soft:        #0f1119;
  --bg-card:        #151820;
  --bg-card2:       #1b1f2b;
  --text:           #e8edf5;
  --text-muted:     #7a8499;
  --border:         #1f2334;
  --amber:          #f59e0b;
  --red:            #ef4444;
  --green:          #22c55e;
  --radius-sm:      6px;
  --radius:         10px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --max-w:          1200px;
  --max-w-content:  920px;
  --nav-h:          72px;
  --shadow:         0 4px 30px rgba(0,0,0,0.5);
  --shadow-card:    0 2px 16px rgba(0,0,0,0.4);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}
h1 { font-size: clamp(1.75rem, 4.5vw, 2.8rem); }
h2 { font-size: clamp(1.3rem, 2.8vw, 1.9rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
p { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 700; }

/* ---------- CONTAINER ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--content {
  max-width: var(--max-w-content);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   HEADER + NAV
   ============================================ */
.site-header {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11,13,18,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  width: 100%;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  margin-right: auto;
  flex-shrink: 0;
}
.nav__logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--primary), #d97706);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: #0b0d12;
  flex-shrink: 0;
}
.nav__logo-text { color: var(--text); }
.nav__logo-text em { color: var(--primary); font-style: normal; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--primary); }
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-active span:nth-child(2) { opacity: 0; }
.nav__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- MOBILE DRAWER (sibling to header!) ---------- */
.mobile-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  transform: translateY(-110%);
  transition: transform 0.32s ease;
  z-index: 99;
  padding: 0.5rem 1.5rem 1.5rem;
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer__list { display: flex; flex-direction: column; }
.mobile-drawer__list a {
  display: block;
  padding: 0.9rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-drawer__list li:last-child a { border-bottom: none; }
.mobile-drawer__list a:hover { color: var(--primary); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: calc(var(--nav-h) + 2.75rem);
  padding-bottom: 2.75rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-30%);
  width: 900px; height: 450px;
  background: radial-gradient(ellipse at 60% 40%, rgba(245,158,11,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--primary-light);
  border: 1px solid rgba(245,158,11,0.25);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hero__title { max-width: 820px; margin-bottom: 1rem; }
.hero__lead {
  max-width: 660px;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.25rem;
}
.hero__stat strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hero__stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 3.5rem 0; }
.section--alt { background: var(--bg-soft); }
.section__title { margin-bottom: 0.5rem; }
.section__lead { color: var(--text-muted); margin-bottom: 2rem; max-width: 680px; }

/* ============================================
   COMPACT LISTING
   ============================================ */
.listing {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.listing__row {
  display: grid;
  grid-template-columns: 2.25rem 120px 1fr auto auto;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  transition: border-color 0.2s, transform 0.15s;
  position: relative;
  overflow: hidden;
}
.listing__row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.2s;
  border-radius: 2px 0 0 2px;
}
.listing__row:hover::before { background: var(--primary); }
.listing__row:hover { border-color: rgba(245,158,11,0.3); transform: translateX(3px); }
.listing__rank {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
}
.listing__rank--gold { color: var(--primary); }
.listing__logo-wrap { display: flex; align-items: center; }
.listing__logo {
  height: 38px;
  max-width: 110px;
  object-fit: contain;
}
.listing__info { min-width: 0; }
.listing__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.listing__bonus {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.listing__stars {
  color: var(--amber);
  font-size: 0.82rem;
  white-space: nowrap;
  letter-spacing: 1px;
}
.listing__cta {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #0b0d12;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.5rem 1.05rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.listing__cta:hover { background: var(--primary-hover); transform: scale(1.04); }

/* ============================================
   CASINO DETAIL CARDS
   ============================================ */
.casino-cards { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.casino-card:hover {
  border-color: rgba(245,158,11,0.3);
  box-shadow: 0 4px 32px rgba(245,158,11,0.06);
}
.casino-card__topbar {
  background: linear-gradient(90deg, rgba(245,158,11,0.1) 0%, rgba(245,158,11,0.03) 60%, transparent 100%);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.casino-card__rank-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--primary);
  line-height: 1;
}
.casino-card__rank-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.casino-card__body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
}
.casino-card__content { padding: 1.75rem; }
.casino-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.casino-card__logo-img {
  height: 42px;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(1.1);
}
.casino-card__name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
}
.casino-card__bonus-tag {
  margin-left: auto;
  background: var(--primary-light);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.casino-card__text {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.casino-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
}
.fact-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
}
.casino-card__ctas { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary { background: var(--primary); color: #0b0d12; }
.btn--primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(245,158,11,0.3); }
.btn--ghost { background: transparent; border: 1px solid var(--border); color: var(--text-muted); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.casino-card__screenshot-col {
  border-left: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.casino-card__screenshot-link { display: block; height: 100%; }
.casino-card__screenshot {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.casino-card__screenshot-link:hover .casino-card__screenshot { transform: scale(1.04); }

/* ============================================
   PROSE / ARTICLE SECTIONS
   ============================================ */
.article-sections { padding: 3rem 0 1rem; }
.prose-block {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}
.prose-block:first-child { border-top: none; padding-top: 0; }
.prose-block h2 { margin-bottom: 1.1rem; }
.prose-block p { color: var(--text-muted); font-size: 0.96rem; }
.prose-block ul, .prose-block ol {
  color: var(--text-muted);
  font-size: 0.96rem;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.prose-block ul { list-style: disc; }
.prose-block ol { list-style: decimal; }
.prose-block li { margin-bottom: 0.5rem; line-height: 1.7; }

/* ============================================
   COMPARISON TABLE
   ============================================ */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin: 1.5rem 0;
}
.comp-table { font-size: 0.88rem; }
.comp-table thead tr { background: var(--bg-card2); }
.comp-table th {
  padding: 0.85rem 1.1rem;
  text-align: left;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.comp-table td {
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tbody tr:hover td { background: rgba(245,158,11,0.03); }
.comp-table td:first-child { font-weight: 700; }
.td-highlight { color: var(--primary); font-weight: 700; }
.td-muted { color: var(--text-muted); }

/* ============================================
   FAQ
   ============================================ */
.faq { display: flex; flex-direction: column; gap: 2rem; }
.faq__item h3 {
  color: var(--text);
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
}
.faq__item p { color: var(--text-muted); font-size: 0.95rem; }

/* ============================================
   RESPONSIBLE GAMBLING BANNER
   ============================================ */
.rg-banner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2.5rem;
}
.rg-banner__icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.rg-banner__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.rg-banner__text { font-size: 0.84rem; color: var(--text-muted); margin: 0; }
.rg-banner__text a { color: var(--primary); text-decoration: underline; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.footer__logo-icon {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--primary), #d97706);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  color: #0b0d12;
  flex-shrink: 0;
}
.footer__logo em { color: var(--primary); font-style: normal; }
.footer__tagline { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 1rem; }
.footer__18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  font-size: 0.7rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer__col h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__col ul a {
  font-size: 0.86rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--primary); }
.footer__rg-text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; }
.footer__rg-text a { color: var(--primary); text-decoration: underline; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__copyright { font-size: 0.78rem; color: var(--text-muted); }
.footer__legal-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__legal-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__legal-links a:hover { color: var(--primary); }

/* ============================================
   LEGAL PAGES – Page Hero
   ============================================ */
.page-hero {
  padding: calc(var(--nav-h) + 2.25rem) 0 2rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 300px;
  background: radial-gradient(ellipse at 80% 30%, rgba(245,158,11,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 0.5rem; }
.page-hero .lead { color: var(--text-muted); font-size: 1rem; }

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs { padding: 1rem 0; border-bottom: 1px solid var(--border); }
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.breadcrumbs li { display: flex; align-items: center; }
.breadcrumbs li + li::before {
  content: '›';
  margin: 0 0.45rem;
  color: var(--border);
}
.breadcrumbs a { color: var(--primary); }
.breadcrumbs a:hover { text-decoration: underline; }

/* ============================================
   SECTION CARDS (legal pages)
   ============================================ */
.section-prose { padding: 2.5rem 0 4rem; }
.section-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 1rem;
}
.section-card h2 { font-size: 1.2rem; margin-bottom: 1rem; }
.section-card h3 { font-size: 1rem; margin-bottom: 0.6rem; margin-top: 1.5rem; }
.section-card h3:first-child { margin-top: 0; }
.section-card p { font-size: 0.93rem; color: var(--text-muted); }
.section-card ul, .section-card ol {
  font-size: 0.93rem;
  color: var(--text-muted);
  padding-left: 1.3rem;
  margin-bottom: 1rem;
}
.section-card ul { list-style: disc; }
.section-card ol { list-style: decimal; }
.section-card li { margin-bottom: 0.4rem; }
.section-card a { color: var(--primary); text-decoration: underline; }

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-form-card h2 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.7rem 0.95rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  transition: border-color 0.2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8499' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.2rem; cursor: pointer; }
.form-select option { background: var(--bg-card); color: var(--text); }
.form-checkbox { display: flex; align-items: flex-start; gap: 0.65rem; cursor: pointer; }
.form-checkbox input[type="checkbox"] { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--primary); flex-shrink: 0; }
.form-checkbox span { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }
.form-checkbox a { color: var(--primary); text-decoration: underline; }
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.contact-info-card h3 { margin-bottom: 1.25rem; font-size: 1.1rem; }
.contact-info-item {
  display: flex;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-item:first-child { padding-top: 0; }
.ci-icon { font-size: 1.2rem; flex-shrink: 0; }
.ci-label { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; }
.ci-value { font-size: 0.88rem; color: var(--text); }
.ci-value a { color: var(--primary); text-decoration: underline; }

/* ============================================
   AFFILIATE NOTE
   ============================================ */
.affiliate-note {
  background: rgba(245,158,11,0.05);
  border: 1px solid rgba(245,158,11,0.18);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  font-size: 0.79rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.affiliate-note strong { color: var(--primary); }

/* ============================================
   UTILITY
   ============================================ */
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .casino-card__body { grid-template-columns: 1fr; }
  .casino-card__screenshot-col {
    border-left: none;
    border-top: 1px solid var(--border);
    max-height: 220px;
  }
  .casino-card__screenshot { min-height: 220px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .listing__row { grid-template-columns: 1.75rem 90px 1fr auto; gap: 0.7rem; }
  .listing__stars { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .listing__row { padding: 0.75rem 1rem; gap: 0.6rem; }
  .listing__cta { padding: 0.45rem 0.8rem; font-size: 0.74rem; }
  .listing__logo { height: 30px; max-width: 80px; }
  .casino-card__content { padding: 1.25rem; }
  .casino-card__header { flex-wrap: wrap; }
  .casino-card__bonus-tag { margin-left: 0; }
  .hero__stats { gap: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .section-card { padding: 1.35rem; }
  .contact-form-card { padding: 1.35rem; }
}