/* =============================================
   EUROJACKPOT NORGE – assets/styles.css
   ============================================= */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.7;
  font-size: 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CSS VARIABLES ── */
:root {
  --black: #000000;
  --white: #ffffff;
  --gold: #f5c518;
  --gold-dark: #d4a800;
  --gold-light: #ffe066;
  --gray-100: #f8f8f8;
  --gray-200: #eeeeee;
  --gray-400: #999999;
  --gray-700: #444444;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.12);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.18);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.24);
  --shadow-btn: 0 4px 16px rgba(245,197,24,0.5);
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
  --container: 1200px;
  --header-h: 70px;
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  letter-spacing: 0.02em;
  font-family: inherit;
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-btn);
  border: 2px solid var(--gold-dark);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(245,197,24,0.65);
}
.btn--primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(245,197,24,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  box-shadow: 0 4px 16px rgba(255,255,255,0.15);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(255,255,255,0.25);
}
.btn--ghost:active {
  transform: translateY(0) scale(0.98);
}

.btn--xl {
  min-height: 56px;
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  height: var(--header-h);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.header__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo-img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.nav { display: flex; align-items: center; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.nav__link {
  color: var(--white);
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  font-size: 0.95rem;
  white-space: nowrap;
}
.nav__link:hover { background: rgba(255,255,255,0.1); color: var(--gold); }

.nav__cta {
  min-height: 40px;
  padding: 10px 22px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero { background: var(--black); }

.hero__media {
  width: 100%;
  overflow: hidden;
  max-height: 480px;
}
.hero__media a { display: block; }
.hero__img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.hero__media a:hover .hero__img { transform: scale(1.02); }

.hero__content {
  text-align: center;
  padding: 48px 20px 56px;
  background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
}

.hero__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero__bonus {
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(245,197,24,0.5);
  animation: pulse-glow 2.4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 4px 24px rgba(245,197,24,0.5); }
  50% { text-shadow: 0 4px 48px rgba(245,197,24,0.9), 0 0 80px rgba(245,197,24,0.3); }
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.hero__draw-info {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}
.hero__draw-info strong { color: var(--gold); }

/* ── SECTIONS COMMON ── */
.section {
  padding: 72px 0;
}

.section__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--black);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section__subtitle {
  text-align: center;
  color: var(--gray-700);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* ── ADVANTAGES ── */
.advantages { background: var(--gray-100); }

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.advantages__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.advantages__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.advantages__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.advantages__card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--black);
}

.advantages__card p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── BONUSES ── */
.bonuses { background: var(--white); }

.bonuses__hero-card {
  background: linear-gradient(135deg, var(--black) 0%, #222 100%);
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.bonuses__jackpot-label {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bonuses__jackpot-amount {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(245,197,24,0.4);
}

.bonuses__jackpot-sub {
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  font-size: 1rem;
}

.bonuses__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.bonuses__card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bonuses__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bonuses__card-media {
  display: block;
  overflow: hidden;
  max-height: 220px;
}

.bonuses__img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.bonuses__card-media:hover .bonuses__img { transform: scale(1.04); }

.bonuses__card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bonuses__card-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--black);
}

.bonuses__card-body p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

/* ── HOW TO ── */
.howto { background: var(--gray-100); }

.howto__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto 40px;
  position: relative;
}

.howto__steps::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.howto__step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  position: relative;
}

.howto__step-num {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: var(--black);
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 16px rgba(245,197,24,0.3);
  z-index: 1;
}

.howto__step-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--black);
}

.howto__step-content p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.6;
}

.howto__cta { text-align: center; }

/* ── LOTTERY ── */
.lottery { background: var(--white); }

.lottery__layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.lottery__media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid var(--gray-200);
  max-height: 360px;
  margin-bottom: 28px;
}

.lottery__img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.lottery__media:hover .lottery__img { transform: scale(1.03); }

.lottery__text h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 24px 0 10px;
  color: var(--black);
}
.lottery__text h3:first-child { margin-top: 0; }

.lottery__text p {
  color: var(--gray-700);
  margin-bottom: 14px;
  font-size: 0.97rem;
  line-height: 1.7;
}

.lottery__info-box {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 2px solid var(--gold);
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.lottery__info-box h4 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 20px;
}

.lottery__facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.lottery__facts li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  flex-wrap: wrap;
}
.lottery__facts li:last-child { border-bottom: none; }

.lottery__facts li span { color: rgba(255,255,255,0.6); }
.lottery__facts li strong { color: var(--gold); text-align: right; }

/* ── REVIEW ── */
.review { background: var(--gray-100); }

.review__content { max-width: 900px; margin: 0 auto; }

.review__media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid var(--gray-200);
  max-height: 400px;
  margin-bottom: 32px;
}

.review__img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.review__media:hover .review__img { transform: scale(1.03); }

.review__score-bar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review__score-item {
  display: grid;
  grid-template-columns: minmax(0,1.5fr) minmax(0,2fr) auto;
  align-items: center;
  gap: 16px;
}

.review__score-item span {
  font-size: 0.92rem;
  color: var(--gray-700);
  font-weight: 600;
}

.score-bar {
  height: 10px;
  background: var(--gray-200);
  border-radius: 50px;
  overflow: hidden;
  min-width: 0;
}

.score-fill {
  height: 100%;
  width: var(--fill, 0%);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 50px;
  transition: width 1s ease;
}

.review__score-item strong {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--black);
  white-space: nowrap;
}

.review__text { margin-bottom: 32px; }

.review__text h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 28px 0 12px;
  color: var(--black);
}
.review__text h3:first-child { margin-top: 0; }

.review__text h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 20px 0 8px;
  color: var(--black);
}

.review__text p {
  color: var(--gray-700);
  margin-bottom: 14px;
  font-size: 0.97rem;
  line-height: 1.75;
}

.review__verdict {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  border: 2px solid var(--gold);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.review__verdict-score {
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
  text-align: center;
}
.review__verdict-score span {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.6);
}

.review__verdict-text strong {
  display: block;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.review__verdict-text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ── MOBILE SECTION ── */
.mobile { background: var(--white); }

.mobile__feature {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.4fr);
  gap: 40px;
  align-items: center;
}

.mobile__media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  max-height: 400px;
}

.mobile__img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.mobile__media:hover .mobile__img { transform: scale(1.04); }

.mobile__text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--black);
}
.mobile__text h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 20px 0 8px;
  color: var(--black);
}
.mobile__text p {
  color: var(--gray-700);
  margin-bottom: 14px;
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ── PAYMENTS ── */
.payments { background: var(--gray-100); }

.payments__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.payments__method {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.payments__method:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.payments__icon { font-size: 2rem; }
.payments__method strong { font-size: 0.95rem; font-weight: 800; color: var(--black); }
.payments__method span { font-size: 0.8rem; color: var(--gray-400); }

.payments__note {
  text-align: center;
  color: var(--gray-700);
  font-size: 0.9rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── SUPPORT ── */
.support { background: var(--white); }

.support__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.support__card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.support__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.support__icon { font-size: 2.4rem; margin-bottom: 12px; }

.support__card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--black);
}

.support__card p {
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── FAQ ── */
.faq { background: var(--gray-100); }

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  transition: background var(--transition);
}
.faq__question:hover { background: var(--gray-100); }

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq__question[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.4,0,0.2,1), padding 0.36s ease;
}
.faq__answer.open {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq__answer p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── FINAL CTA ── */
.finalcta { background: var(--white); }

.finalcta__box {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 60%, #111 100%);
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 8px 48px rgba(0,0,0,0.25);
}

.finalcta__title {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.finalcta__bonus {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(245,197,24,0.5);
  animation: pulse-glow 2.4s ease-in-out infinite;
}

.finalcta__sub {
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1rem;
  line-height: 1.6;
}

.finalcta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 0 32px;
}

.footer__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer__logo { display: inline-flex; }
.footer__logo-img {
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
}
.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }

.footer__disclaimer {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 700px;
}
.footer__disclaimer a {
  color: var(--gold);
  text-decoration: underline;
}

.footer__copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* ── CATFISH ── */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--black);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  padding: max(12px, env(safe-area-inset-bottom)) 16px 12px;
  transition: transform 0.3s ease;
}
.catfish.hidden { transform: translateY(120%); }

.catfish__inner {
  max-width: calc(100% - 32px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.catfish__text {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.catfish__btn {
  min-height: 40px;
  padding: 10px 20px;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.catfish__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  transition: color var(--transition);
  line-height: 1;
}
.catfish__close:hover { color: var(--white); }

/* ── EXIT POPUP ── */
.exit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.exit-overlay.active { display: flex; }

.exit-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: popup-in 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

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

.exit-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gray-100);
  border: none;
  color: var(--gray-700);
  font-size: 1rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.exit-popup__close:hover { background: var(--gray-200); }

.exit-popup__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.exit-popup__title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--black);
}

.exit-popup__bonus {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(245,197,24,0.3);
}

.exit-popup__sub {
  color: var(--gray-700);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 1024px) {
  .advantages__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lottery__layout { grid-template-columns: minmax(0, 1fr); }
  .lottery__info-box { position: static; }

  .mobile__feature { grid-template-columns: minmax(0, 1fr); }
  .mobile__media { max-height: 320px; }

  .howto__steps::before { left: 31px; }
}

/* Mobile nav */
@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .burger { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--black);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    padding: 16px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .nav.open { transform: translateY(0); }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav__link {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .nav__cta {
    display: block;
    text-align: center;
    margin-top: 8px;
    width: 100%;
  }

  /* Hero */
  .hero__media { max-height: 260px; }
  .hero__img { max-height: 260px; }
  .hero__content { padding: 36px 16px 44px; }
  .hero__cta-group { flex-direction: column; align-items: stretch; }
  .hero__cta-group .btn { width: 100%; }

  /* Sections */
  .section { padding: 52px 0; }
  .section__subtitle { margin-bottom: 32px; }

  /* Advantages */
  .advantages__grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }

  /* Bonuses */
  .bonuses__hero-card { padding: 36px 20px; }
  .bonuses__cards { grid-template-columns: minmax(0, 1fr); }

  /* HowTo */
  .howto__steps::before { display: none; }
  .howto__step { flex-direction: column; align-items: flex-start; gap: 12px; }
  .howto__step-num { width: 56px; height: 56px; font-size: 1.1rem; }
  .howto__cta .btn { width: 100%; }

  /* Lottery */
  .lottery__layout { grid-template-columns: minmax(0, 1fr); }
  .lottery__media { max-height: 240px; }
  .lottery__img { max-height: 240px; }

  /* Review */
  .review__score-item {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr) auto;
    gap: 10px;
  }
  .review__score-item span { font-size: 0.82rem; }
  .review__verdict { flex-direction: column; text-align: center; }
  .review__verdict-score { font-size: 3rem; }
  .review__content .btn { width: 100%; }

  /* Mobile section */
  .mobile__feature { grid-template-columns: minmax(0, 1fr); }
  .mobile__text .btn { width: 100%; }

  /* Payments */
  .payments__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Support */
  .support__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Final CTA */
  .finalcta__box { padding: 40px 20px; }
  .finalcta__buttons { flex-direction: column; align-items: stretch; }
  .finalcta__buttons .btn { width: 100%; }

  /* Footer */
  .footer__links { flex-direction: column; align-items: center; }

  /* Exit popup */
  .exit-popup { padding: 40px 24px; }
  .exit-popup .btn { width: 100%; }
}

/* Small mobile */
@media (max-width: 400px) {
  .payments__grid { grid-template-columns: minmax(0, 1fr); }
  .support__grid { grid-template-columns: minmax(0, 1fr); }
  .catfish__inner { flex-direction: column; text-align: center; }
  .catfish__btn { width: 100%; }
  .hero__title { font-size: 1.8rem; }
  .hero__bonus { font-size: 2.2rem; }
}