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

:root {
  --bg: #0B0B0B;
  --surface: #151515;
  --surface-light: #1C1C1C;
  --text: #FAFAFA;
  --muted: #A3A3A3;
  --primary: #DC2626;
  --secondary: #FACC15;
  --accent: #16A34A;
  --border: rgba(250, 250, 250, 0.12);
  --max-w: 1200px;
  --serif: Georgia, "Times New Roman", "Palatino Linotype", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;
}

html {
  scroll-behavior: smooth;
}

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

main {
  flex: 1 0 auto;
}

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

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

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

.disclosure-bar {
  width: 100%;
  background-color: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  padding: 8px 16px;
  line-height: 1.5;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.navbar-split {
  display: flex;
  align-items: stretch;
  min-height: 60px;
}

.navbar-half {
  flex: 1;
  display: flex;
  align-items: center;
}

.navbar-half--logo {
  background: var(--surface-light);
  justify-content: flex-end;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar-half--links {
  background: var(--bg);
  justify-content: flex-start;
}

.navbar-container {
  max-width: 600px;
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.navbar-half--logo .navbar-container {
  margin-left: auto;
  justify-content: flex-end;
}

.navbar-half--links .navbar-container {
  margin-right: auto;
  justify-content: flex-end;
  gap: 0;
}

.navbar-logo img {
  height: 34px;
  width: auto;
}

.navbar-links {
  display: flex;
  list-style: none;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navbar-links a {
  display: block;
  padding: 8px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.navbar-links a:hover {
  color: var(--primary);
}

.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: background 0.2s ease;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1998;
}

.nav-overlay.open {
  display: block;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--surface);
  z-index: 1999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 72px 32px 32px;
  gap: 20px;
  border-left: 1px solid var(--border);
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
}

.nav-drawer a {
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.2rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}

.nav-drawer a:hover {
  color: var(--primary);
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1200px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  animation: heroReveal 1.2s ease-out both;
}

.hero-subtitle {
  display: none;
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.offers-section {
  padding: 72px 24px;
  background-color: var(--surface);
  background-image: linear-gradient(rgba(11, 11, 11, 0.88), rgba(11, 11, 11, 0.92)), url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

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

.offers-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
}

.offers-section h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 36px;
}

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

.offer-card {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.offer-card:hover {
  box-shadow: 0 8px 32px rgba(17, 24, 39, 0.12);
  transform: translateY(-2px);
}

.offer-card__logo-wrap {
  width: 180px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.offer-card__name {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: #111827;
}

.offer-card__bonus-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-card__bonus {
  font-size: 15px;
  color: #4B5563;
  font-weight: 500;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.offer-card__terms {
  font-size: 11px;
  color: #9CA3AF;
}

.offer-card__desc {
  font-size: 12px;
  color: #6B7280;
  line-height: 1.5;
}

.offer-card__cta {
  display: inline-block;
  margin-top: auto;
  padding: 12px 24px;
  background: #2563EB;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease;
}

.offer-card__cta:hover {
  background: #1D4ED8;
  color: #fff;
}

.info-section {
  padding: 72px 24px;
  border-top: 1px solid var(--border);
}

.info-section:nth-child(even) {
  background: var(--surface);
}

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

.info-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.info-section h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.25;
}

.info-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.layout-split__visual {
  overflow: hidden;
  border-radius: 4px;
  max-width: 500px;
  max-height: 320px;
  border: 1px solid var(--border);
}

.layout-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 320px;
  animation: slowFloat 8s ease-in-out infinite;
}

@keyframes slowFloat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.layout-accent {
  border-left: 3px solid var(--primary);
  padding-left: 32px;
  max-width: 760px;
}

.layout-banner {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}

.layout-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.layout-banner__content {
  position: relative;
  z-index: 1;
  padding: 40px;
  background: linear-gradient(transparent, rgba(11, 11, 11, 0.95));
  width: 100%;
}

.layout-float {
  overflow: hidden;
}

.layout-float__img {
  float: right;
  width: min(280px, 45%);
  margin: 0 0 16px 32px;
  border-radius: 4px;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.layout-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.layout-steps__item {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.layout-steps__item:hover {
  border-color: var(--primary);
}

.layout-steps__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--secondary);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.layout-quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.layout-quote__pull {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.4;
}

.layout-quote__img-wrap {
  max-width: 500px;
  max-height: 320px;
  margin: 32px auto 0;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.layout-quote__img-wrap img {
  width: 100%;
  object-fit: cover;
  max-height: 320px;
}

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

.layout-cards__item {
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.layout-cards__item h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.layout-zigzag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.layout-zigzag__img {
  max-width: 500px;
  max-height: 320px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.layout-zigzag__img img {
  width: 100%;
  object-fit: cover;
  max-height: 320px;
}

.layout-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.layout-list ul {
  list-style: none;
  margin-top: 16px;
}

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

.layout-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.layout-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.layout-grid-2x2__block {
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.layout-grid-2x2__block:hover {
  transform: translateY(-2px);
}

.layout-grid-2x2__block h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

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

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

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-logo img {
  height: 32px;
  width: auto;
  margin-bottom: 12px;
}

.footer-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  max-width: 360px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer-link {
  color: var(--muted);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--primary);
}

.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);
  margin-bottom: 24px;
}

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

.footer-badge:hover img {
  opacity: 1;
}

.footer-copy {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

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

.age-gate.active {
  display: flex;
}

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

.age-gate-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text);
}

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

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

.age-gate-btn {
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease;
}

.age-gate-btn-confirm {
  background: var(--primary);
  color: #fff;
}

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

.age-gate-btn:hover {
  opacity: 0.88;
}

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

.cookie-banner.active {
  display: block;
}

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

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

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

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

.cookie-banner-btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s ease;
}

.cookie-banner-btn-accept {
  background: var(--primary);
  color: #fff;
}

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

.page-hero {
  padding: 60px 24px 40px;
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--text);
}

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

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

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

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

.page-header-simple {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-simple .navbar-logo img {
  height: 34px;
}

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

.contact-form-group label {
  display: block;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 500;
}

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

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

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

.contact-form-error {
  display: none;
  color: var(--primary);
  font-size: 12px;
  margin-top: 6px;
}

.contact-form-error.active {
  display: block;
}

.contact-form-submit {
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
  transition: opacity 0.2s ease;
}

.contact-form-submit:hover {
  opacity: 0.9;
}

.contact-form-success {
  display: none;
  margin-top: 32px;
  padding: 24px;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid var(--accent);
  border-radius: 4px;
  color: var(--text);
}

.contact-form-success.active {
  display: block;
}

.redirect-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  background: var(--bg);
}

.redirect-ad {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 24px;
  font-weight: 700;
}

.redirect-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 24px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.redirect-msg {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 16px;
}

.redirect-note {
  color: var(--muted);
  font-size: 13px;
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.redirect-compliance {
  color: var(--muted);
  font-size: 12px;
}

.error-page {
  text-align: center;
  padding: 80px 24px;
  max-width: 560px;
  margin: 0 auto;
}

.error-code {
  font-family: var(--mono);
  font-size: 5rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
}

.error-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--text);
}

.error-text {
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.error-link {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.error-link:hover {
  opacity: 0.9;
  color: #fff;
}

@media (max-width: 900px) {
  .navbar-split {
    background: var(--bg);
  }

  .navbar-half--logo {
    flex: 1;
    border-right: none;
    background: var(--bg);
    justify-content: space-between;
  }

  .navbar-half--links {
    display: none;
  }

  .navbar-half--logo .navbar-container {
    max-width: var(--max-w);
    margin: 0 auto;
    justify-content: space-between;
    width: 100%;
  }

  .nav-burger {
    display: flex;
  }

  .layout-split,
  .layout-zigzag,
  .layout-list,
  .layout-grid-2x2,
  .layout-steps,
  .layout-cards {
    grid-template-columns: 1fr;
  }

  .layout-float__img {
    float: none;
    width: 100%;
    margin: 0 0 20px;
  }

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

@media (max-width: 640px) {
  .hero-subtitle {
    display: block;
  }

  .layout-banner__content {
    padding: 24px;
  }

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

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-banner-btn {
    flex: 1;
  }

  .offer-card__logo-wrap {
    width: 160px;
    height: 50px;
  }

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

  .offer-card__bonus {
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .layout-split__visual,
  .layout-quote__img-wrap,
  .layout-zigzag__img,
  .layout-banner,
  .layout-float {
    max-width: 100%;
    overflow: hidden;
  }

  .layout-split__visual img,
  .layout-quote__img-wrap img,
  .layout-zigzag__img img,
  .layout-float__img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
  }

  .layout-banner {
    min-height: auto;
  }

  .layout-float__img {
    float: none;
    width: 100%;
    margin: 0 0 16px;
  }

  .offer-card__logo-wrap {
    width: 150px;
    height: 48px;
  }

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