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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0d1b12;
  color: #ecfdf5;
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: #22c55e;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: #84cc16;
}

.disclosure-banner {
  width: 100%;
  background: #14261a;
  color: #a7f3d0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 16px;
  line-height: 1.5;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0d1b12;
  border-bottom: 1px solid rgba(236, 253, 245, 0.12);
  height: 52px;
}

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

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

.navbar-cta {
  display: none;
  background: linear-gradient(135deg, #22c55e, #84cc16);
  color: #0d1b12;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar-cta:hover {
  color: #0d1b12;
  transform: scale(1.05);
}

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

.burger-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background: #ecfdf5;
  border-radius: 3px;
  transition: transform 0.3s ease;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 18, 0.7);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: #14261a;
  z-index: 210;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 24px;
  overflow-y: auto;
  border-left: 1px solid rgba(236, 253, 245, 0.12);
}

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

.drawer-close {
  background: none;
  border: none;
  color: #ecfdf5;
  font-size: 28px;
  cursor: pointer;
  margin-bottom: 24px;
  line-height: 1;
}

.drawer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-nav a {
  display: block;
  padding: 14px 16px;
  color: #ecfdf5;
  font-weight: 600;
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.drawer-nav a:hover {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  transform: translateX(4px);
}

.hero {
  position: relative;
  background: linear-gradient(135deg, #22c55e 0%, #84cc16 100%);
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

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

.hero-blob-1 {
  width: 280px;
  height: 280px;
  background: #f59e0b;
  top: -60px;
  left: -40px;
}

.hero-blob-2 {
  width: 200px;
  height: 200px;
  background: #0d1b12;
  bottom: -40px;
  right: 10%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #0d1b12;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #14261a;
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-deco {
  max-width: 500px;
  max-height: 320px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(13, 27, 18, 0.25);
  animation: bounce-in 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

@keyframes bounce-in {
  0% {
    transform: scale(0.85) translateY(20px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.offers-section {
  position: relative;
  padding: 64px 20px;
  background-image: url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  background-color: #14261a;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 18, 0.88);
}

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

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: #ecfdf5;
}

.section-subtitle {
  text-align: center;
  color: #a7f3d0;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.offer-card {
  background: linear-gradient(160deg, #1a3324 0%, #0f1f15 100%);
  border: 1px solid rgba(236, 253, 245, 0.12);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.2);
}

.offer-logo-wrap {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
  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.3rem;
  font-weight: 700;
  color: #ecfdf5;
  margin-bottom: 8px;
}

.offer-bonus-wrap {
  margin-bottom: 12px;
}

.offer-bonus {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f59e0b;
  display: block;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.35;
}

.offer-terms {
  font-size: 0.7rem;
  color: #a7f3d0;
  opacity: 0.75;
  display: block;
  margin-top: 4px;
}

.offer-desc {
  font-size: 0.82rem;
  color: #a7f3d0;
  opacity: 0.85;
  margin-bottom: 16px;
  line-height: 1.5;
}

.offer-cta {
  display: inline-block;
  background: linear-gradient(135deg, #22c55e, #84cc16);
  color: #0d1b12;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: auto;
}

.offer-cta:hover {
  color: #0d1b12;
  transform: scale(1.06);
}

.info-section {
  padding: 64px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-section:nth-child(even) {
  background: #14261a;
  max-width: none;
}

.info-section:nth-child(even) .info-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.info-inner {
  width: 100%;
}

.info-heading {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: #ecfdf5;
}

.info-text {
  color: #a7f3d0;
  font-size: 1rem;
  line-height: 1.7;
}

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

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

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

.deco-img {
  max-width: 500px;
  max-height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.layout-card {
  background: #14261a;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(236, 253, 245, 0.12);
  position: relative;
  overflow: hidden;
}

.layout-card .deco-float {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  opacity: 0.9;
  border-radius: 16px;
  overflow: hidden;
}

.layout-zigzag {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  align-items: center;
}

.layout-banner {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(132, 204, 22, 0.15));
  border-radius: 24px;
  padding: 48px 40px;
  border-left: 5px solid #22c55e;
}

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

.icon-item {
  background: rgba(34, 197, 94, 0.1);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(236, 253, 245, 0.08);
}

.icon-item span {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
}

.icon-item p {
  font-size: 0.85rem;
  color: #a7f3d0;
}

.layout-highlight-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.highlight-box {
  background: #0d1b12;
  border-radius: 20px;
  padding: 32px;
  border: 2px dashed rgba(245, 158, 11, 0.4);
}

.layout-live {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}

.live-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.live-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  background: linear-gradient(transparent, rgba(13, 27, 18, 0.95));
  width: 100%;
}

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

.step-item {
  flex: 1;
  min-width: 140px;
  background: #14261a;
  border-radius: 16px;
  padding: 20px;
  border-top: 4px solid #84cc16;
  position: relative;
}

.step-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #22c55e;
  opacity: 0.5;
}

.layout-quote {
  text-align: center;
  padding: 48px 32px;
}

.quote-block {
  font-size: 1.15rem;
  font-style: italic;
  color: #ecfdf5;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

.quote-accent {
  width: 60px;
  height: 4px;
  background: #f59e0b;
  margin: 0 auto 24px;
  border-radius: 2px;
}

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

.mosaic-card {
  background: #14261a;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(236, 253, 245, 0.1);
  transition: transform 0.25s ease;
}

.mosaic-card:hover {
  transform: rotate(-1deg) scale(1.02);
}

.mosaic-card h3 {
  font-size: 1rem;
  color: #22c55e;
  margin-bottom: 8px;
}

.mosaic-card p {
  font-size: 0.88rem;
  color: #a7f3d0;
}

.footer {
  background: #0d1b12;
  border-top: 1px solid rgba(236, 253, 245, 0.12);
  padding: 48px 20px 32px;
}

.footer-inner {
  max-width: 1200px;
  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-logo p {
  font-size: 0.85rem;
  color: #a7f3d0;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 0.9rem;
  color: #ecfdf5;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-links a {
  color: #a7f3d0;
  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 rgba(236, 253, 245, 0.08);
  border-bottom: 1px solid rgba(236, 253, 245, 0.08);
  margin-bottom: 24px;
}

.footer-badge img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-badge img:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #a7f3d0;
  opacity: 0.7;
}

.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 18, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.age-modal {
  background: #14261a;
  border-radius: 24px;
  padding: 40px 32px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  border: 1px solid rgba(236, 253, 245, 0.12);
  animation: bounce-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.age-modal p {
  color: #a7f3d0;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

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

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #84cc16);
  color: #0d1b12;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary:hover {
  transform: scale(1.06);
}

.btn-secondary {
  background: transparent;
  color: #a7f3d0;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(236, 253, 245, 0.2);
  cursor: pointer;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #14261a;
  border-top: 1px solid rgba(236, 253, 245, 0.12);
  padding: 16px 20px;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.85rem;
  color: #a7f3d0;
  max-width: 600px;
}

.page-hero {
  background: linear-gradient(135deg, #22c55e 0%, #84cc16 100%);
  padding: 48px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #0d1b12;
}

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

.page-content h2 {
  font-size: 1.3rem;
  color: #ecfdf5;
  margin: 32px 0 12px;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  color: #a7f3d0;
  margin-bottom: 16px;
  line-height: 1.7;
}

.page-content ul {
  color: #a7f3d0;
  margin: 0 0 16px 20px;
  line-height: 1.7;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: #ecfdf5;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(236, 253, 245, 0.15);
  background: #14261a;
  color: #ecfdf5;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #22c55e;
}

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

.form-error {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-top: 6px;
  display: none;
}

.contact-success {
  display: none;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-top: 32px;
}

.contact-success h3 {
  color: #22c55e;
  margin-bottom: 8px;
}

.contact-success p {
  color: #a7f3d0;
}

.contact-email-link {
  color: #22c55e;
  font-weight: 600;
}

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

.not-found h1 {
  font-size: 5rem;
  font-weight: 800;
  color: #22c55e;
  line-height: 1;
  margin-bottom: 16px;
}

.not-found p {
  color: #a7f3d0;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.redirect-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 20px;
  background: #0d1b12;
}

.redirect-page .ad-label {
  font-size: 0.75rem;
  color: #a7f3d0;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.redirect-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(236, 253, 245, 0.15);
  border-top-color: #22c55e;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 24px;
}

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

.redirect-msg {
  font-size: 1.1rem;
  color: #ecfdf5;
  margin-bottom: 16px;
  max-width: 400px;
}

.redirect-compliance {
  font-size: 0.8rem;
  color: #a7f3d0;
  max-width: 420px;
  line-height: 1.6;
}

.redirect-compliance a {
  color: #22c55e;
}

@media (min-width: 768px) {
  .navbar-cta {
    display: inline-block;
  }

  .burger-btn {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 40px 16px;
  }

  .layout-split,
  .layout-highlight-box,
  .zigzag-row {
    grid-template-columns: 1fr;
  }

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

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

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

  .deco-img {
    max-width: 100%;
  }

  .layout-card .deco-float {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-deco {
    max-width: 100%;
    max-height: 200px;
  }

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

  .deco-img {
    max-width: 100%;
    max-height: 220px;
  }

  .deco-img img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .layout-card {
    overflow: hidden;
  }

  .layout-live {
    max-width: 100%;
    overflow: hidden;
  }

  .info-section {
    overflow-x: hidden;
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .offer-logo-wrap img {
    object-fit: contain;
  }

  .offer-bonus {
    font-size: 0.95rem;
  }
}
