:root {
  --bg: #0F0F0F;
  --surface: #1A1A1A;
  --text: #FFFFFF;
  --muted: #9CA3AF;
  --primary: #E5E7EB;
  --secondary: #6B7280;
  --accent: #EF4444;
  --border: rgba(255, 255, 255, 0.16);
  --gold: #C9A227;
  --gold-soft: rgba(201, 162, 39, 0.35);
  --max-w: 1200px;
  --font-serif: Georgia, "Palatino Linotype", Palatino, "Times New Roman", serif;
  --font-sans: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --luxury: "luxury";
  --casino: "casino";
  --premium: "premium";
  --gold-accents: "gold accents";
  --dark-elegance: "dark elegance";
  --high-stakes: "high stakes";
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  background-image:
    linear-gradient(165deg, var(--bg) 0%, #141414 40%, var(--surface) 70%, var(--bg) 100%),
    radial-gradient(ellipse 70% 45% at 15% 10%, rgba(201, 162, 39, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 85% 70%, rgba(239, 68, 68, 0.06) 0%, transparent 50%);
  color: var(--text);
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: var(--luxury) " " var(--casino) " " var(--premium) " " var(--gold-accents) " " var(--dark-elegance) " " var(--high-stakes);
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      125deg,
      transparent,
      transparent 80px,
      rgba(255, 255, 255, 0.012) 80px,
      rgba(255, 255, 255, 0.012) 81px
    );
  opacity: 0.7;
}

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

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

#offers .offer-logo {
  max-width: none;
  height: 100%;
}

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

a:hover {
  opacity: 0.7;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.disclosure-banner {
  background: var(--primary);
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  padding: 6px 16px;
  width: 100%;
  line-height: 1.45;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 100;
  margin: 0 16px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 32px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  padding: 16px 24px;
  min-height: 56px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.brand-lockup img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px 18px;
}

.nav-links a {
  color: var(--text);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0.7;
  text-transform: uppercase;
}

.nav-links a:hover {
  opacity: 1;
}

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

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 1px;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 15, 15, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 48px 24px;
}

.nav-overlay.is-open {
  display: flex;
}

.nav-overlay a {
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  opacity: 0.85;
}

.nav-overlay a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
}

main {
  flex: 1;
}

.section-glow {
  position: relative;
}

.section-glow::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-soft),
    rgba(239, 68, 68, 0.35),
    var(--gold-soft),
    transparent
  );
  box-shadow: 0 0 12px var(--gold-soft);
}

.page-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.page-hero {
  padding: 56px 24px 40px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.9) 0%, var(--bg) 100%),
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(201, 162, 39, 0.12), transparent 70%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 12px;
  color: var(--text);
}

.page-hero p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1rem;
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
}

.prose h2 {
  color: var(--text);
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
}

.prose h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}

.prose p {
  margin-bottom: 1rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1.25rem 1.25rem;
}

.prose li {
  margin-bottom: 0.4rem;
}

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

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text);
}

.footer-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

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

.footer-links a:hover {
  color: var(--gold);
  opacity: 1;
}

.footer-compliance {
  color: var(--muted);
  font-size: 0.8125rem;
  line-height: 1.65;
  max-width: 880px;
}

.footer-compliance p {
  margin-bottom: 0.65rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
  align-items: center;
}

.footer-badges img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.85;
}

.footer-meta {
  color: var(--secondary);
  font-size: 0.75rem;
}

.footer-company {
  color: var(--secondary);
  font-size: 0.75rem;
}

.updated-date {
  color: var(--muted);
  font-size: 0.8125rem;
}

#age-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#age-overlay.active {
  display: flex;
}

.age-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.age-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.age-modal p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 24px;
}

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

.age-actions button {
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-sans);
}

.age-confirm {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}

.age-decline {
  background: transparent;
  color: var(--muted);
}

#age-blocked {
  display: none;
  color: var(--muted);
  margin-top: 16px;
}

#age-blocked.visible {
  display: block;
}

#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

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

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

.cookie-inner p {
  color: var(--muted);
  font-size: 0.875rem;
  flex: 1;
  min-width: 220px;
}

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

.cookie-actions button {
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--font-sans);
}

#cookie-accept {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}

#cookie-reject {
  background: transparent;
  color: var(--muted);
}

.contact-form {
  max-width: 520px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
}

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

.contact-form button {
  align-self: flex-start;
  padding: 12px 28px;
  background: var(--accent);
  color: var(--text);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
}

.form-error {
  display: none;
  color: var(--accent);
  font-size: 0.8125rem;
  margin-top: 4px;
}

.form-error.visible {
  display: block;
}

#contact-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 520px;
  margin: 32px auto 0;
}

#contact-success.visible {
  display: block;
}

#contact-success h2 {
  margin-bottom: 10px;
  color: var(--gold);
}

.go-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

.go-ad {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}

.go-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1.1s linear infinite;
  margin: 12px auto;
}

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

.go-compliance {
  color: var(--muted);
  font-size: 0.8125rem;
  max-width: 420px;
}

.go-compliance a {
  color: var(--gold);
}

.error-page {
  text-align: center;
  padding: 80px 24px;
}

.error-page h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

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

.error-page a {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: var(--text);
  border-radius: 8px;
  font-weight: 600;
}

.decor-img {
  max-width: min(500px, 100%);
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.decor-wrap {
  overflow: hidden;
  max-width: 100%;
}

@media (max-width: 375px) {
  .decor-img {
    max-width: 100%;
    max-height: 220px;
  }

  .decor-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
}

@media (max-width: 900px) {
  .site-header {
    margin: 0;
    width: 100%;
    top: 0;
    border-radius: 0;
  }

  .nav-shell {
    border-radius: 0;
    width: 100%;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}
