/* ===========================
   JugarMas.com — Main Stylesheet
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --bg-primary:    #0A0E1A;
  --bg-secondary:  #0F1525;
  --bg-card:       #131929;
  --bg-card-hover: #172035;
  --accent:        #C9913D;
  --accent-light:  #DCA554;
  --accent-dim:    rgba(201,145,61,0.15);
  --text-primary:  #F0F2F7;
  --text-secondary:#9AA3B8;
  --text-muted:    #5C6680;
  --green:         #1B7A42;
  --green-light:   #22A055;
  --border:        rgba(255,255,255,0.07);
  --border-accent: rgba(201,145,61,0.3);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --shadow-card:   0 4px 32px rgba(0,0,0,0.4);
  --shadow-glow:   0 0 40px rgba(201,145,61,0.12);
  --font:          'Inter', system-ui, sans-serif;
  --transition:    0.2s ease;
  --max-width:     1100px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-light);
}

img, svg {
  max-width: 100%;
  display: block;
}

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

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo {
  height: 38px;
  width: auto;
  flex-shrink: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  color: var(--text-secondary);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.header-nav a:hover {
  color: var(--text-primary);
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-primary);
}

.nav-toggle svg {
  display: block;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(201,145,61,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(27,74,46,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}

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

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero h1 span {
  background: linear-gradient(135deg, #C9913D 0%, #E8B86D 50%, #C9913D 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0A0E1A;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(201,145,61,0.35);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-light);
  color: #0A0E1A;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201,145,61,0.45);
}

.btn-primary svg {
  display: inline-block;
}

/* ===========================
   STATS BAR
   =========================== */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  background: var(--bg-secondary);
}

.stats-inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  display: block;
}

/* ===========================
   CASINO SECTION
   =========================== */
.casinos-section {
  padding: 72px 0 80px;
}

.section-header {
  margin-bottom: 40px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 15px;
  margin-top: 8px;
}

/* ===========================
   CASINO CARD — Betsson
   =========================== */
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}

.casino-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 8px 48px rgba(0,0,0,0.5), 0 0 60px rgba(201,145,61,0.10);
  transform: translateY(-3px);
}

/* ── Top rank badge ── */
.card-badge-top {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent);
  color: #0A0E1A;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 3;
  box-shadow: 0 2px 12px rgba(201,145,61,0.5);
}

/* ── Header banner ── */
.card-header {
  position: relative;
  background: linear-gradient(135deg, #071a0e 0%, #0e3320 50%, #1a5c35 100%);
  padding: 36px 36px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

/* Decorative glow rings */
.card-header::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.card-header::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 30%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,145,61,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.card-header-bg {
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: none;
}

.card-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-header-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* Logo block */
.casino-logo-wrap {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 14px 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: background 0.2s ease;
}

.casino-logo-wrap:hover {
  background: rgba(255,255,255,0.15);
}

.casino-logo-wrap img {
  height: 40px;
  width: auto;
  display: block;
}

/* Rating block */
.card-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.rating-score {
  font-size: 3rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.03em;
}

.rating-max {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.stars {
  display: flex;
  gap: 4px;
  justify-content: flex-end;
}

.star {
  width: 18px;
  height: 18px;
  color: var(--accent);
  filter: drop-shadow(0 1px 3px rgba(201,145,61,0.6));
}

/* ── Bonus highlight strip ── */
.card-bonus-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 36px;
  background: linear-gradient(90deg, rgba(201,145,61,0.12) 0%, rgba(201,145,61,0.18) 50%, rgba(201,145,61,0.12) 100%);
  border-bottom: 1px solid rgba(201,145,61,0.25);
  text-align: center;
  flex-wrap: wrap;
}

.bonus-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  opacity: 0.8;
  flex-shrink: 0;
}

.bonus-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.bonus-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ── Card body ── */
.card-body {
  padding: 28px 36px 24px;
}

/* Stats chips row */
.card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.card-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.card-chip svg {
  flex-shrink: 0;
  color: var(--green-light);
}

.card-chip.chip-accent {
  background: rgba(201,145,61,0.08);
  border-color: rgba(201,145,61,0.25);
  color: var(--accent);
}

/* Divider */
.card-divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 24px;
}

/* Pros grid */
.pros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 0;
}

@media (max-width: 580px) {
  .pros-grid {
    grid-template-columns: 1fr;
  }
}

.pros-grid li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  list-style: none;
}

.pros-grid li .check {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(34,160,85,0.15);
  border: 1.5px solid #22A055;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pros-grid li .check svg {
  display: block;
}

/* ── Card CTA block ── */
.card-cta {
  padding: 20px 36px 24px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.18);
}

.btn-casino {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #1a6e3a 0%, #22a055 100%);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 24px rgba(27,110,58,0.45);
  text-decoration: none;
  margin-bottom: 12px;
}

.btn-casino:hover {
  filter: brightness(1.12);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(27,110,58,0.55);
}

.btn-casino svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btn-casino:hover svg {
  transform: translateX(3px);
}

.card-disclaimer {
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

/* ===========================
   DISCLAIMER SECTION
   =========================== */
.disclaimer-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.disclaimer-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.disclaimer-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
}

.disclaimer-text p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===========================
   HOW WE RATE
   =========================== */
.how-section {
  padding: 72px 0;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.criteria-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: border-color var(--transition);
}

.criteria-item:hover {
  border-color: var(--border-accent);
}

.criteria-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.criteria-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.criteria-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

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

.footer-brand .site-logo {
  height: 32px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--text-primary);
}

/* Responsible Gambling Badges */
.footer-responsible {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.responsible-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: center;
}

.responsible-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.resp-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  color: var(--text-secondary);
  font-size: 12.5px;
  font-weight: 600;
  transition: border-color var(--transition), color var(--transition);
  text-decoration: none;
}

.resp-badge:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.resp-badge svg {
  display: inline-block;
  flex-shrink: 0;
}

.resp-badge img {
  height: 28px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter var(--transition);
}

.resp-badge:hover img {
  filter: grayscale(0);
}

.badge-18plus {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12.5px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ===========================
   COOKIE BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(15, 21, 37, 0.98);
  border-top: 1px solid var(--border-accent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
  min-width: 260px;
}

.cookie-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 1px;
}

.cookie-text-content p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cookie-text-content a {
  color: var(--accent);
  font-weight: 500;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--accent);
  color: #0A0E1A;
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.btn-cookie-accept:hover {
  background: var(--accent-light);
}

.btn-cookie-reject {
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-cookie-reject:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

/* ===========================
   POLICY PAGES
   =========================== */
.policy-hero {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border);
}

.policy-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.policy-meta {
  font-size: 13px;
  color: var(--text-muted);
}

.policy-content {
  padding: 48px 0 80px;
}

.policy-body {
  max-width: 760px;
}

.policy-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.policy-body h2:first-child {
  margin-top: 0;
}

.policy-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin: 24px 0 10px;
}

.policy-body p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-body ul, .policy-body ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.policy-body li {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 6px;
}

.policy-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

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

/* ===========================
   RESPONSIBLE GAMBLING PAGE
   =========================== */
.rg-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 36px 0;
}

.rg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.rg-card .rg-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.rg-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.rg-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.rg-hotline {
  background: linear-gradient(135deg, #0D2B1A, #1B4D2E);
  border: 1px solid rgba(27,122,66,0.4);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  text-align: center;
  margin: 40px 0;
}

.rg-hotline h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.rg-hotline p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin-bottom: 20px;
}

.rg-hotline .phone {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.rg-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.rg-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  text-decoration: none;
}

.rg-link-btn:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* ===========================
   UTILITIES
   =========================== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

.text-accent { color: var(--accent); }
.text-muted  { color: var(--text-muted); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 16px;
  }

  .header-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header {
    position: sticky;
  }
}

@media (max-width: 600px) {
  .card-header {
    padding: 28px 20px 24px;
  }

  .card-bonus-strip {
    padding: 14px 20px;
    gap: 10px;
  }

  .card-body {
    padding: 20px 20px 18px;
  }

  .card-cta {
    padding: 16px 20px 20px;
  }

  .bonus-value {
    font-size: 1.05rem;
  }

  .stats-inner {
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .rg-hotline {
    padding: 28px 20px;
  }
}
