:root {
  --bg: #212121;
  --surface: #2D2D2D;
  --text: #F5F5F5;
  --muted: #9E9E9E;
  --primary: #BDBDBD;
  --secondary: #616161;
  --accent: #80CBC4;
  --border: rgba(255,255,255,0.05);
  --max-w: 1200px;
  --font-serif: Georgia, "Palatino Linotype", Palatino, "Book Antiqua", "Times New Roman", serif;
  --font-ui: Georgia, "Times New Roman", Times, serif;
  --pastel: rgba(128, 203, 196, 0.22);
  --clouds: rgba(189, 189, 189, 0.12);
  --kw-pastel: pastel;
  --kw-clouds: clouds;
  --kw-meditative: meditative;
  --kw-soft: soft;
  --kw-blur: blur;
}

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

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

body {
  font-family: var(--font-serif);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 55% at 8% -5%, var(--pastel) 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 92% 12%, var(--clouds) 0%, transparent 50%),
    linear-gradient(168deg, var(--bg) 0%, var(--surface) 42%, 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 20% 30%, rgba(128, 203, 196, 0.08) 0%, transparent 42%),
    radial-gradient(circle at 78% 68%, rgba(189, 189, 189, 0.06) 0%, transparent 40%);
  filter: blur(48px);
  opacity: 0.9;
}

body.pastel.clouds.meditative.soft.blur {
  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, background-color 0.25s ease, opacity 0.25s ease;
}

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

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

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

.disclosure-banner {
  width: 100%;
  max-width: 1200px;
  margin: 12px auto;
  background: #fafafa;
  color: #1a1a1a;
  font-size: 12px;
  text-align: left;
  padding: 10px 16px 10px 20px;
  border-left: 4px solid #f59e0b;
  line-height: 1.5;
  position: relative;
  z-index: 20;
}

.disclosure-banner p {
  margin: 0 0 8px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(33, 33, 33, 0.94);
  backdrop-filter: blur(14px);
  height: 54px;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 54px;
  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-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.brand-lockup:hover {
  color: var(--accent);
  opacity: 1;
}

.brand-lockup img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

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

.nav-links a {
  color: var(--primary);
  font-size: 0.8125rem;
  padding: 6px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  opacity: 1;
}

.nav-sep {
  color: var(--secondary);
  font-size: 0.75rem;
  padding: 0 2px;
  user-select: none;
  opacity: 0.7;
}

.burger-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.burger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s 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(0, 0, 0, 0.55);
  z-index: 140;
  backdrop-filter: blur(4px);
}

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

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 86vw);
  height: 100%;
  background: var(--surface);
  z-index: 150;
  padding: 64px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
}

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

.mobile-nav a {
  color: var(--text);
  padding: 12px 10px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  opacity: 1;
}

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

.site-footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(45, 45, 45, 0.85) 18%, var(--surface) 100%);
  padding: 48px 24px 32px;
  margin-top: 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
  width: fit-content;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

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

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

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

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

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

.footer-requisites {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.ca-disclosure {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 900px;
  opacity: 0.92;
}

.age-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(20, 20, 20, 0.82);
  backdrop-filter: blur(16px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.age-dialog {
  width: min(420px, 100%);
  background: rgba(45, 45, 45, 0.92);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

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

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

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

.btn-confirm,
.btn-decline,
.cookie-actions button,
.contact-submit {
  font-family: var(--font-ui);
  cursor: pointer;
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 0.9375rem;
}

.btn-confirm {
  background: var(--accent);
  color: #1a1a1a;
  font-weight: 600;
}

.btn-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.age-blocked {
  display: none;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 250;
  width: min(640px, calc(100% - 24px));
  background: rgba(45, 45, 45, 0.96);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.cookie-banner.active {
  display: block;
}

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

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

.cookie-actions .accept {
  background: var(--accent);
  color: #1a1a1a;
  font-weight: 600;
}

.cookie-actions .reject {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border);
}

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

.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 8px;
}

.page-hero p {
  color: var(--muted);
  font-style: italic;
}

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

.page-content h1 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 16px;
}

.page-content h2 {
  font-size: 1.25rem;
  margin: 28px 0 10px;
  color: var(--primary);
  font-style: italic;
}

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

.page-content ul,
.page-content ol {
  padding-left: 1.25rem;
  margin-bottom: 14px;
}

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

.misty-card {
  background: rgba(45, 45, 45, 0.55);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(18px);
}

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

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

.contact-form input,
.contact-form textarea {
  font-family: var(--font-ui);
  background: rgba(33, 33, 33, 0.8);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.95rem;
}

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

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

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

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

.contact-submit {
  background: var(--accent);
  color: #1a1a1a;
  font-weight: 600;
  width: fit-content;
  padding: 12px 22px;
}

.form-success {
  display: none;
  margin-top: 20px;
  padding: 18px;
  background: rgba(128, 203, 196, 0.12);
  border-radius: 14px;
  color: var(--text);
}

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

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

.go-page #AD {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

.go-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(128, 203, 196, 0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: soft-spin 0.9s linear infinite;
}

.go-page h1 {
  font-size: 1.4rem;
  font-weight: 600;
}

.go-page p {
  color: var(--muted);
  max-width: 420px;
}

.go-notes {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--muted);
}

.go-notes a {
  color: var(--accent);
}

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

@keyframes soft-breathing {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.04);
  }
}

@keyframes meditative-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes clouds-float {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(18px);
  }
}

.floating-soft {
  animation: meditative-drift 9s ease-in-out infinite;
}

.clouds-drift {
  animation: clouds-float 14s ease-in-out infinite;
}

.pastel-pulse {
  animation: soft-breathing 6s ease-in-out infinite;
}

.decor-wrap {
  overflow: hidden;
  max-width: 100%;
  border-radius: 20px;
}

.decor-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  filter: blur(0.2px);
  opacity: 0.92;
}

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

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

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

.error-page a {
  display: inline-block;
  padding: 12px 20px;
  background: var(--accent);
  color: #1a1a1a;
  border-radius: 12px;
  font-weight: 600;
}

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

  .burger-btn {
    display: flex;
  }
}

@media (max-width: 640px) {
  .disclosure-banner {
    margin: 8px 12px;
    max-width: none;
  }

  .nav-inner {
    padding: 0 16px;
  }

  .footer-badges img {
    height: 36px;
  }

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

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

  .band-visual {
    max-width: 100%;
    min-height: 160px;
  }

  .hero-clouds {
    inset: 0;
  }

  .info-section::before,
  .info-section:nth-child(even)::after {
    width: 200px;
    height: 200px;
    max-width: 40vw;
  }
}

@media (max-width: 375px) {
  .decor-wrap,
  .band-visual,
  .hero {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-img,
  .hero-bg {
    max-width: 100%;
  }

  .info-section::before {
    right: -24px;
  }

  .info-section:nth-child(even)::after {
    left: -24px;
  }
}
