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

:root {
  --bg: #120d02;
  --surface: #1f1704;
  --text: #fffaf0;
  --muted: #d4a373;
  --primary: #ff9f1c;
  --secondary: #ffbf69;
  --accent: #2ec4b6;
  --border: rgba(255, 159, 28, 0.2);
  --disclosure-bg: #fff8e7;
  --disclosure-text: #1a1208;
  --disclosure-border: #f59e0b;
  --font-serif: Georgia, 'Times New Roman', Times, serif;
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --max-w: 1200px;
  --nav-h: 60px;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(46, 196, 182, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(255, 159, 28, 0.05) 0%, transparent 50%);
}

main {
  flex: 1;
}

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

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 36px;
  width: auto;
}

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

.nav-desktop a {
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: capitalize;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.nav-desktop a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

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

.burger-btn span {
  display: block;
  width: 24px;
  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);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(18, 13, 2, 0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: var(--text);
  font-size: 20px;
  font-family: var(--font-serif);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.nav-mobile a:hover {
  border-bottom-color: var(--primary);
  color: var(--primary);
}

.hero {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 420px;
  border-bottom: 1px solid var(--border);
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--bg) 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  padding: 48px 40px;
  background: var(--surface);
  border-left: 3px solid var(--primary);
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
}

.offers-section {
  padding: 64px 24px;
  position: relative;
  background-color: var(--bg);
  background-image:
    linear-gradient(135deg, rgba(31, 23, 4, 0.95) 0%, rgba(18, 13, 2, 0.98) 100%);
}

.offers-section h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary);
}

.offers-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.offer-card {
  background: linear-gradient(145deg, #2a1f08 0%, #1a1406 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.offer-card-header {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.25);
}

.offer-logo {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  padding: 6px;
}

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

.offer-card-header h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text);
}

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

.offer-bonus {
  font-size: 0.95rem;
  color: var(--secondary);
  margin-bottom: 8px;
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.offer-terms {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 4px;
}

.offer-desc {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 16px;
  flex: 1;
}

.offer-cta {
  display: inline-block;
  background: var(--primary);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  width: 100%;
}

.offer-cta:hover {
  background: var(--secondary);
  color: var(--bg);
}

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

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

.info-section h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.info-section p {
  color: var(--muted);
  margin-bottom: 12px;
}

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

.layout-split-reverse {
  direction: rtl;
}

.layout-split-reverse > * {
  direction: ltr;
}

.decor-img-wrap {
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border: 2px solid var(--border);
  border-radius: 4px;
  box-shadow: 4px 4px 0 var(--primary);
}

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

.layout-callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 32px;
  position: relative;
}

.layout-callout::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(255, 159, 28, 0.15);
  pointer-events: none;
}

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

.stat-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 1.5rem;
  color: var(--accent);
  font-family: var(--font-serif);
}

.stat-box span {
  font-size: 0.85rem;
  color: var(--muted);
}

.layout-timeline {
  position: relative;
  padding-left: 32px;
}

.layout-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
  padding-left: 16px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--bg);
}

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

.info-mini-card {
  background: var(--surface);
  padding: 24px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
}

.info-mini-card h3 {
  font-family: var(--font-serif);
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.layout-quote {
  text-align: center;
  padding: 48px 32px;
  background: var(--surface);
  border: double 4px var(--border);
}

.layout-quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 16px;
}

.layout-steps {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.step-item {
  flex: 1;
  min-width: 140px;
  background: var(--surface);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--border);
}

.step-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.layout-tabs-visual {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  overflow: hidden;
}

.tab-labels {
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.tab-label {
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  border-left: 3px solid transparent;
}

.tab-label.active {
  color: var(--primary);
  border-left-color: var(--primary);
  background: rgba(255, 159, 28, 0.08);
}

.tab-content-area {
  padding: 28px;
  background: rgba(31, 23, 4, 0.6);
}

.layout-ornate {
  text-align: center;
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
}

.layout-ornate::before,
.layout-ornate::after {
  content: '◆';
  position: absolute;
  color: var(--primary);
  font-size: 0.8rem;
}

.layout-ornate::before {
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.layout-ornate::after {
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.help-links a {
  background: var(--accent);
  color: var(--bg);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

.help-links a:hover {
  background: var(--primary);
  color: var(--bg);
}

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

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

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

.footer-logo img {
  height: 40px;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

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

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

.footer-badges a {
  display: block;
}

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

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

.footer-au-disclosure {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 20px;
  opacity: 0.8;
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 16px;
}

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

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

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  padding: 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.modal-box h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--primary);
}

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

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

.btn-primary {
  background: var(--primary);
  color: var(--bg);
  border: none;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--secondary);
}

.btn-secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 12px 28px;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 4px;
  transition: border-color 0.2s;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 999;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

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

.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 {
  font-size: 0.85rem;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
}

.cookie-inner a {
  color: var(--accent);
  text-decoration: underline;
}

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

.page-content h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.page-content h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--secondary);
  margin: 28px 0 12px;
}

.page-content h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin: 20px 0 8px;
}

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

.page-content ul {
  color: var(--muted);
  margin: 0 0 16px 24px;
}

.page-content li {
  margin-bottom: 6px;
}

.page-content code {
  background: rgba(255, 159, 28, 0.1);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
}

.contact-form {
  margin-top: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  max-width: 560px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 6px;
}

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

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

.form-error {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

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

.form-success {
  background: rgba(46, 196, 182, 0.15);
  border: 1px solid var(--accent);
  padding: 24px;
  text-align: center;
  color: var(--accent);
  font-size: 1rem;
  border-radius: 4px;
}

.form-success.hidden {
  display: none;
}

.redirect-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.redirect-box {
  text-align: center;
  max-width: 480px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px 32px;
}

.redirect-box h1 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.redirect-box p {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.redirect-ad {
  display: inline-block;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 10px;
  margin-bottom: 16px;
}

.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: 24px auto;
}

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

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.error-page h1 {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 16px;
}

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

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

  .burger-btn {
    display: flex;
  }

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

  .hero-image img {
    max-height: 180px;
    min-height: auto;
  }

  .hero-image::after {
    background: linear-gradient(180deg, transparent 50%, var(--bg) 100%);
  }

  .hero-content {
    text-align: left;
    align-items: flex-start;
    padding: 32px 24px;
    border-left: none;
    border-top: 3px solid var(--primary);
  }

  .layout-split,
  .layout-split-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .layout-stats {
    grid-template-columns: 1fr;
  }

  .layout-cards {
    grid-template-columns: 1fr;
  }

  .layout-tabs-visual {
    grid-template-columns: 1fr;
  }

  .tab-labels {
    flex-direction: row;
    overflow-x: auto;
  }

  .tab-label {
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .tab-label.active {
    border-left: none;
    border-bottom-color: var(--primary);
  }

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

@media (max-width: 375px) {
  .hero-image {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-image img {
    max-width: 100%;
  }

  .decor-img-wrap {
    max-width: 100%;
    max-height: 200px;
    width: 100%;
  }

  .decor-img-wrap img {
    max-width: 100%;
    max-height: 200px;
    object-fit: cover;
  }

  .offer-logo {
    width: 64px;
    height: 64px;
  }

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