/* ═══════════════════════════════════════════════
   EUROJACKPOT DANMARK — assets/styles.css
   Primary: #FFB700  Secondary: #E8A333
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@400;600;700;800;900&display=swap');

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ── CSS VARIABLES ── */
:root {
  --primary:       #FFB700;
  --primary-dark:  #E8A333;
  --primary-glow:  rgba(255,183,0,0.35);
  --header-bg:     #E8A333;
  --white:         #ffffff;
  --black:         #000000;
  --text-dark:     #1a1a1a;
  --text-mid:      #444444;
  --text-light:    #888888;
  --bg-light:      #fafafa;
  --bg-gold-soft:  #fff8e1;
  --border:        #eeeeee;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
  --shadow-md:     0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:     0 12px 48px rgba(0,0,0,.18);
  --shadow-btn:    0 4px 16px rgba(255,183,0,.5);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --transition:    0.22s ease;
  --header-h:      72px;
  --container:     1200px;
  --font-display:  'Bebas Neue', 'Georgia', serif;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 3px solid transparent;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  position: relative;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--black);
  border-color: var(--primary-dark);
  box-shadow: var(--shadow-btn), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn--primary:hover  { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(255,183,0,.6), inset 0 1px 0 rgba(255,255,255,.3); background: #ffc820; }
.btn--primary:active { transform: translateY(-1px); box-shadow: 0 3px 12px rgba(255,183,0,.4); }

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(255,183,0,.2);
}
.btn--ghost:hover  { background: var(--primary); color: var(--black); transform: translateY(-3px); box-shadow: var(--shadow-btn); }
.btn--ghost:active { transform: translateY(-1px); }

.btn--xl { font-size: 1.15rem; min-height: 56px; padding: 14px 36px; }
.btn--sm { font-size: .875rem; min-height: 40px; padding: 8px 20px; }

/* ghost on dark/gold bg */
.section--gold .btn--ghost,
.section--cta  .btn--ghost { border-color: var(--white); color: var(--white); }
.section--gold .btn--ghost:hover,
.section--cta  .btn--ghost:hover { background: var(--white); color: var(--black); }

/* ════════════════════════════════
   HEADER
════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--header-bg);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.18);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.28); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.logo-link { flex-shrink: 0; display: flex; align-items: center; }

.logo {
  width: auto;
  max-width: 160px;
  height: 44px;
  object-fit: contain;
}

.logo--footer {
  max-width: 140px;
  height: 40px;
}

/* NAV */
.main-nav { flex: 1; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0;
}
.nav-list::-webkit-scrollbar { display: none; }

.nav-link {
  display: block;
  padding: 8px 14px;
  color: var(--black);
  font-weight: 800;
  font-size: .93rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  min-width: 0;
}
.nav-link:hover { background: rgba(0,0,0,.12); }

.header-cta { flex-shrink: 0; }

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 2px solid rgba(0,0,0,.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  background: var(--black);
  overflow: hidden;
}

.hero-media-wrap {
  display: block;
  width: 100%;
  overflow: hidden;
}

.hero-media {
  width: 100%;
  overflow: hidden;
  max-height: 520px;
  background: #111;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-height: 520px;
  transition: transform 0.4s ease;
}
.hero-media-wrap:hover .hero-img { transform: scale(1.03); }

.hero-content {
  padding: 40px 0 56px;
  background: linear-gradient(135deg, #1a0a00 0%, #2d1a00 50%, #1a0a00 100%);
  position: relative;
}

.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(255,183,0,.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content .container { position: relative; text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,183,0,.15);
  border: 1px solid rgba(255,183,0,.4);
  color: var(--primary);
  font-weight: 800;
  font-size: .9rem;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5rem);
  color: var(--white);
  letter-spacing: .08em;
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 2px 16px rgba(0,0,0,.6);
}

.hero-jackpot {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 8rem);
  color: var(--primary);
  letter-spacing: .05em;
  line-height: 1;
  margin-bottom: 36px;
  text-shadow: 0 0 48px rgba(255,183,0,.6), 0 4px 24px rgba(0,0,0,.8);
  animation: jackpot-glow 2.5s ease-in-out infinite;
}

@keyframes jackpot-glow {
  0%, 100% { text-shadow: 0 0 48px rgba(255,183,0,.6), 0 4px 24px rgba(0,0,0,.8); }
  50%       { text-shadow: 0 0 80px rgba(255,183,0,.9), 0 4px 24px rgba(0,0,0,.8); }
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ════════════════════════════════
   SECTIONS
════════════════════════════════ */
.section {
  padding: clamp(48px, 8vw, 96px) 0;
}

.section--white { background: var(--white); }
.section--light { background: var(--bg-light); }

.section--gold {
  background: linear-gradient(135deg, #E8A333 0%, #FFB700 50%, #E8A333 100%);
  color: var(--black);
  position: relative;
  overflow: hidden;
}

.section--gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.15) 0%, transparent 60%);
  pointer-events: none;
}

.section--cta {
  background: linear-gradient(135deg, #1a0a00 0%, #2d1a00 100%);
  color: var(--white);
  text-align: center;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: .06em;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section--gold .section-title,
.section--cta .section-title { color: var(--white); }

.section-subtitle {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.section--gold .section-subtitle { color: rgba(0,0,0,.75); }
.section--cta .section-subtitle  { color: rgba(255,255,255,.8); }

/* ════════════════════════════════
   GRID
════════════════════════════════ */
.grid {
  display: grid;
  gap: clamp(16px, 3vw, 28px);
}

.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ════════════════════════════════
   CARDS
════════════════════════════════ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  line-height: 1;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.card-text {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: break-word;
  flex: 1;
}

.card--support { gap: 12px; }
.card--support .btn { margin-top: auto; align-self: flex-start; }

/* ════════════════════════════════
   MEDIA CARDS (images)
════════════════════════════════ */
.media-link { display: block; }

.mediaCard {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-md);
  background: #f0f0f0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.mediaCard:hover { transform: scale(1.02); box-shadow: 0 12px 40px rgba(255,183,0,.35); }

.media-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 360px;
}

.mediaCard--review  .media-img { max-height: 280px; }
.mediaCard--exit    .media-img { max-height: 200px; }
.mediaCard--cta     .media-img { max-height: 320px; }

/* ════════════════════════════════
   PROMO / JACKPOT SECTION
════════════════════════════════ */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 420px);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.promo-badge {
  display: inline-block;
  background: rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.2);
  color: var(--black);
  font-weight: 900;
  font-size: .85rem;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.promo-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: .08em;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 4px;
}

.promo-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 6rem);
  color: var(--black);
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 2px 0 rgba(255,255,255,.5);
}

.promo-text {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(0,0,0,.8);
  margin-bottom: 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.promo-cta { margin-top: 24px; }

/* ════════════════════════════════
   STEPS
════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 16px;
  margin-bottom: 40px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  min-width: 0;
}

.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--primary);
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 12px;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.step-text {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.65;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.step-connector {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 900;
  padding-top: 40px;
  flex-shrink: 0;
  align-self: flex-start;
}

.steps-cta {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ════════════════════════════════
   REVIEW LAYOUT
════════════════════════════════ */
.review-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.review-body { min-width: 0; }

.review-block {
  margin-bottom: 36px;
}

.review-block h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  letter-spacing: .05em;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.review-block p {
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  color: var(--text-mid);
  margin-bottom: 14px;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.7;
}

.review-block--recommendation {
  background: linear-gradient(135deg, var(--bg-gold-soft), #fff8d0);
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 32px);
}

.review-block--recommendation h3 { color: #7a4a00; }

.review-img-link { margin: 20px 0; display: block; }

/* Sidebar */
.review-sidebar { min-width: 0; }

.sidebar-sticky {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rating-box {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.rating-stars {
  color: var(--primary);
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.rating-score {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-dark);
  letter-spacing: .04em;
}

.rating-score span { font-size: 1.2rem; color: var(--text-light); }

.rating-label { font-size: .85rem; color: var(--text-light); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

.sidebar-facts {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.fact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  gap: 8px;
  min-width: 0;
}

.fact-row:last-child { border-bottom: none; }

.fact-label { font-weight: 700; font-size: .9rem; color: var(--text-mid); flex-shrink: 0; }

.fact-value { font-weight: 900; font-size: .9rem; color: var(--text-dark); text-align: right; overflow-wrap: anywhere; word-break: break-word; min-width: 0; }

.sidebar-btn { width: 100%; text-align: center; }

/* ════════════════════════════════
   FINAL CTA
════════════════════════════════ */
.cta-media-link { display: block; margin-bottom: 32px; }

.final-cta-box { text-align: center; }

.final-badge {
  display: inline-block;
  background: rgba(255,183,0,.2);
  border: 1px solid rgba(255,183,0,.5);
  color: var(--primary);
  font-weight: 800;
  font-size: .9rem;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  color: var(--white);
  letter-spacing: .07em;
  margin-bottom: 8px;
  line-height: 1.1;
}

.final-cta-title span {
  color: var(--primary);
  text-shadow: 0 0 40px rgba(255,183,0,.5);
}

.final-cta-text {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin: 0 auto 32px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.site-footer {
  background: #111111;
  color: var(--white);
}

.footer-inner { padding-top: 56px; padding-bottom: 32px; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }

.footer-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  font-weight: 600;
}

.footer-links h4 {
  font-weight: 900;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  margin-bottom: 14px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary); }

.footer-bottom { text-align: center; }

.footer-disclaimer {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  font-weight: 700;
}

/* ════════════════════════════════
   CATFISH BAR
════════════════════════════════ */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: linear-gradient(90deg, #1a0a00, #2d1a00);
  border-top: 3px solid var(--primary);
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
  padding: 10px 0;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  transition: transform .35s ease;
}

.catfish.is-hidden { transform: translateY(110%); }

.catfish-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(var(--container) - 32px);
}

.catfish-text {
  flex: 1;
  font-size: clamp(.8rem, 2vw, 1rem);
  font-weight: 800;
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.catfish-text strong { color: var(--primary); }

.catfish-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition);
}
.catfish-close:hover { color: var(--white); }

/* ════════════════════════════════
   EXIT POPUP
════════════════════════════════ */
.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  animation: fade-in .25s ease;
}

.exit-overlay[hidden] { display: none; }

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.exit-popup {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  animation: popup-in .3s cubic-bezier(.34,1.56,.64,1);
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes popup-in {
  from { transform: scale(.85) translateY(20px); opacity: 0; }
  to   { transform: scale(1)   translateY(0);    opacity: 1; }
}

.exit-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f5f5f5;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 36px;
  cursor: pointer;
  color: var(--text-mid);
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit-close:hover { background: #eee; color: var(--black); }

.exit-title {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 900;
  color: var(--text-dark);
  margin: 16px 0 8px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.exit-jackpot {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  color: var(--primary-dark);
  letter-spacing: .05em;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(255,183,0,.3);
}

.exit-text {
  font-size: .95rem;
  color: var(--text-mid);
  margin-bottom: 24px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.exit-btn { width: 100%; }

.exit-skip {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: .8rem;
  cursor: pointer;
  margin-top: 14px;
  text-decoration: underline;
  font-family: inherit;
  padding: 4px;
  transition: color var(--transition);
}
.exit-skip:hover { color: var(--text-mid); }

/* ════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
════════════════════════════════ */
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .promo-grid       { grid-template-columns: 1fr; }
  .promo-media      { order: -1; max-width: 480px; margin: 0 auto; }

  .review-layout    { grid-template-columns: 1fr; }
  .review-sidebar   { order: -1; }
  .sidebar-sticky   { position: static; flex-direction: row; flex-wrap: wrap; }
  .sidebar-sticky .mediaCard { display: none; }
  .rating-box       { flex: 1; min-width: 180px; }
  .sidebar-facts    { flex: 2; min-width: 220px; }
  .sidebar-btn      { flex: 1 1 100%; }

  .steps-grid       { grid-template-columns: 1fr; gap: 16px; }
  .step-connector   { display: none; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--header-bg);
    padding: 12px 0 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    z-index: 850;
  }

  .main-nav.is-open { display: block; }

  .nav-list {
    flex-direction: column;
    gap: 0;
    overflow-x: visible;
  }

  .nav-link {
    padding: 14px clamp(16px, 4vw, 32px);
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
  }

  .burger { display: flex; }
  .header-cta { display: none; }

  .site-header { position: relative; }
  .site-header.scrolled { position: sticky; }
}

/* ════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
════════════════════════════════ */
@media (max-width: 600px) {
  :root { --header-h: 60px; }

  .grid--3,
  .grid--2 { grid-template-columns: 1fr; gap: 14px; }

  .hero-media { max-height: 260px; }
  .hero-img   { max-height: 260px; }
  .hero-content { padding: 28px 0 40px; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn { width: 100%; }

  .promo-media { max-width: 100%; }

  .steps-cta { flex-direction: column; align-items: stretch; }
  .steps-cta .btn { width: 100%; }

  .final-cta-buttons { flex-direction: column; align-items: stretch; }
  .final-cta-buttons .btn { width: 100%; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  .catfish-text { font-size: .78rem; }

  .logo { max-width: 120px; height: 36px; }

  .sidebar-sticky { flex-direction: column; }
  .rating-box, .sidebar-facts { min-width: 0; }

  .review-block--recommendation .btn { width: 100%; }

  /* Mobile CTA buttons always full width */
  .section .btn--xl { width: 100%; }
  .promo-cta .btn   { width: 100%; }
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: clamp(.95rem, 2vw, 1.05rem);
  color: var(--text-dark);
  text-align: left;
  transition: color var(--transition);
  min-width: 0;
}

.faq-question span:first-child {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.faq-question:hover { color: var(--primary-dark); }

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding-bottom: 20px;
  animation: faq-open .25s ease;
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-answer p {
  font-size: clamp(.9rem, 1.5vw, 1rem);
  color: var(--text-mid);
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ════════════════════════════════
   OVERFLOW PROTECTION (global)
════════════════════════════════ */
.container,
section,
.card,
.step-card,
.review-block,
.fact-row { overflow-wrap: anywhere; word-break: break-word; hyphens: auto; }

/* Prevent images from stretching on very wide screens */
.hero-media, .mediaCard { max-width: 100%; }

/* Ensure all grid children won't blow out */
.grid > *, .steps-grid > *, .promo-grid > *, .review-layout > * { min-width: 0; }
.eurojackpot-talpulje{
  background:var(--bg-light,#fafafa);
  padding:clamp(48px,8vw,96px) 0;
  font-family:'Nunito',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color:var(--text-dark,#1a1a1a);
  line-height:1.65;
}
.eurojackpot-talpulje__title{
  max-width:var(--container,1200px);
  margin:0 auto 16px;
  padding:0 clamp(16px,4vw,48px);
  font-family:var(--font-display,'Bebas Neue','Georgia',serif);
  font-size:clamp(1.8rem,4vw,3rem);
  letter-spacing:.05em;
  line-height:1.2;
  color:var(--text-dark,#1a1a1a);
  text-align:center;
}
.eurojackpot-talpulje__lead{
  max-width:760px;
  margin:0 auto clamp(32px,5vw,48px);
  padding:0 clamp(16px,4vw,48px);
}
.eurojackpot-talpulje__lead p{
  margin:0;
  font-size:clamp(.95rem,2vw,1.1rem);
  color:var(--text-mid,#444);
  text-align:center;
  line-height:1.7;
}
.eurojackpot-talpulje__article,
.eurojackpot-talpulje__aside{
  max-width:var(--container,1200px);
  margin:0 auto;
  padding:0 clamp(16px,4vw,48px);
  display:flex;
  flex-direction:column;
  gap:14px;
}
.eurojackpot-talpulje__article{
  margin-bottom:36px;
}
.eurojackpot-talpulje__h3{
  font-family:var(--font-display,'Bebas Neue','Georgia',serif);
  font-size:clamp(1.3rem,2.5vw,1.7rem);
  letter-spacing:.05em;
  color:var(--text-dark,#1a1a1a);
  line-height:1.2;
  margin:0 0 2px;
}
.eurojackpot-talpulje__article p,
.eurojackpot-talpulje__aside p{
  margin:0;
  font-size:clamp(.95rem,1.5vw,1.05rem);
  color:var(--text-mid,#444);
  line-height:1.7;
}
.eurojackpot-talpulje__article strong,
.eurojackpot-talpulje__aside strong,
.eurojackpot-talpulje__lead strong{
  color:var(--text-dark,#1a1a1a);
  font-weight:900;
}
.eurojackpot-talpulje__article em,
.eurojackpot-talpulje__aside em,
.eurojackpot-talpulje__lead em{
  font-style:normal;
  font-weight:800;
  color:var(--primary-dark,#E8A333);
}
.eurojackpot-talpulje__list{
  margin:4px 0 6px;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.eurojackpot-talpulje__list li{
  position:relative;
  padding:14px 18px 14px 52px;
  background:var(--white,#fff);
  border:1px solid var(--border,#eee);
  border-left:4px solid var(--primary,#FFB700);
  border-radius:var(--radius-md,16px);
  box-shadow:var(--shadow-sm,0 2px 8px rgba(0,0,0,.08));
  font-size:clamp(.92rem,1.5vw,1rem);
  color:var(--text-mid,#444);
  line-height:1.6;
  transition:transform var(--transition,.22s ease),box-shadow var(--transition,.22s ease);
}
.eurojackpot-talpulje__list li:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-md,0 6px 24px rgba(0,0,0,.12));
}
.eurojackpot-talpulje__list li::before{
  content:"✓";
  position:absolute;
  left:14px;
  top:14px;
  width:26px;
  height:26px;
  background:var(--primary,#FFB700);
  color:var(--black,#000);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.85rem;
  font-weight:900;
}
.eurojackpot-talpulje__list--ordered{
  counter-reset:ejdk-counter;
}
.eurojackpot-talpulje__list--ordered li{
  counter-increment:ejdk-counter;
}
.eurojackpot-talpulje__list--ordered li::before{
  content:counter(ejdk-counter);
  font-family:var(--font-display,'Bebas Neue','Georgia',serif);
  font-size:1rem;
}
.eurojackpot-talpulje__list li strong{
  color:var(--text-dark,#1a1a1a);
  font-weight:900;
}
.eurojackpot-talpulje__aside{
  background:linear-gradient(135deg,#1a0a00 0%,#2d1a00 100%);
  border-radius:var(--radius-lg,24px);
  padding:clamp(24px,4vw,40px);
  margin:0 auto 36px;
  border:2px solid var(--primary,#FFB700);
  box-shadow:var(--shadow-md,0 6px 24px rgba(0,0,0,.12));
  max-width:calc(var(--container,1200px) - clamp(32px,8vw,96px));
}
.eurojackpot-talpulje__aside .eurojackpot-talpulje__h3{
  color:var(--primary,#FFB700);
}
.eurojackpot-talpulje__aside p{
  color:rgba(255,255,255,.82);
}
.eurojackpot-talpulje__aside em{
  color:var(--primary,#FFB700);
}
.eurojackpot-talpulje__aside strong{
  color:var(--white,#fff);
}
.eurojackpot-talpulje__aside .eurojackpot-talpulje__list li{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.14);
  border-left-color:var(--primary,#FFB700);
  color:rgba(255,255,255,.85);
  box-shadow:none;
}
.eurojackpot-talpulje__aside .eurojackpot-talpulje__list li:hover{
  background:rgba(255,255,255,.1);
}
.eurojackpot-talpulje__aside .eurojackpot-talpulje__list li strong{
  color:var(--white,#fff);
}

@media (max-width:600px){
  .eurojackpot-talpulje__aside{
    border-radius:var(--radius-md,16px);
    max-width:100%;
    margin-left:clamp(16px,4vw,48px);
    margin-right:clamp(16px,4vw,48px);
    padding:24px 18px;
  }
  .eurojackpot-talpulje__list li{
    padding:12px 14px 12px 46px;
  }
  .eurojackpot-talpulje__list li::before{
    left:12px;
    width:22px;
    height:22px;
  }
}