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

:root {
  --bg: #F4EBD9;
  --surface: #EFE1C5;
  --text: #2C241D;
  --muted: #6B5E4F;
  --primary: #8D5B3E;
  --secondary: #4A3728;
  --accent: #C0522B;
  --border: rgba(44,36,29,0.15);
  --glass: rgba(255, 255, 255, 0.38);
  --glass-border: rgba(255, 255, 255, 0.2);
  --blur: 40px;
  --max-w: 1100px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --style-glassmorphism: glassmorphism;
  --style-light: light;
  --style-airy: airy;
  --style-ios: ios-like;
  --style-clean: clean;
}

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

body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 55% at 8% -10%, rgba(192, 82, 43, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 95% 5%, rgba(141, 91, 62, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(74, 55, 40, 0.08) 0%, transparent 55%),
    linear-gradient(165deg, var(--bg) 0%, #f7f0e2 42%, #efe4cc 100%);
  min-height: 100vh;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: "glassmorphism light airy ios-like clean";
  position: fixed;
  inset: 0;
  font-size: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      125deg,
      transparent,
      transparent 44px,
      rgba(44, 36, 29, 0.02) 44px,
      rgba(44, 36, 29, 0.02) 45px
    );
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 22% 70%, rgba(255, 255, 255, 0.35) 0%, transparent 32%),
    radial-gradient(circle at 78% 40%, rgba(192, 82, 43, 0.1) 0%, transparent 38%);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--secondary);
  color: var(--bg);
  padding: 8px 16px;
  z-index: 10000;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.disclosure-banner {
  position: relative;
  z-index: 2;
  max-width: fit-content;
  margin: 6px auto;
  padding: 6px 20px;
  border: 1px solid var(--muted);
  border-radius: 4px;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
  color: var(--muted);
  background: transparent;
}

.site-header {
  position: relative;
  z-index: 2;
  height: 64px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

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

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-lockup img {
  width: 40px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.badge-18 img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

main {
  position: relative;
  z-index: 1;
  flex: 1;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  border-bottom: 1px solid var(--border);
}

.hero-left {
  background: var(--primary);
  color: #F4EBD9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  border-right: 2px solid var(--accent);
}

.hero-left h1 {
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.hero-right {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 36px 32px;
}

.hero-welcome {
  color: var(--text);
  font-size: 1rem;
  font-weight: 300;
  max-width: 38ch;
}

.hero-welcome p + p {
  margin-top: 8px;
}

.trust-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.trust-item {
  font-size: 0.92rem;
  color: var(--secondary);
  font-weight: 400;
}

.offers-section {
  position: relative;
  padding: 48px 20px 56px;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 8% 10% auto;
  height: 55%;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 40%, rgba(192, 82, 43, 0.16), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(141, 91, 62, 0.14), transparent 50%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

.offers-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}

.offers-section h2 {
  font-size: 1.55rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 8px;
  color: var(--secondary);
}

.offers-lead {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.offers-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offer-card {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 22px 18px 18px;
  box-shadow: 0 8px 32px rgba(44, 36, 29, 0.06);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.offer-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 40px rgba(44, 36, 29, 0.1);
}

.offer-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--secondary);
  color: var(--bg);
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-logo-wrap {
  width: 160px;
  height: 72px;
  margin: 8px auto 14px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

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

.offer-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  color: var(--secondary);
  margin-bottom: 8px;
}

.offer-rating {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 4px;
}

.offer-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.offer-desc {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.45;
}

.offer-bonus-group {
  text-align: center;
  margin-bottom: 10px;
}

.offer-bonus {
  display: block;
  font-size: clamp(0.82rem, 2.6vw, 1rem);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.35;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.offer-terms {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2px;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.offer-feature {
  text-align: center;
  font-size: 0.85rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.offer-rg {
  text-align: center;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.4;
}

.offer-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  background: var(--primary);
  color: #F4EBD9;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.offer-cta:hover {
  background: var(--accent);
  color: #F4EBD9;
  transform: scale(1.02);
}

.site-footer {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 40px 20px 28px;
  background: rgba(239, 225, 197, 0.55);
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
  border-top: 1px solid var(--glass-border);
}

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 400;
}

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

.footer-desc {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 42ch;
  margin: 0 auto 12px;
}

.footer-warn {
  font-size: 0.85rem;
  color: var(--secondary);
  margin-bottom: 14px;
}

.footer-help {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}

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

.footer-help img {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  list-style: none;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer-company {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.footer-updated {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.back-to-top {
  display: inline-block;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.footer-nz {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 560px;
  margin: 12px auto 0;
  text-align: center;
}

.footer-compliance {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 10px;
  line-height: 1.5;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(44, 36, 29, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate.hidden {
  display: none;
}

.age-gate-box {
  background: var(--glass);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 28px 24px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(44, 36, 29, 0.18);
}

.age-gate-box .age-gate-title {
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--secondary);
}

.age-gate-box p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.age-gate-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-primary,
.btn-secondary {
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 0.92rem;
  font-weight: 400;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

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

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border-color: var(--border);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: scale(1.03);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 9998;
  max-width: 520px;
  margin: 0 auto;
  background: var(--glass);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 40px rgba(44, 36, 29, 0.12);
}

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

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 12px;
}

.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.legal-page {
  padding: 36px 20px 56px;
}

.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--glass);
  backdrop-filter: blur(36px);
  -webkit-backdrop-filter: blur(36px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 32px 28px;
}

.legal-wrap h1 {
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--secondary);
}

.legal-wrap h2 {
  font-size: 1.15rem;
  font-weight: 400;
  margin: 22px 0 8px;
  color: var(--primary);
}

.legal-wrap p,
.legal-wrap li {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 10px;
}

.legal-wrap ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

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

.contact-form label {
  font-size: 0.88rem;
  color: var(--secondary);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.45);
  color: var(--text);
}

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

.form-error {
  font-size: 0.8rem;
  color: var(--accent);
  display: none;
}

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

.form-success {
  display: none;
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(141, 91, 62, 0.12);
  border: 1px solid var(--border);
  color: var(--secondary);
}

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

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

.redirect-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.redirect-ad {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.redirect-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 18px;
}

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

.redirect-page h1 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--secondary);
}

.redirect-page p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 36ch;
}

.redirect-notes {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--muted);
}

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

.error-page h1 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 10px;
  color: var(--secondary);
}

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

@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-left {
    border-right: none;
    border-bottom: 2px solid var(--accent);
    min-height: 180px;
    padding: 32px 22px;
  }

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

  .hero-welcome,
  .trust-row {
    display: block;
  }

  .offer-logo-wrap {
    width: 130px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

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

  .legal-wrap {
    padding: 24px 18px;
  }

  .footer-help img {
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .offers-section,
  .hero-split,
  .site-footer,
  .legal-page {
    overflow-x: hidden;
  }

  .offer-logo-wrap {
    width: 120px;
    height: 54px;
  }

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