:root {
  --bg: #052E16;
  --surface: #064E3B;
  --text: #F0FDF4;
  --muted: #4ADE80;
  --primary: #22C55E;
  --secondary: #14532D;
  --accent: #86EFAC;
  --border: rgba(255,255,255,0.1);
  --max-w: 1200px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --skeuomorphism: skeuomorphism;
  --realistic: realistic;
  --tactile: tactile;
  --depth: depth;
  --material-feel: material-feel;
}

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

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

body {
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(34, 197, 94, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(134, 239, 172, 0.1) 0%, transparent 50%),
    linear-gradient(165deg, var(--bg) 0%, var(--secondary) 45%, var(--bg) 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 18% 35%, rgba(134, 239, 172, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 82% 70%, rgba(34, 197, 94, 0.06) 0%, transparent 38%);
  opacity: 0.95;
}

body.skeuomorphism.realistic.tactile.depth.material-feel {
  position: relative;
}

body.nav-open {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease, transform 0.15s ease;
}

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

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

.disclosure-banner {
  position: relative;
  z-index: 100;
  width: 100%;
  background: linear-gradient(180deg, var(--secondary) 0%, #0a3d28 100%);
  color: var(--text);
  font-size: 11.5px;
  line-height: 1.5;
  text-align: center;
  padding: 10px 16px 18px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.35);
}

.disclosure-banner p {
  max-width: 960px;
  margin: 0 auto 8px;
}

.disclosure-banner p:last-child {
  margin-bottom: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #0a0a0a;
  height: 58px;
  border-bottom: 1px solid var(--primary);
  box-shadow: 0 1px 6px var(--primary);
}

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

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

.brand-lockup img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

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

.nav-links a {
  color: rgba(240, 253, 244, 0.85);
  font-size: 0.8125rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
}

.burger-btn {
  display: none;
  width: 40px;
  height: 40px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.4);
}

.burger-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.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-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 46, 22, 0.72);
  z-index: 95;
}

.nav-overlay.open {
  display: block;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 96;
  background: #0a0a0a;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 48px 24px;
}

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

.mobile-nav a {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 600;
}

.mobile-nav a:hover {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
}

.mobile-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

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

  .burger-btn {
    display: flex;
  }
}

.hero {
  position: relative;
  display: flex;
  min-height: 420px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 55%, var(--secondary) 100%);
  overflow: hidden;
  box-shadow:
    inset 0 -1px 0 var(--border),
    0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-stripe {
  width: 80px;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 50%, var(--muted) 100%);
  box-shadow:
    inset -2px 0 6px rgba(0, 0, 0, 0.25),
    inset 2px 0 4px rgba(255, 255, 255, 0.35);
}

.hero-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px 56px 48px;
  position: relative;
  z-index: 1;
}

.hero-body::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(134, 239, 172, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: material-pulse 6s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  margin-bottom: 14px;
  max-width: 640px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(240, 253, 244, 0.88);
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bg);
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 55%, #16a34a 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2),
    0 4px 14px rgba(34, 197, 94, 0.35);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.hero-cta:hover {
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 6px 18px rgba(34, 197, 94, 0.45);
}

.hero-cta:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.35),
    0 1px 4px rgba(34, 197, 94, 0.25);
}

@keyframes material-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes tactile-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes depth-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(34, 197, 94, 0); }
  50% { box-shadow: 0 0 24px rgba(34, 197, 94, 0.25); }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: auto;
  }

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

  .hero-body {
    padding: 36px 20px 44px;
    text-align: center;
    align-items: center;
  }

  .hero-cta {
    align-self: center;
  }
}

.offers-section {
  position: relative;
  padding: 64px 20px;
  background-image:
    linear-gradient(180deg, rgba(5, 46, 22, 0.88) 0%, rgba(6, 78, 59, 0.82) 100%),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.offers-inner {
  max-width: 720px;
  margin: 0 auto;
}

.offers-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.offers-intro {
  text-align: center;
  color: rgba(240, 253, 244, 0.85);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.site-footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #041f10 0%, #0a0a0a 100%);
  border-top: 1px solid var(--border);
  padding: 40px 20px 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

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

.footer-brand img {
  width: 28px;
  height: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 22px;
}

.footer-links a {
  color: rgba(240, 253, 244, 0.75);
  font-size: 0.8125rem;
}

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-badges img {
  height: 42px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.footer-rg {
  font-size: 0.8125rem;
  color: rgba(240, 253, 244, 0.8);
  margin-bottom: 12px;
  max-width: 820px;
}

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

.footer-requisites {
  font-size: 0.75rem;
  color: rgba(240, 253, 244, 0.55);
  margin-bottom: 16px;
}

.ca-disclosure {
  font-size: 11.5px;
  color: rgba(240, 253, 244, 0.55);
  line-height: 1.55;
  max-width: 900px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.age-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 46, 22, 0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.age-dialog {
  background: linear-gradient(180deg, var(--surface) 0%, var(--secondary) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 40px rgba(0, 0, 0, 0.5);
  animation: tactile-rise 0.35s ease;
}

.age-dialog h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.age-dialog p {
  margin-bottom: 20px;
  color: rgba(240, 253, 244, 0.85);
  font-size: 0.95rem;
}

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

.btn-confirm,
.btn-decline,
.cookie-actions button,
.pressable {
  font-family: var(--font);
  font-weight: 700;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 18px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn-confirm {
  color: var(--bg);
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 60%, #16a34a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 12px rgba(34, 197, 94, 0.35);
}

.btn-confirm:active,
.btn-decline:active,
.cookie-actions button:active,
.pressable:active {
  transform: translateY(2px);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.35);
}

.btn-decline {
  color: var(--text);
  background: linear-gradient(180deg, #1a3a28 0%, #0f2418 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.age-blocked {
  display: none;
  color: var(--accent);
  font-weight: 600;
}

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

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 180;
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--surface) 0%, var(--secondary) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 32px rgba(0, 0, 0, 0.45);
}

.cookie-banner.active {
  display: block;
  animation: tactile-rise 0.3s ease;
}

.cookie-banner p {
  font-size: 0.875rem;
  margin-bottom: 14px;
  color: rgba(240, 253, 244, 0.9);
}

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

.cookie-actions .accept {
  color: var(--bg);
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.cookie-actions .reject {
  color: var(--text);
  background: linear-gradient(180deg, #1a3a28 0%, #0f2418 100%);
}

.page-shell {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.page-shell h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.page-shell h2 {
  font-size: 1.25rem;
  margin: 28px 0 10px;
  color: var(--accent);
}

.page-shell h3 {
  font-size: 1.05rem;
  margin: 20px 0 8px;
  color: var(--muted);
}

.page-shell p,
.page-shell li {
  margin-bottom: 12px;
  color: rgba(240, 253, 244, 0.9);
}

.page-shell ul {
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

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

.legal-panel {
  background: linear-gradient(180deg, rgba(6, 78, 59, 0.65) 0%, rgba(20, 83, 45, 0.55) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.3);
}

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

.contact-form label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #041f10 0%, #062a18 100%);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.35);
}

.contact-form input.error,
.contact-form textarea.error {
  border-color: #f87171;
}

.email-error {
  display: none;
  color: #fca5a5;
  font-size: 0.8125rem;
}

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

.contact-form button {
  align-self: flex-start;
  color: var(--bg);
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 60%, #16a34a 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 12px rgba(34, 197, 94, 0.3);
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.form-success {
  display: none;
  margin-top: 20px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid var(--primary);
  color: var(--accent);
  font-weight: 600;
}

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

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

.go-page h1 {
  font-size: 1.5rem;
}

#AD {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--muted);
}

.go-spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid rgba(134, 239, 172, 0.25);
  border-top-color: var(--primary);
  animation: spin-realistic 0.85s linear infinite;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.25);
}

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

.go-notes {
  font-size: 0.85rem;
  color: rgba(240, 253, 244, 0.75);
  max-width: 420px;
}

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

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

.error-page a {
  display: inline-flex;
  margin-top: 24px;
  padding: 12px 24px;
  color: var(--bg);
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: 10px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.decor-img {
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 8px 20px rgba(0, 0, 0, 0.4);
}

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

@media (max-width: 480px) {
  .decor-img {
    max-width: 100%;
    max-height: 200px;
    width: 100%;
    height: auto;
  }

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

  .hero-stripe {
    width: 48px;
  }

  .hero-body {
    padding: 36px 20px 44px;
  }

  .hero-body::after {
    width: 180px;
    height: 180px;
    right: -20%;
  }
}

.topic-cta {
  display: inline-flex;
  margin-top: 18px;
  padding: 12px 20px;
  color: var(--bg);
  font-weight: 700;
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 55%, #16a34a 100%);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 14px rgba(34, 197, 94, 0.3);
}

.topic-cta:hover {
  color: var(--bg);
}

.topic-cta:active {
  transform: translateY(2px);
}
