:root {
  --bg: #05060A;
  --surface: #0E1020;
  --text: #EDE9FE;
  --muted: #A1A1AA;
  --primary: #22D3EE;
  --secondary: #A3E635;
  --accent: #F472B6;
  --border: rgba(237, 233, 254, 0.12);
  --nav-bg: rgba(15, 15, 25, 0.75);
  --nav-height: 56px;
  --max-w: 1200px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  background-image: linear-gradient(160deg, var(--bg) 0%, rgba(34, 211, 238, 0.04) 45%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(34, 211, 238, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(163, 230, 53, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

.compliance-banner {
  width: 100%;
  background: rgba(237, 233, 254, 0.08);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
  padding: 8px 16px;
  border-top: 1px dotted rgba(161, 161, 170, 0.5);
  border-bottom: 1px dotted rgba(161, 161, 170, 0.5);
  line-height: 1.45;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: var(--nav-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.header-logo img {
  max-height: 28px;
  width: auto;
  display: block;
}

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

.header-nav a {
  color: rgba(237, 233, 254, 0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s, text-shadow 0.2s;
}

.header-nav a:hover {
  color: var(--primary);
  text-shadow: 0 0 8px var(--accent);
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 199;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-overlay.open {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  transition: text-shadow 0.2s;
}

.mobile-nav a:hover {
  text-shadow: 0 0 12px var(--accent);
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 48px 24px 32px;
  margin-top: auto;
  flex-shrink: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto 32px;
}

.footer-brand img {
  max-height: 28px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.footer-links h4,
.footer-legal h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 14px;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-legal a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--text);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
}

.footer-badges a {
  display: block;
}

.footer-badges img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-badges a:hover img {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding-top: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.footer-cookie-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--secondary);
  cursor: pointer;
  text-decoration: underline;
  font-size: 12px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 10, 0.85);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.hidden {
  display: none;
}

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.modal-box h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text);
}

.modal-box p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
  font-weight: 600;
}

.btn-primary:hover {
  background: #06b6d4;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
}

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

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

.legal-page h1 {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--text);
}

.legal-page h2 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
  color: var(--text);
}

.legal-page h3 {
  font-size: 1rem;
  margin: 20px 0 10px;
}

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

.legal-page ul {
  margin: 0 0 14px 24px;
}

.legal-page li {
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--muted);
}

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

.medical-trust-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
}

.clinical-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 4px;
  font-size: 11px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.health-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.clean-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .legal-page {
    padding: 32px 20px 48px;
  }
}

.hero {
  position: relative;
  background: var(--surface);
  padding: 60px;
  overflow: hidden;
  min-height: 340px;
  max-width: 100%;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  max-width: 600px;
  line-height: 1.25;
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
}

.hero-deco {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35%;
  max-width: 350px;
  object-fit: contain;
  opacity: 0.5;
  z-index: 1;
}

.offers-section {
  position: relative;
  padding: 56px 24px;
  background-color: var(--surface);
  background-image:
    linear-gradient(rgba(5, 6, 10, 0.88), rgba(14, 16, 32, 0.92)),
    url("/images/offers_bg/offers_bg.svg");
  background-size: cover;
  background-position: center;
}

.offers-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(34, 211, 238, 0.08), transparent 55%);
  pointer-events: none;
}

.offers-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.offers-inner h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--text);
}

.offers-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.offer-card {
  background: linear-gradient(145deg, #1a1510 0%, #141414 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(249, 115, 22, 0.15);
}

.offer-card-logo-wrap {
  background: #FFFFFF;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-card-logo {
  width: 280px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.offer-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-card-name {
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 10px;
  font-weight: 600;
}

.offer-bonus-group {
  margin-bottom: 12px;
}

.offer-card-bonus {
  font-size: 15px;
  color: #FBBF24;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.offer-card-terms {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.offer-card-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.45;
  margin-bottom: 16px;
  flex: 1;
}

.offer-card-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  background: linear-gradient(135deg, #D97706, #F59E0B);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s;
  cursor: pointer;
}

.offer-card-cta:hover {
  background: linear-gradient(135deg, #B45309, #D97706);
}

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

.info-section:nth-child(even) {
  background: rgba(14, 16, 32, 0.5);
}

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

.info-section h2 {
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 16px;
}

.info-section p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.65;
}

.layout-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.cote-formula {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  margin: 20px 0;
}

.cote-formula span {
  display: block;
  font-size: 11px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.cote-formula strong {
  font-size: 1.1rem;
  color: var(--secondary);
}

.basket-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.basket-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
}

.basket-card h3 {
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 8px;
}

.basket-card p {
  font-size: 13px;
  margin-bottom: 0;
}

.stats-timeline {
  margin-top: 20px;
  border-left: 2px solid var(--primary);
  padding-left: 24px;
}

.stats-step {
  position: relative;
  margin-bottom: 24px;
}

.stats-step::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary);
  border: 2px solid var(--bg);
}

.stats-step h3 {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
}

.stats-step p {
  font-size: 14px;
  margin-bottom: 0;
}

.info-stats-bg {
  background-image: linear-gradient(rgba(5, 6, 10, 0.9), rgba(5, 6, 10, 0.85)), url("/images/decorative/decor_2.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.layout-asymmetric {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}

.tennis-highlight {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
}

.responsible-panel {
  background: rgba(244, 114, 182, 0.08);
  border: 1px solid rgba(244, 114, 182, 0.25);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
}

.responsible-list {
  list-style: none;
  margin: 16px 0 0;
}

.responsible-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.responsible-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.guide-split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

.guide-visual {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.guide-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.guide-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 6px;
}

.guide-card h3 {
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 6px;
}

.guide-card p {
  font-size: 13px;
  margin-bottom: 0;
}

.sites-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 14px;
}

.sites-table th,
.sites-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.sites-table th {
  color: var(--primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sites-table td {
  color: var(--muted);
}

.cashout-flow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cashout-step {
  flex: 1;
  min-width: 140px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  text-align: center;
}

.cashout-step-num {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cashout-step h3 {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 6px;
}

.cashout-step p {
  font-size: 12px;
  margin-bottom: 0;
}

.football-band {
  background: var(--surface);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
}

.football-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.football-pill {
  padding: 6px 14px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 20px;
  font-size: 12px;
  color: var(--primary);
}

.types-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.types-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
}

.types-tile h3 {
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 8px;
}

.types-tile p {
  font-size: 13px;
  margin-bottom: 0;
}

.info-types-bg {
  position: relative;
  overflow: hidden;
}

.info-types-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, var(--bg) 55%, transparent), url("/images/decorative/decor_4.jpg");
  background-size: cover;
  background-position: right center;
  opacity: 0.25;
  pointer-events: none;
}

.info-types-bg .info-inner {
  position: relative;
  z-index: 1;
}

.info-cta-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.info-cta-link:hover {
  background: var(--primary);
  color: var(--bg);
}

@media (max-width: 768px) {
  .hero {
    padding: 32px 24px;
    text-align: center;
  }

  .hero h1,
  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-deco {
    display: none;
  }

  .layout-split,
  .layout-asymmetric,
  .guide-split {
    grid-template-columns: 1fr;
  }

  .basket-cards,
  .guide-cards,
  .types-mosaic {
    grid-template-columns: 1fr;
  }

  .offer-card-logo {
    width: 240px;
    height: 77px;
  }

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

  .guide-visual {
    max-width: 100%;
    max-height: 220px;
    object-fit: cover;
  }

  .info-section {
    overflow-x: hidden;
  }
}
