/* =============================================
   10BonusDrop — main.css
   Theme: Light + Emerald | Bricolage Grotesque + Plus Jakarta Sans
   ============================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --primary:        #059669;
  --primary-hover:  #047857;
  --primary-light:  #ecfdf5;
  --primary-dark:   #065f46;
  --bg:             #ffffff;
  --bg-soft:        #f8fafc;
  --bg-card:        #ffffff;
  --text:           #0f172a;
  --text-muted:     #475569;
  --text-light:     #94a3b8;
  --border:         #e2e8f0;
  --border-hover:   #cbd5e1;
  --amber:          #f59e0b;
  --red:            #dc2626;
  --shadow-sm:      0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:         0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-md:      0 8px 24px rgba(0,0,0,.10), 0 3px 8px rgba(0,0,0,.05);
  --shadow-lg:      0 16px 40px rgba(0,0,0,.12);
  --radius-sm:      6px;
  --radius:         10px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --max-w:          1200px;
  --max-w-content:  920px;
  --nav-h:          72px;
  --font-display:   'Bricolage Grotesque', sans-serif;
  --font-body:      'Plus Jakarta Sans', sans-serif;
  --transition:     0.2s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; }
h2 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 700; }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

strong { color: var(--text); font-weight: 600; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  height: 100%;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
  margin-right: auto;
}

.nav__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.nav__logo-text span { color: var(--primary); }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav__links a {
  display: inline-block;
  padding: .4rem .75rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: background var(--transition);
  flex-shrink: 0;
}

.nav__burger:hover { background: var(--bg-soft); }

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open 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;
  z-index: 850;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-110%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}

.mobile-drawer.is-open {
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-drawer__list {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem;
  gap: .25rem;
}

.mobile-drawer__list a {
  display: block;
  padding: .75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.mobile-drawer__list a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: calc(var(--nav-h) + 2.5rem) 0 2rem;
  background: linear-gradient(160deg, #f0fdf4 0%, #ecfdf5 40%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .75rem;
  background: var(--primary-light);
  border: 1px solid #a7f3d0;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.hero__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  margin-bottom: .875rem;
  max-width: 720px;
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 660px;
  margin-bottom: 1.5rem;
}

/* Stats rail */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text-muted);
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.hero__stat-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 3rem 0; }
.section--soft { background: var(--bg-soft); }
.section--bordered { border-top: 1px solid var(--border); }

.section__header {
  margin-bottom: 1.75rem;
}

.section__header h2 { margin-bottom: .5rem; }

.section__lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 700px;
}

/* =============================================
   COMPACT LISTING (18 rows)
   ============================================= */
.listing { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }

.listing__header {
  display: grid;
  grid-template-columns: 48px 1fr 140px 90px 120px;
  gap: .5rem;
  align-items: center;
  padding: .6rem 1rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.listing__row {
  display: grid;
  grid-template-columns: 48px 1fr 140px 90px 120px;
  gap: .5rem;
  align-items: center;
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  transition: background var(--transition);
}

.listing__row:last-child { border-bottom: none; }
.listing__row:hover { background: #f0fdf4; }

.listing__rank {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-light);
  text-align: center;
}

.listing__rank--top { color: var(--primary); }

.listing__brand {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.listing__logo {
  width: 72px;
  height: 28px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

.listing__logo-placeholder {
  width: 72px;
  height: 28px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
}

.listing__name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
  white-space: nowrap;
}

.listing__bonus {
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: .2rem .5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  white-space: nowrap;
}

.listing__stars {
  display: flex;
  gap: 1px;
  justify-content: center;
}

.listing__stars svg {
  width: 14px;
  height: 14px;
  fill: var(--amber);
}

.listing__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .4rem .85rem;
  background: var(--primary);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.listing__cta:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

/* =============================================
   DETAILED CASINO CARDS
   ============================================= */
.casino-cards { display: flex; flex-direction: column; gap: 2.5rem; }

.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.casino-card:hover { box-shadow: var(--shadow); }

.casino-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}

.casino-card__rank-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.casino-card__logo-wrap {
  height: 36px;
  display: flex;
  align-items: center;
}

.casino-card__logo {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.casino-card__logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.casino-card__meta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.casino-card__bonus-tag {
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-light);
  border: 1px solid #a7f3d0;
  padding: .3rem .7rem;
  border-radius: 100px;
}

.casino-card__stars {
  display: flex;
  gap: 1px;
}

.casino-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--amber);
}

.casino-card__body { padding: 1.5rem; }

.casino-card__screenshot-link {
  display: block;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.casino-card__screenshot-link:hover { box-shadow: var(--shadow-md); }

.casino-card__screenshot {
  width: 100%;
  height: auto;
  display: block;
}

.casino-card__text { margin-bottom: 1.25rem; }

.casino-card__text p { color: var(--text-muted); line-height: 1.75; }

.casino-card__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.25rem;
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(5,150,105,.25);
}

.btn--primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(5,150,105,.35);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn--outline:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

/* =============================================
   PROSE SECTIONS
   ============================================= */
.section-prose { padding: 2.5rem 0; }
.section-prose--alt { background: var(--bg-soft); }

.prose-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.section-card h2 {
  margin-bottom: .75rem;
  font-size: 1.2rem;
  color: var(--text);
}

.section-card h3 {
  margin-top: 1.25rem;
  margin-bottom: .5rem;
  font-size: 1.05rem;
  color: var(--text);
}

.section-card p { color: var(--text-muted); }

.section-card ul {
  list-style: disc;
  padding-left: 1.4rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: .75rem;
}

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

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: .875rem;
}

.compare-table th {
  background: var(--bg-soft);
  padding: .75rem 1rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.compare-table td {
  padding: .7rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: middle;
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: #f0fdf4; }

.compare-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.badge-good {
  display: inline-block;
  padding: .15rem .5rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
}

.badge-warn {
  display: inline-block;
  padding: .15rem .5rem;
  background: #fef3c7;
  color: #92400e;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
}

/* =============================================
   FAQ
   ============================================= */
.faq { padding: 3rem 0; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: var(--max-w-content);
}

.faq__item { }

.faq__item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--primary);
}

.faq__item p {
  color: var(--text-muted);
  padding-left: 1rem;
  margin-bottom: 0;
}

/* =============================================
   RESPONSIBLE GAMBLING BANNER
   ============================================= */
.rg-banner {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1.5px solid #a7f3d0;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 2rem 0;
}

.rg-banner__icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}

.rg-banner__text h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: .25rem;
  font-family: var(--font-display);
}

.rg-banner__text p {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
}

.rg-banner__text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 3rem 0 0;
  margin-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #1e293b;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 1rem;
}

.footer__brand-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.footer__tagline {
  font-size: .85rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 1rem;
}

.footer__18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #1e293b;
  border: 1.5px solid #334155;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 700;
  color: #94a3b8;
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #f1f5f9;
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer__links a {
  font-size: .875rem;
  color: #64748b;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--primary); }

.footer__rg {
  background: #1e293b;
  border-radius: var(--radius);
  padding: 1rem;
  font-size: .8rem;
}

.footer__rg p {
  color: #64748b;
  margin-bottom: .5rem;
  font-size: .8rem;
}

.footer__rg a {
  color: #4ade80;
  font-weight: 600;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  padding: 1.25rem 0;
  border-top: 1px solid #1e293b;
}

.footer__copy {
  font-size: .8rem;
  color: #475569;
}

.footer__legal-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer__legal-links a {
  font-size: .8rem;
  color: #475569;
  transition: color var(--transition);
}

.footer__legal-links a:hover { color: var(--primary); }

/* =============================================
   BREADCRUMBS (service pages only)
   ============================================= */
.breadcrumbs {
  padding: .75rem 0;
  margin-bottom: 1.5rem;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}

.breadcrumbs__item {
  font-size: .8rem;
  color: var(--text-muted);
}

.breadcrumbs__item a {
  color: var(--primary);
  font-weight: 500;
}

.breadcrumbs__item a:hover { text-decoration: underline; }

.breadcrumbs__sep {
  color: var(--text-light);
  font-size: .75rem;
}

/* =============================================
   PAGE HERO (service pages)
   ============================================= */
.page-hero {
  padding: calc(var(--nav-h) + 2rem) 0 2rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .25rem .65rem;
  background: var(--primary-light);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: .75rem;
}

.page-hero h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .5rem; }

.page-hero__lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  font-size: .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5,150,105,.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.form-check input[type="checkbox"] { margin-top: .2rem; flex-shrink: 0; accent-color: var(--primary); }

.contact-info { padding: 1.5rem; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-md); }

.contact-info h3 { font-size: 1rem; margin-bottom: 1rem; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .875rem;
  color: var(--text-muted);
}

.contact-info-item__icon {
  width: 32px;
  height: 32px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* =============================================
   UTILITIES
   ============================================= */
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: .875rem; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Stars helper */
.stars {
  display: inline-flex;
  gap: 1px;
}

.stars svg { width: 15px; height: 15px; fill: var(--amber); }

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }

  .listing__header,
  .listing__row {
    grid-template-columns: 40px 1fr 120px 80px 100px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + 1.75rem); }
  .hero__stats { gap: .75rem; }
  .hero__stat-sep { display: none; }

  .listing__header { display: none; }
  .listing__row {
    grid-template-columns: 36px 1fr 1fr;
    grid-template-rows: auto auto;
    gap: .4rem .5rem;
    padding: .75rem;
  }

  .listing__rank { grid-row: 1 / 3; }
  .listing__brand { grid-column: 2; grid-row: 1; }
  .listing__bonus { grid-column: 3; grid-row: 1; justify-self: end; }
  .listing__stars { display: none; }
  .listing__cta { grid-column: 2 / 4; grid-row: 2; width: 100%; justify-content: center; }

  .casino-card__header { flex-wrap: wrap; }
  .casino-card__meta { margin-left: 0; width: 100%; }

  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .section { padding: 2rem 0; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }

  .listing__bonus { display: none; }
  .listing__row { grid-template-columns: 36px 1fr; }
  .listing__cta { grid-column: 2; }
}