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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #09090B;
  color: #FAFAFA;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

a {
  color: #4ADE80;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #22C55E;
  text-decoration: underline;
}

.disclosure-bar {
  background: linear-gradient(135deg, #18181B 0%, #27272A 100%);
  color: #FAFAFA;
  font-size: 11px;
  text-align: center;
  padding: 10px 16px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  line-height: 1.5;
  border-bottom: 1px solid rgba(34, 197, 94, 0.3);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #18181B;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  height: 68px;
  border-bottom: 1px solid rgba(34, 197, 94, 0.2);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

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

.logo-link:hover {
  text-decoration: none;
}

.nav-desktop {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-desktop a {
  color: #FAFAFA;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav-desktop a:hover {
  color: #4ADE80;
  border-bottom-color: #22C55E;
  text-decoration: none;
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #FAFAFA;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FAFAFA;
  margin: 5px 0;
  transition: 0.3s;
}

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

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

.nav-mobile a {
  color: #FAFAFA;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

.nav-mobile a:hover {
  color: #4ADE80;
}

.nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #FAFAFA;
  font-size: 32px;
  cursor: pointer;
}

.hero {
  position: relative;
  display: flex;
  min-height: 420px;
  background: #09090B;
  overflow: hidden;
}

.hero-stripe {
  width: 80px;
  flex-shrink: 0;
  background: linear-gradient(180deg, #22C55E 0%, #4ADE80 100%);
}

.hero-content {
  flex: 1;
  padding: 60px 48px 60px 40px;
  position: relative;
  z-index: 2;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  pointer-events: none;
}

.hero-blob-1 {
  width: 300px;
  height: 300px;
  background: #22C55E;
  top: -80px;
  right: 10%;
}

.hero-blob-2 {
  width: 200px;
  height: 200px;
  background: #4ADE80;
  bottom: 20px;
  right: 30%;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #71717A;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 420px;
  max-height: 280px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-primary {
  display: inline-block;
  background: #22C55E;
  color: #09090B;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #4ADE80;
  color: #09090B;
  text-decoration: none;
  transform: translateY(-1px);
}

.wave-divider {
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60' preserveAspectRatio='none'%3E%3Cpath d='M0,30 Q300,60 600,30 T1200,30 L1200,60 L0,60 Z' fill='%2318181B'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100% 100%;
}

.offers-section {
  position: relative;
  padding: 80px 24px;
  background: #18181B;
  overflow: hidden;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(74, 222, 128, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

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

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: #71717A;
  margin-bottom: 40px;
  max-width: 600px;
}

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

.offer-card {
  background: #27272A;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.12);
}

.offer-logo-wrap {
  background: #FAFAFA;
  border-radius: 12px;
  width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

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

.offer-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FAFAFA;
}

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

.offer-bonus {
  font-size: 1rem;
  color: #4ADE80;
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.offer-terms-note {
  font-size: 11px;
  color: #71717A;
}

.offer-desc {
  font-size: 13px;
  color: #71717A;
  line-height: 1.5;
}

.offer-cta {
  margin-top: auto;
}

.info-section {
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.info-section:nth-child(odd) {
  background: #09090B;
}

.info-section:nth-child(even) {
  background: #18181B;
}

.info-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.info-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.info-section p {
  color: #71717A;
  margin-bottom: 16px;
}

.info-section p:last-child {
  margin-bottom: 0;
}

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

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

.decor-img-wrap {
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border-radius: 20px;
}

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

.layout-card {
  background: #27272A;
  border-radius: 20px;
  padding: 40px;
  border-top: 4px solid #22C55E;
  position: relative;
}

.layout-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: #22C55E;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  top: -40px;
  right: -20px;
}

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

.layout-grid-list ul {
  list-style: none;
}

.layout-grid-list li {
  padding: 12px 0 12px 28px;
  position: relative;
  color: #71717A;
  border-bottom: 1px solid rgba(34, 197, 94, 0.15);
}

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

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

.layout-highlight {
  border-left: 4px solid #22C55E;
  padding-left: 32px;
  max-width: 800px;
}

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

.layout-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #22C55E, #4ADE80);
}

.layout-timeline p {
  position: relative;
  padding-bottom: 20px;
}

.layout-timeline p::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 8px;
  width: 12px;
  height: 12px;
  background: #22C55E;
  border-radius: 50%;
  border: 2px solid #09090B;
}

.layout-bento {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-main {
  grid-row: span 2;
  background: #27272A;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.bento-side {
  background: rgba(34, 197, 94, 0.08);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.layout-overlap {
  position: relative;
}

.overlap-bg {
  position: absolute;
  inset: 20px;
  background: radial-gradient(circle at 70% 30%, rgba(74, 222, 128, 0.12) 0%, transparent 70%);
  border-radius: 24px;
  pointer-events: none;
}

.overlap-content {
  position: relative;
  background: #27272A;
  border-radius: 20px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.layout-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 24px;
  background: #27272A;
  border-radius: 16px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: #4ADE80;
  display: block;
}

.stat-label {
  font-size: 13px;
  color: #71717A;
  margin-top: 4px;
}

.site-footer {
  background: #18181B;
  padding: 60px 24px 32px;
  border-top: 1px solid rgba(34, 197, 94, 0.2);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #71717A;
  font-size: 14px;
  max-width: 280px;
}

.footer-links h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #FAFAFA;
}

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

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

.footer-links a {
  color: #71717A;
  font-size: 14px;
}

.footer-links a:hover {
  color: #4ADE80;
}

.footer-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(34, 197, 94, 0.15);
}

.footer-badge {
  display: block;
}

.footer-badge img {
  height: 40px;
  width: auto;
}

.footer-nz-disclosure {
  font-size: 11px;
  color: #71717A;
  line-height: 1.7;
  max-width: 800px;
}

.footer-nz-disclosure p {
  margin-bottom: 8px;
}

.footer-copy {
  margin-top: 24px;
  font-size: 12px;
  color: #71717A;
}

.page-hero {
  padding: 60px 24px 40px;
  background: #18181B;
  position: relative;
  overflow: hidden;
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.page-content h2 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 32px 0 12px;
  color: #FAFAFA;
}

.page-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 24px 0 10px;
}

.page-content p {
  color: #71717A;
  margin-bottom: 16px;
}

.page-content ul {
  margin: 0 0 16px 24px;
  color: #71717A;
}

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

.contact-form {
  margin-top: 32px;
  background: #27272A;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #FAFAFA;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #18181B;
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  color: #FAFAFA;
  font-size: 15px;
  font-family: inherit;
}

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

.form-error {
  color: #ef4444;
  font-size: 13px;
  margin-top: 6px;
  display: none;
}

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

.form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  display: none;
}

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

.form-success h3 {
  color: #4ADE80;
  margin-bottom: 12px;
}

.age-overlay,
.cookie-banner {
  position: fixed;
  z-index: 1000;
}

.age-overlay {
  inset: 0;
  background: rgba(9, 9, 11, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.age-modal {
  background: #18181B;
  border-radius: 20px;
  padding: 40px;
  max-width: 440px;
  text-align: center;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

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

.age-modal p {
  color: #71717A;
  margin-bottom: 24px;
  font-size: 14px;
}

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

.btn-secondary {
  display: inline-block;
  background: #27272A;
  color: #FAFAFA;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: #3f3f46;
}

.cookie-banner {
  bottom: 0;
  left: 0;
  right: 0;
  background: #18181B;
  border-top: 1px solid rgba(34, 197, 94, 0.3);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

.cookie-banner p {
  font-size: 13px;
  color: #71717A;
  max-width: 600px;
}

.cookie-banner button {
  flex-shrink: 0;
}

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

.page-404 h1 {
  font-size: 5rem;
  color: #22C55E;
  margin-bottom: 16px;
}

.page-404 p {
  color: #71717A;
  margin-bottom: 32px;
}

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

.redirect-box {
  text-align: center;
  max-width: 440px;
}

.redirect-box h1 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.redirect-box p {
  color: #71717A;
  font-size: 14px;
  margin-bottom: 12px;
}

.redirect-ad {
  display: inline-block;
  background: #27272A;
  color: #71717A;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(34, 197, 94, 0.2);
  border-top-color: #22C55E;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 24px;
}

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

@media (max-width: 768px) {
  .site-header {
    clip-path: none;
    height: auto;
    min-height: 60px;
  }

  .nav-desktop {
    display: none;
  }

  .burger-btn {
    display: block;
  }

  .hero {
    flex-direction: column;
  }

  .hero-stripe {
    width: 100%;
    height: 6px;
  }

  .hero-content {
    padding: 40px 24px;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 0 auto 24px;
    max-width: 100%;
  }

  .layout-split,
  .layout-split-reverse,
  .layout-grid-list,
  .layout-bento {
    grid-template-columns: 1fr;
  }

  .bento-main {
    grid-row: auto;
  }

  .layout-stats {
    flex-direction: column;
  }

  .decor-img-wrap {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }

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

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

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

  .hero-visual img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

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

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

  .info-section {
    overflow: hidden;
  }
}
