:root {
  --bg: #F4F1EC;
  --bg2: #EDE9E2;
  --surface: #FFFFFF;
  --ink: #1A1714;
  --ink-soft: #5C5750;
  --ink-muted: #9E9890;
  --accent: #1e40af;
  --accent2: #2563eb;
  --accent-light: #dbeafe;
  --amber: #E9C46A;
  --amber-dark: #C9A227;
  --line: #DDD9D1;
  --radius: 16px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
}

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

nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,241,236,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 0 5vw;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 1.35rem;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.logo span { color: var(--ink); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
}
.nav-links a {
  white-space: nowrap;
  font-size: .92rem; font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: .45rem 1.2rem;
  border-radius: 50px;
  font-size: .88rem !important;
  font-weight: 600 !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--accent2) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

.hero {
  min-height: 40vh;
  display: flex; align-items: center;
  padding: 3rem 5vw 2.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 40%, rgba(30,64,175,.08) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 20% 80%, rgba(233,196,106,.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1180px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent-light);
  color: var(--accent);
  font-size: .8rem; font-weight: 600;
  padding: .35rem .9rem; border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeUp .6s ease both;
}
.hero-badge::before { content: '✦'; font-size: .7rem; }
h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.2rem;
  animation: fadeUp .6s .1s ease both;
}
h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 1.08rem; color: var(--ink-soft);
  max-width: 480px; margin-bottom: 2.2rem;
  font-weight: 300;
  animation: fadeUp .6s .2s ease both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .6s .3s ease both;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: .8rem 2rem;
  border-radius: 50px;
  font-weight: 600; font-size: .95rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(30,64,175,.25);
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(30,64,175,.35); }
.btn-outline {
  border: 2px solid var(--line);
  color: var(--ink);
  padding: .78rem 1.8rem;
  border-radius: 50px;
  font-weight: 500; font-size: .95rem;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats {
  display: flex; gap: 2rem; margin-top: 3rem;
  animation: fadeUp .6s .4s ease both;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--ink); }
.stat-lbl { font-size: .78rem; color: var(--ink-muted); text-transform: uppercase; letter-spacing: .06em; }

.hero-visual {
  display: flex; flex-direction: column; gap: 1rem;
  animation: fadeUp .6s .2s ease both;
}
.platform-card-mini {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  display: flex; align-items: center; gap: 1.2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
  cursor: default;
}
.platform-card-mini:hover { transform: translateX(8px); box-shadow: 0 6px 30px rgba(0,0,0,.1); }
.platform-card-mini:nth-child(1) { transform: translateX(0); }
.platform-card-mini:nth-child(2) { transform: translateX(20px); }
.platform-card-mini:nth-child(3) { transform: translateX(8px); }
.platform-card-mini:nth-child(1):hover { transform: translateX(8px); }
.platform-card-mini:nth-child(2):hover { transform: translateX(28px); }
.platform-card-mini:nth-child(3):hover { transform: translateX(16px); }
.pmini-logo {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: .85rem;
  flex-shrink: 0;
  overflow: hidden;
}
.pmini-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
}
.pmini-logo.netbet,
.pmini-logo.bwin,
.pmini-logo.betclic {
  width: 80px; height: 48px;
  background: transparent;
}
.pmini-info { flex: 1; }
.pmini-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .95rem; }
.pmini-desc { font-size: .78rem; color: var(--ink-muted); }
.pmini-score {
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.1rem;
  color: var(--accent);
}

section { padding: 5rem 5vw; }
section[id] { scroll-margin-top: 5rem; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-tag {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .8rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem; color: var(--ink-soft);
  max-width: 560px; margin-bottom: 3rem;
  font-weight: 300;
}

.platforms-section { background: var(--surface); }
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.platform-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.platform-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.platform-card.netbet::before { background: linear-gradient(90deg, #1565C0, #42A5F5); }
.platform-card.bwin::before { background: linear-gradient(90deg, #E65100, #FF9800); }
.platform-card.betclic::before { background: linear-gradient(90deg, #6A1B9A, #AB47BC); }
.platform-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.1); border-color: transparent; }
.card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.card-logo {
  width: 180px; height: 108px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 800;
  overflow: hidden;
  flex-shrink: 0;
}
.card-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
}
.card-logo.netbet,
.card-logo.bwin,
.card-logo.betclic { background: transparent; }
.card-title-block { flex: 0 0 auto; }
.card-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.15rem; }
.card-since { font-size: .78rem; color: var(--ink-muted); }
.card-score-wrap { text-align: left; }
.card-score { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.8rem; color: var(--accent); line-height: 1; }
.card-score-lbl { font-size: .7rem; color: var(--ink-muted); text-transform: uppercase; }
.stars { color: var(--amber-dark); font-size: .9rem; margin-bottom: .8rem; letter-spacing: 2px; }
.card-bonus {
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  margin-bottom: 1.2rem;
}
.card-bonus-lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; color: var(--accent); font-weight: 700; }
.card-bonus-val { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; color: var(--ink); }
.card-features { list-style: none; margin-bottom: 1.5rem; flex: 1; }
.card-features li {
  font-size: .88rem; color: var(--ink-soft);
  padding: .35rem 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: .5rem;
}
.card-features li:last-child { border-bottom: none; }
.card-features li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: .85rem; }
.card-btn {
  display: block; text-align: center;
  background: var(--accent); color: #fff;
  padding: .85rem; border-radius: 50px;
  font-weight: 600; font-size: .92rem;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
}
.card-btn:hover { background: var(--accent2); transform: translateY(-1px); }
.card-disclaimer { font-size: .7rem; color: var(--ink-muted); text-align: center; margin-top: .6rem; }

.features-section { background: var(--bg2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
}
.feature-box:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.08); }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.feature-box h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.feature-box p { font-size: .88rem; color: var(--ink-soft); }

.how-section { background: var(--surface); }
.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-light), var(--accent), var(--accent-light));
  z-index: 0;
}
.step-box { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(30,64,175,.3);
}
.step-box h3 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.step-box p { font-size: .83rem; color: var(--ink-soft); }

.compare-section { background: var(--bg2); }
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  border: 1px solid var(--line);
}
.compare-table thead th,
.compare-table td {
  border: 1px solid var(--line);
}
.compare-table thead th {
  background: #F0EDE8;
  color: var(--ink);
  padding: 1.1rem 1.2rem;
  text-align: center;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .88rem;
}
.compare-table thead th .compare-th-logo {
  display: block;
  height: 36px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  object-position: center;
}
.compare-table thead th:first-child { border-radius: var(--radius) 0 0 0; text-align: left; color: var(--ink); }
.compare-table thead th:last-child { border-radius: 0 var(--radius) 0 0; }
.compare-table tbody tr:hover { background: var(--bg); }
.compare-table td { padding: 1rem 1.2rem; font-size: .9rem; }
.compare-table td:first-child { font-weight: 600; color: var(--ink-soft); }
.check { color: var(--accent); font-weight: 700; }
.cross { color: #ccc; }

.reviews-section { background: var(--surface); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.review-stars { color: var(--amber-dark); font-size: .95rem; letter-spacing: 2px; margin-bottom: .8rem; }
.review-text {
  font-size: .9rem; color: var(--ink-soft);
  font-style: italic; margin-bottom: 1.1rem;
  line-height: 1.65;
}
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .85rem;
  color: #fff;
  flex-shrink: 0;
}
.av-1 { background: linear-gradient(135deg, #1e40af, #2563eb); }
.av-2 { background: linear-gradient(135deg, #1565C0, #42A5F5); }
.av-3 { background: linear-gradient(135deg, #E65100, #FF9800); }
.av-4 { background: linear-gradient(135deg, #6A1B9A, #AB47BC); }
.av-5 { background: linear-gradient(135deg, #C9A227, #E9C46A); }
.av-6 { background: linear-gradient(135deg, #37474F, #78909C); }
.review-name { font-weight: 600; font-size: .9rem; }
.review-meta { font-size: .75rem; color: var(--ink-muted); }

.faq-section { background: var(--bg2); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.faq-item {
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: hidden;
}
.faq-q {
  padding: 1.1rem 1.3rem;
  font-weight: 600; font-size: .92rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: color .2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q .arrow { font-size: .8rem; transition: transform .3s; flex-shrink: 0; margin-left: .5rem; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .2s;
  padding: 0 1.3rem;
  font-size: .88rem; color: var(--ink-soft); line-height: 1.65;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.3rem 1.1rem; }

.cta-section {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 5rem 5vw;
}
.cta-section .section-tag { color: var(--amber); }
.cta-section .section-title { color: #fff; margin-bottom: .8rem; }
.cta-section p { color: rgba(255,255,255,.6); margin-bottom: 2rem; font-weight: 300; }
.btn-gold {
  background: var(--amber);
  color: var(--ink);
  padding: .85rem 2.4rem;
  border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(233,196,106,.3);
  display: inline-block;
}
.btn-gold:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(233,196,106,.4); }

.responsible-section { background: var(--bg); border-top: 1px solid var(--line); }
.responsible-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  padding: 2.5rem 0;
}
.responsible-icon { font-size: 2.5rem; flex-shrink: 0; }
.responsible-text h3 { font-size: 1rem; margin-bottom: .3rem; }
.responsible-text p { font-size: .83rem; color: var(--ink-soft); }
.responsible-text a { color: var(--accent); font-weight: 600; }

footer {
  background: #110F0D;
  color: rgba(255,255,255,.85);
  padding: 4rem 5vw 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
.footer-inner { max-width: 1180px; margin: 0 auto; }
.footer-disclaimer {
  text-align: center;
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.7);
  margin: 0 0 2rem;
  font-family: 'DM Sans', sans-serif;
}
.footer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2rem;
  margin-bottom: 3rem;
}
.footer-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}
.footer-logo-link:hover { opacity: .85; }
.footer-logo-link img {
  max-height: 48px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  margin-bottom: 2.5rem;
}
.footer-col-left p,
.footer-col-right p {
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  margin-bottom: 1rem;
}
.footer-intro {
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 1.25rem;
}
.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  margin: 1.5rem 0 .75rem;
}
.footer-heading:first-of-type { margin-top: 0; }
.footer-contacts {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-contacts li {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  margin-bottom: 1rem;
}
.footer-contacts li strong { color: #fff; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.12); margin-bottom: 1.5rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
}
.footer-age {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--accent2);
}
.footer-links-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-links-bottom a {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .2s;
}
.footer-links-bottom a:hover { color: #fff; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .platforms-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .steps-row::before { display: none; }
  .footer-content { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: calc(100vh - 68px);
    background: var(--bg);
    padding: 2rem 5vw 3rem;
    gap: 0;
    z-index: 99;
    overflow-y: auto;
    border-top: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 1.1rem;
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }
  .nav-links a.nav-cta {
    margin-top: 1rem;
    text-align: center;
    border-radius: 50px;
    padding: .9rem 1.5rem;
    border-bottom: none;
  }
  .hamburger { display: flex; }
  body.menu-open { overflow: hidden; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: .8rem; }
  .compare-table td, .compare-table thead th { padding: .7rem .8rem; }
  .footer-content { grid-template-columns: 1fr; }
  .footer-logos { gap: 1rem; }
  .footer-bottom { flex-direction: column; }
  .responsible-inner { flex-direction: column; text-align: center; }
}
