:root {
  --bg: #2a0e05;
  --surface: #3a1408;
  --text: #fff7ed;
  --muted: #fdba74;
  --primary: #f97316;
  --secondary: #fb7185;
  --accent: #facc15;
  --border: rgba(255, 247, 237, 0.14);
  --warning: #f59e0b;
  --serif: Georgia, "Times New Roman", "Nimbus Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

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

main {
  flex: 1 0 auto;
}

body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

a {
  color: var(--primary);
  text-decoration: none;
}

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

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

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.disclosure-banner {
  background-color: #fffdf8;
  color: #4a2a06;
  border-left: 4px solid var(--warning);
  padding: 10px 16px 10px 20px;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background-color: var(--surface);
  border-bottom: 3px solid var(--accent);
  position: static;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nav-links a:hover {
  background-color: rgba(0, 0, 0, 0.35);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 44px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text);
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: #2a0e05;
}

.btn-primary:hover {
  background-color: var(--accent);
  color: #2a0e05;
}

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

.btn-secondary:hover {
  background-color: var(--surface);
  color: var(--accent);
}

.hero {
  padding: 36px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}

.hero-cell {
  min-height: 300px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-headline {
  background-color: var(--surface);
}

.hero-headline h1 {
  font-size: 40px;
  margin: 0 0 12px;
}

.hero-headline p.kicker {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.hero-subtitle {
  background-color: var(--bg);
  border: 1px solid var(--border);
}

.hero-subtitle p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

.hero-media-1,
.hero-media-2 {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-media-1 {
  background-image: url(/images/decorative/decor_1.jpg);
}

.hero-media-2 {
  background-image: url(/images/decorative/decor_2.jpg);
}

.section {
  padding: 54px 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-head h2 {
  font-size: 30px;
  margin: 0 0 10px;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.offers {
  background-image: linear-gradient(rgba(42, 14, 5, 0.86), rgba(42, 14, 5, 0.92)), url(/images/offers_bg/offers_bg.webp);
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.offers h2 {
  font-size: 32px;
  text-align: center;
  margin: 0 0 8px;
}

.offers-intro {
  text-align: center;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 38px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.offer-card {
  background-color: #ffffff;
  color: #1f2937;
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

.offer-card-media {
  width: 200px;
  height: 96px;
  max-width: 100%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.offer-name {
  font-size: 20px;
  margin: 0 0 10px;
  color: #111827;
  text-align: center;
}

.offer-bonus-group {
  background-color: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
  text-align: center;
}

.offer-bonus {
  font-weight: 700;
  font-size: 16px;
  color: #c2410c;
  margin: 0 0 4px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.offer-terms {
  display: block;
  font-size: 11px;
  color: #9ca3af;
}

.offer-desc {
  font-size: 12px;
  color: #6b7280;
  margin: 0 0 16px;
  line-height: 1.5;
}

.offer-cta {
  margin-top: auto;
  background-color: var(--primary);
  color: #ffffff;
}

.offer-cta:hover {
  background-color: #c2410c;
  color: #ffffff;
}

.info {
  border-top: 1px solid var(--border);
}

.info h2 {
  font-size: 28px;
  margin: 0 0 14px;
}

.info p {
  margin: 0 0 12px;
}

.decor-wrap {
  overflow: hidden;
  border-radius: 12px;
  max-width: 500px;
}

.decor-img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.info-split-left .info-row {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 40px;
  align-items: center;
}

.info-centered {
  background-color: var(--surface);
}

.info-centered .info-row {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.info-centered .info-badge {
  display: inline-block;
  font-family: var(--serif);
  font-size: 26px;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  line-height: 60px;
  margin-bottom: 18px;
}

.info-banner .info-banner-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  background-image: linear-gradient(rgba(42, 14, 5, 0.2), rgba(42, 14, 5, 0.88)),
    url(/images/decorative/decor_4.jpg);
  background-size: cover;
  background-position: center;
}

.info-banner .info-banner-text {
  padding: 32px;
  max-width: 640px;
}

.info-chips {
  background-color: var(--surface);
}

.info-chips .chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.chip {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
}

.chip h3 {
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--accent);
}

.chip p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.info-split-right .info-row {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 40px;
  align-items: center;
}

.info-split-right .decor-wrap {
  order: 2;
  margin-left: auto;
}

.info-quote {
  background-color: var(--surface);
}

.info-quote .info-row {
  max-width: 860px;
  margin: 0 auto;
  border-left: 6px solid var(--secondary);
  padding-left: 30px;
}

.info-quote h2 {
  color: var(--secondary);
}

.info-quote p {
  font-size: 19px;
}

.info-strip .strip-inner {
  border-radius: 16px;
  padding: 64px 32px;
  text-align: center;
  background-image: linear-gradient(rgba(42, 14, 5, 0.74), rgba(42, 14, 5, 0.82)),
    url(/images/decorative/decor_6.jpg);
  background-size: cover;
  background-position: center;
}

.info-strip .strip-inner h2 {
  color: var(--accent);
}

.info-strip .strip-inner p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text);
}

.info-cols {
  background-color: var(--surface);
}

.info-cols .col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 24px;
}

.info-cols .col h3 {
  font-size: 18px;
  color: var(--primary);
  margin: 0 0 8px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 8px;
}

.info-cols .col p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

.info-stack .info-row {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.info-stack .decor-wrap {
  margin: 0 auto 24px;
}

.info-table {
  background-color: var(--surface);
}

.bet-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
  background-color: var(--bg);
  border-radius: 12px;
  overflow: hidden;
}

.bet-table th,
.bet-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.bet-table th {
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--accent);
  font-family: var(--serif);
}

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

.bet-table tr:last-child td {
  border-bottom: none;
}

.site-footer {
  background-color: var(--surface);
  border-top: 3px solid var(--accent);
  padding: 48px 0 28px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}

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

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  max-width: 340px;
  margin: 0;
}

.footer-links h4 {
  font-family: var(--serif);
  font-size: 16px;
  margin: 0 0 12px;
  color: var(--text);
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.footer-links a {
  color: var(--muted);
  font-size: 14px;
}

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-badges img {
  height: 34px;
  width: auto;
  opacity: 0.85;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.age-gate {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(20, 7, 2, 0.96);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.age-gate-box {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: 16px;
  max-width: 460px;
  width: 100%;
  padding: 36px 30px;
  text-align: center;
}

.age-gate-box img {
  height: 50px;
  margin: 0 auto 18px;
}

.age-gate-box h2 {
  font-size: 24px;
  margin: 0 0 12px;
}

.age-gate-box p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 24px;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 1180px;
  margin: 0 auto;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.cookie-banner.active {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  flex: 1 1 380px;
}

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

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

.cookie-actions .btn {
  padding: 10px 18px;
  font-size: 14px;
}

.page-hero {
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.page-hero h1 {
  font-size: 34px;
  margin: 0;
}

.legal {
  padding: 48px 0 64px;
}

.legal .legal-body {
  max-width: 860px;
  margin: 0 auto;
}

.legal h1 {
  font-size: 32px;
  margin: 0 0 18px;
}

.legal h2 {
  font-size: 22px;
  margin: 32px 0 12px;
  color: var(--accent);
}

.legal h3 {
  font-size: 18px;
  margin: 22px 0 10px;
}

.legal p,
.legal li {
  color: var(--muted);
  margin: 0 0 12px;
}

.legal ul {
  padding-left: 22px;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 980px;
  margin: 0 auto;
  align-items: start;
}

.contact-intro p {
  color: var(--muted);
}

.contact-form {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
}

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

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

.field-error {
  display: none;
  color: var(--secondary);
  font-size: 13px;
  margin-top: 6px;
}

.form-success {
  display: none;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 24px;
  color: var(--text);
}

.form-success h3 {
  margin: 0 0 8px;
  color: var(--accent);
}

.form-success p {
  margin: 0;
  color: var(--muted);
}

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

.redirect-box {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
}

.spinner {
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
  border: 5px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

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

.redirect-box h1 {
  font-size: 24px;
  margin: 0 0 12px;
}

.redirect-box p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 16px;
}

.redirect-meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

.ad-flag {
  display: inline-block;
  background-color: var(--accent);
  color: #2a0e05;
  font-weight: 700;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 5px;
  margin-bottom: 14px;
}

.notfound {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.notfound h1 {
  font-size: 88px;
  margin: 0;
  color: var(--accent);
}

.notfound p {
  color: var(--muted);
  font-size: 18px;
  margin: 8px 0 24px;
}

@media (max-width: 900px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .info-cols .col-grid,
  .info-chips .chip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 78%;
    max-width: 320px;
    background-color: var(--surface);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 20px 30px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.5);
  }

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

  .nav-links a {
    border-left: 3px solid var(--accent);
    border-radius: 0;
    margin-bottom: 8px;
    padding: 12px 14px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-cell {
    min-height: auto;
    padding: 28px;
  }

  .hero-headline h1 {
    font-size: 30px;
  }

  .hero-media-1,
  .hero-media-2 {
    min-height: 220px;
  }

  .info-split-left .info-row,
  .info-split-right .info-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .info-split-right .decor-wrap {
    order: 0;
    margin-left: 0;
  }

  .decor-wrap,
  .decor-img {
    max-width: 100%;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offer-card-media {
    width: 180px;
    height: 84px;
  }

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

  .info-cols .col-grid,
  .info-chips .chip-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 40px 0;
  }
}
