:root {
  --bg: #0B120E;
  --surface: #16221B;
  --text: #E8F5E9;
  --muted: #81C784;
  --primary: #2E7D32;
  --secondary: #1B5E20;
  --accent: #FFB300;
  --border: rgba(129, 199, 132, 0.12);
  --off-white: #F4F7F4;
  --max-w: 1200px;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", "Palatino Linotype", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

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

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

.offer-card__logo-wrap .offer-card__logo {
  max-width: none;
  height: 100%;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.disclosure-banner {
  width: 100%;
  background: linear-gradient(90deg, #050806 0%, #1B3D22 100%);
  color: #E8F5E9;
  font-size: 11px;
  text-align: center;
  padding: 10px 16px;
  line-height: 1.45;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: 52px;
}

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

.navbar__logo img {
  height: 30px;
  width: auto;
}

.navbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.navbar__cta {
  display: none;
  padding: 7px 18px;
  background: var(--primary);
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  border-radius: 2px;
  letter-spacing: 0.04em;
  transition: background 0.25s ease;
}

.navbar__cta:hover {
  background: var(--secondary);
  color: var(--text);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: transparent;
  transition: border-color 0.25s ease;
}

.nav-burger:hover {
  border-color: var(--muted);
}

.nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.25s ease;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 6, 0.55);
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  padding: 72px 28px 32px;
  overflow-y: auto;
}

.nav-drawer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-drawer__list a {
  display: block;
  padding: 12px 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.02em;
}

.nav-drawer__list a:hover {
  color: var(--accent);
}

.nav-toggle:checked ~ .nav-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-toggle:checked ~ .nav-drawer {
  transform: translateX(0);
}

.nav-toggle:checked ~ .navbar .nav-burger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle:checked ~ .navbar .nav-burger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked ~ .navbar .nav-burger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (min-width: 901px) {
  .navbar__cta {
    display: inline-flex;
  }
}

.hero {
  position: relative;
  min-height: 280px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  overflow: hidden;
}

.hero__stripe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 140%;
  background: var(--accent);
  opacity: 0.2;
  transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.2;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero {
    min-height: 240px;
    padding: 32px 20px;
  }

  .hero__stripe {
    width: 36px;
  }
}

.offers-section {
  padding: 64px 24px;
  background: var(--surface);
}

.offers-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.offers-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--text);
  margin-bottom: 10px;
}

.offers-section__lead {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 40px;
  max-width: 580px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.offer-card--netbet {
  background: linear-gradient(160deg, #1a2e1a 0%, #0d1a0d 100%);
}

.offer-card--olybet {
  background: linear-gradient(160deg, #2d1f4e 0%, #1a1235 100%);
}

.offer-card--partypoker {
  background: linear-gradient(160deg, #4a1520 0%, #2a0a10 100%);
}

.offer-card--pmu {
  background: linear-gradient(160deg, #0a3d28 0%, #052818 100%);
}

.offer-card--betclic {
  background: linear-gradient(160deg, #3d1518 0%, #220a0c 100%);
}

.offer-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 22px 10px;
}

.offer-card__logo-wrap {
  width: 72px;
  height: 72px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  flex-shrink: 0;
}

.offer-card__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
}

.offer-card__name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  font-family: var(--sans);
}

.offer-card__body {
  padding: 0 22px 18px;
  flex: 1;
}

.offer-card__bonus-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.offer-card__bonus {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-card__terms {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.offer-card__desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.offer-card__cta {
  display: block;
  margin: 0 22px 22px;
  padding: 12px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.25s ease;
}

.offer-card__cta:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.offer-card--netbet .offer-card__cta {
  background: #00a651;
}

.offer-card--olybet .offer-card__cta {
  background: #6b4fa0;
}

.offer-card--partypoker .offer-card__cta {
  background: #c41e3a;
}

.offer-card--pmu .offer-card__cta {
  background: #006b3f;
}

.offer-card--betclic .offer-card__cta {
  background: #e10014;
}

.info-section {
  padding: 56px 24px;
}

.info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.info-section h2 {
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  color: var(--text);
  margin-bottom: 14px;
}

.info-section p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 68ch;
}

.info-1 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
  padding: 48px;
  background: var(--off-white);
  color: #1a2e1a;
}

.info-1 h2 {
  color: #0B120E;
}

.info-1 p {
  color: #3d5c40;
}

.info-1__symbol {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--primary);
  line-height: 1;
  opacity: 0.7;
}

.info-2 {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-right: 12%;
}

.info-2__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.info-2__step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.info-2__step-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--accent);
  opacity: 0.8;
}

.info-2__step p {
  font-size: 14px;
  max-width: none;
}

.info-3 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.info-3__panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  margin-top: 24px;
}

.info-3__panel strong {
  display: block;
  color: var(--accent);
  font-size: 13px;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.info-3__panel p {
  font-size: 14px;
  max-width: none;
}

.info-4 {
  background: var(--off-white);
  padding: 52px 48px;
  margin-left: 8%;
}

.info-4 h2 {
  color: #0B120E;
}

.info-4 p {
  color: #3d5c40;
}

.info-4__list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-4__list li {
  padding: 14px 18px;
  background: #fff;
  border-left: 3px solid var(--primary);
  font-size: 14px;
  color: #3d5c40;
}

.info-5 {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  gap: 40px;
  align-items: center;
}

.info-5__visual {
  height: 180px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--bg) 70%);
  opacity: 0.6;
}

.info-5__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.info-5__chip {
  padding: 8px 16px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.info-6 {
  text-align: center;
  padding: 64px 24px;
  background: var(--surface);
}

.info-6 h2 {
  margin-bottom: 20px;
}

.info-6 p {
  margin: 0 auto;
}

.info-6__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  text-align: left;
}

.info-6__item {
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--bg);
}

.info-6__item strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  margin-bottom: 8px;
}

.info-6__item p {
  font-size: 13px;
  max-width: none;
}

.info-7 {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.info-7__aside {
  flex-shrink: 0;
  width: 100px;
  padding-top: 8px;
}

.info-7__line {
  width: 1px;
  height: 120px;
  background: var(--accent);
  opacity: 0.4;
  margin-left: 20px;
}

.info-7__content {
  flex: 1;
  padding-left: 24px;
  border-left: 1px solid var(--border);
}

.info-8 {
  background: var(--off-white);
  padding: 48px;
  margin-right: 10%;
}

.info-8 h2 {
  color: #0B120E;
}

.info-8 p {
  color: #3d5c40;
}

.info-8__devices {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  align-items: flex-end;
}

.info-8__device {
  flex: 1;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(46, 125, 50, 0.15);
  min-height: 80px;
}

.info-8__device strong {
  display: block;
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 6px;
}

.info-8__device span {
  font-size: 12px;
  color: #5a7a5c;
}

.info-9 blockquote {
  border: none;
  padding: 0 0 0 28px;
  border-left: 2px solid var(--accent);
  margin-top: 16px;
}

.info-9 blockquote p {
  font-style: italic;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--text);
}

.info-9__note {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 520px;
}

.info-9__note p {
  font-size: 13px;
  max-width: none;
}

.info-10 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
}

.info-10__stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-10__stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.info-10__stat-val {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--accent);
  min-width: 60px;
}

.info-10__stat p {
  font-size: 13px;
  max-width: none;
}

@media (max-width: 768px) {
  .offer-card__logo-wrap {
    width: 64px;
    height: 64px;
  }

  .offer-card__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .offer-card__bonus {
    font-size: 0.9rem;
  }

  .info-1 {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .info-2 {
    padding-right: 0;
  }

  .info-3 {
    grid-template-columns: 1fr;
  }

  .info-4 {
    margin-left: 0;
    padding: 32px 24px;
  }

  .info-5 {
    grid-template-columns: 1fr;
  }

  .info-5__visual {
    height: 80px;
  }

  .info-6__grid {
    grid-template-columns: 1fr;
  }

  .info-7 {
    flex-direction: column;
    gap: 20px;
  }

  .info-7__aside {
    display: none;
  }

  .info-7__content {
    padding-left: 0;
    border-left: none;
  }

  .info-8 {
    margin-right: 0;
    padding: 32px 24px;
  }

  .info-8__devices {
    flex-direction: column;
  }

  .info-10 {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  margin-top: auto;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.site-footer__brand img {
  height: 28px;
  width: auto;
  margin-bottom: 14px;
}

.site-footer__brand p {
  font-size: 13px;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.6;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__links a {
  font-size: 13px;
  color: var(--muted);
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.site-footer__badge img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.site-footer__badge:hover img {
  opacity: 1;
}

.site-footer__disclosure {
  font-size: 12px;
  color: var(--muted);
  margin-top: 24px;
  line-height: 1.6;
  max-width: 720px;
}

.site-footer__copy {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  opacity: 0.7;
}

.site-footer__cookie-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5, 8, 6, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate__box {
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 36px;
  text-align: center;
}

.age-gate__box h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--text);
}

.age-gate__box p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.age-check:checked ~ .age-gate {
  display: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 18px 24px;
}

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

.cookie-banner__text {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 240px;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--primary);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-check:checked ~ .cookie-banner {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.25s ease, opacity 0.25s ease;
}

.btn--primary {
  background: var(--primary);
  color: var(--text);
}

.btn--primary:hover {
  background: var(--secondary);
}

.btn--secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.btn--secondary:hover {
  border-color: var(--muted);
  color: var(--text);
}

.subpage-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: 52px;
}

.subpage-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
}

.subpage-header__logo img {
  height: 30px;
  width: auto;
}

.content-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.content-page h1 {
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  color: var(--text);
  margin-bottom: 20px;
}

.content-page h2 {
  font-size: 1.2rem;
  color: var(--text);
  margin: 32px 0 12px;
}

.content-page h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin: 24px 0 10px;
}

.content-page p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.content-page ul {
  margin: 12px 0 16px 20px;
  color: var(--muted);
}

.content-page li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
}

.content-page a {
  color: var(--primary);
}

.error-page {
  text-align: center;
  padding: 80px 24px;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-page h1 {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 300;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 16px;
}

.contact-form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label {
  font-size: 14px;
  color: var(--text);
  margin-top: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  border-radius: 2px;
  transition: border-color 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  display: none;
  font-size: 13px;
  color: #ef5350;
  margin-top: 4px;
}

.contact-form input:user-invalid:not(:placeholder-shown) + .form-error {
  display: block;
}

.contact-form input:user-invalid:not(:placeholder-shown) {
  border-color: #ef5350;
}

.contact-success {
  display: none;
  margin-top: 28px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--primary);
  border-radius: 2px;
}

.contact-success p {
  color: var(--text);
  margin: 0;
  font-size: 15px;
}

.contact-form-wrap:has(#envoye:target) .contact-form {
  display: none;
}

.contact-form-wrap:has(#envoye:target) .contact-success {
  display: block;
}

#envoye {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
