:root {
  --bg: #FFF5F8;
  --surface: #FFFFFF;
  --text: #4A0E2E;
  --muted: #A66E8C;
  --primary: #FF85A1;
  --secondary: #FBB1BD;
  --accent: #72EFDD;
  --border: rgba(255,133,161,0.15);
  --nav-bg: #2A0A1A;
  --max-w: 1120px;
  --font-display: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --font-body: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --crystal: rgba(114, 239, 221, 0.35);
  --refraction: linear-gradient(120deg, rgba(255, 133, 161, 0.25), rgba(114, 239, 221, 0.3), rgba(251, 177, 189, 0.2), rgba(255, 133, 161, 0.15));
  --light: rgba(255, 255, 255, 0.55);
  --spiritual: rgba(74, 14, 46, 0.06);
  --meditation: 4.5s;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  background-color: var(--bg);
  background-image:
    linear-gradient(165deg, var(--bg) 0%, rgba(251, 177, 189, 0.35) 38%, rgba(114, 239, 221, 0.12) 62%, var(--bg) 100%),
    radial-gradient(ellipse at 20% 0%, rgba(255, 133, 161, 0.18), transparent 50%),
    radial-gradient(ellipse at 90% 40%, rgba(114, 239, 221, 0.14), transparent 45%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  background:
    var(--refraction),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 28px,
      rgba(255, 133, 161, 0.04) 28px,
      rgba(255, 133, 161, 0.04) 29px
    );
  mix-blend-mode: soft-light;
  animation: crystal-breathe var(--meditation) ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 78%, var(--crystal) 0%, transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(255, 133, 161, 0.2) 0%, transparent 32%),
    radial-gradient(circle at 50% 50%, var(--spiritual) 0%, transparent 60%);
  opacity: 0.7;
}

@keyframes crystal-breathe {
  from {
    opacity: 0.4;
    filter: hue-rotate(0deg);
  }
  to {
    opacity: 0.7;
    filter: hue-rotate(12deg);
  }
}

body > * {
  position: relative;
  z-index: 1;
}

main {
  flex: 1 0 auto;
}

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

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

.disclosure-banner {
  width: 100%;
  background: var(--surface);
  border-top: 3px solid var(--primary);
  border-bottom: none;
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 10px 16px;
  line-height: 1.45;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: var(--nav-bg);
  width: 100%;
  max-width: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--surface);
}

.logo-link img {
  width: 20px;
  height: 20px;
  max-height: 20px;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--surface);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-nav a {
  position: relative;
  font-size: 12px;
  color: rgba(255, 245, 248, 0.85);
  text-decoration: none;
  padding-bottom: 4px;
  transition: color var(--meditation) ease;
}

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

.header-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%) scale(0);
  transition: transform 0.6s ease;
}

.header-nav a:hover::after {
  transform: translateX(-50%) scale(1);
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

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

.burger-btn.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(74, 14, 46, 0.45);
  z-index: 250;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 260;
  background: var(--nav-bg);
  border-radius: 18px 18px 0 0;
  padding: 28px 24px 40px;
  transform: translateY(110%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: 80vh;
  overflow-y: auto;
}

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

.mobile-nav a {
  color: var(--surface);
  text-decoration: none;
  font-size: 15px;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255, 133, 161, 0.15);
  transition: color 0.8s ease, background 0.8s ease;
}

.mobile-nav a:hover {
  color: var(--accent);
  background: rgba(114, 239, 221, 0.08);
}

body.nav-open {
  overflow: hidden;
}

.site-footer {
  background: var(--nav-bg);
  color: rgba(255, 245, 248, 0.85);
  padding: 40px 24px 32px;
  margin-top: auto;
}

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-brand .logo-text {
  color: var(--surface);
  font-size: 1rem;
}

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

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

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

.footer-badges img {
  height: 42px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: brightness(1.05);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 18px;
}

.footer-links a {
  color: rgba(255, 245, 248, 0.75);
  font-size: 13px;
  text-decoration: none;
  transition: color 1s ease;
}

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

.footer-requisites {
  font-size: 12px;
  color: rgba(255, 245, 248, 0.55);
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-note {
  font-size: 12px;
  color: rgba(255, 245, 248, 0.5);
  line-height: 1.55;
  max-width: 720px;
}

.age-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(74, 14, 46, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.age-gate-box {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 245, 248, 0.88));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(114, 239, 221, 0.25),
    0 24px 60px rgba(74, 14, 46, 0.18),
    inset 0 1px 0 var(--light);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.age-gate-box h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: var(--text);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 1.2s ease, box-shadow 1.2s ease, background 1.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text);
  box-shadow: 0 8px 24px rgba(255, 133, 161, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(114, 239, 221, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--surface);
}

.cookie-banner {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 400;
  max-width: 560px;
  margin: 0 auto;
}

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

.cookie-inner {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 245, 248, 0.9));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow:
    0 16px 40px rgba(74, 14, 46, 0.15),
    inset 0 1px 0 var(--light);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cookie-inner p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

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

.page-shell {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.page-shell h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  color: var(--text);
}

.page-shell h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 28px 0 12px;
  color: var(--text);
}

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

.page-shell p {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 15px;
}

.page-shell ul {
  margin: 0 0 16px 1.2em;
}

.page-shell li {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 15px;
}

.glass-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 245, 248, 0.55));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow:
    0 12px 40px rgba(255, 133, 161, 0.1),
    inset 0 1px 0 var(--light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--meditation) ease, transform var(--meditation) ease;
}

.glass-panel:hover {
  box-shadow:
    0 16px 48px rgba(114, 239, 221, 0.18),
    inset 0 1px 0 var(--light);
}

.decor-img {
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

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

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

  .burger-btn {
    display: flex;
  }

  .site-header {
    padding: 0 16px;
  }
}

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

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

  .page-shell {
    padding: 32px 16px 56px;
  }
}

.bank-strip {
  padding: 40px 24px;
  background:
    linear-gradient(90deg, rgba(114, 239, 221, 0.2), rgba(255, 133, 161, 0.12)),
    var(--bg);
}

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

.bank-strip h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 10px;
}

.bank-strip .lede {
  color: var(--muted);
  max-width: 640px;
  font-size: 15px;
}

.bank-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.bank-stat {
  text-align: center;
  padding: 18px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
}

.bank-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 4px;
}

.bank-stat span {
  font-size: 12px;
  color: var(--muted);
}

.bank-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px 72px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
}

.bank-visual {
  border-radius: 20px;
  min-height: 280px;
  background-image:
    linear-gradient(180deg, rgba(74, 14, 46, 0.15), rgba(114, 239, 221, 0.2)),
    url("/images/decorative/decor_8.webp");
  background-size: cover;
  background-position: center;
  max-width: 100%;
}

.bank-copy h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 24px 0 12px;
}

.bank-copy h2:first-child {
  margin-top: 0;
}

.bank-copy p {
  margin-bottom: 14px;
  font-size: 15px;
}

.bank-copy ul {
  margin: 0 0 16px 1.2em;
}

.bank-copy li {
  margin-bottom: 8px;
}

.bank-callout {
  margin: 20px 0;
  padding: 18px 20px;
  border-radius: 16px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.45;
}

@media (max-width: 800px) {
  .bank-stats,
  .bank-main {
    grid-template-columns: 1fr;
  }

  .bank-main {
    padding: 32px 16px 56px;
    overflow-x: hidden;
  }

  .bank-visual {
    min-height: 160px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .bank-strip {
    padding: 32px 16px;
  }
}
