:root {
  --bg: #0D0208;
  --surface: #210B16;
  --text: #FAE6FA;
  --muted: #D482A3;
  --primary: #FF3864;
  --secondary: #FFB8DE;
  --accent: #2DE2E2;
  --border: rgba(255, 56, 100, 0.2);
  --white: #ffffff;
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 56, 100, 0.12), transparent),
    linear-gradient(180deg, var(--bg) 0%, #150510 50%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 120px,
    rgba(255, 184, 222, 0.015) 120px,
    rgba(255, 184, 222, 0.015) 121px
  );
  pointer-events: none;
  z-index: 0;
}

.disclosure-banner {
  position: relative;
  z-index: 10;
  width: 100%;
  background: #f5f5f5;
  color: #555;
  font-size: 11px;
  text-align: center;
  padding: 8px 16px;
  line-height: 1.5;
}

.disclosure-banner a {
  color: #555;
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 100;
  padding: 0 16px;
  margin-bottom: 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  height: 56px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.navbar-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.navbar-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.navbar-links a:hover {
  opacity: 1;
}

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

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.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);
}

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

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

.mobile-overlay a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 28px;
  opacity: 0.85;
}

.mobile-overlay a:hover {
  opacity: 1;
  color: var(--primary);
}

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

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
  margin-top: auto;
  flex-shrink: 0;
}

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.footer-badges a {
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-badges a:hover {
  opacity: 1;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  list-style: none;
  margin-bottom: 32px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.footer-copy {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}

.footer-disclosure {
  font-size: 11px;
  color: rgba(212, 130, 163, 0.75);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-disclosure a {
  color: rgba(212, 130, 163, 0.9);
}

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

.age-modal {
  inset: 0;
  background: rgba(13, 2, 8, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.age-modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  max-width: 440px;
  text-align: center;
}

.age-modal-box h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 400;
}

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

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

.age-modal-btns button {
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.age-btn-yes {
  background: var(--primary);
  color: var(--white);
}

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

.age-modal-btns button:hover {
  opacity: 0.85;
}

.cookie-banner {
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.cookie-banner p {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
}

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

.cookie-btns button {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  border: none;
}

.cookie-accept {
  background: var(--primary);
  color: var(--white);
}

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

.page-hero {
  background: var(--bg);
  padding: 60px 24px 80px;
  text-align: center;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 60px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.legal-content h1 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 32px;
  color: var(--white);
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin: 32px 0 16px;
  color: var(--secondary);
}

.legal-content h3 {
  font-size: 18px;
  margin: 24px 0 12px;
  color: var(--text);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content a {
  color: var(--accent);
}

.contact-form {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.contact-form label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  margin-bottom: 20px;
}

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

.contact-form button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form button:hover {
  opacity: 0.9;
}

.form-error {
  color: var(--primary);
  font-size: 13px;
  margin-top: -12px;
  margin-bottom: 16px;
  display: none;
}

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

.form-success {
  display: none;
  padding: 32px;
  background: rgba(45, 226, 226, 0.08);
  border: 1px solid rgba(45, 226, 226, 0.2);
  border-radius: 8px;
  text-align: center;
}

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

.form-success h3 {
  font-family: var(--font-serif);
  color: var(--accent);
  margin-bottom: 12px;
}

.redirect-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.redirect-page .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 24px;
}

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

.redirect-ad {
  font-size: 11px;
  color: var(--muted);
  margin-top: 24px;
  max-width: 480px;
  line-height: 1.6;
}

.redirect-ad a {
  color: var(--accent);
}

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

.error-page h1 {
  font-family: var(--font-serif);
  font-size: 72px;
  color: var(--primary);
  font-weight: 300;
}

.error-page p {
  color: var(--muted);
  margin: 16px 0 32px;
}

.error-page a {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 375px) {
  body {
    overflow-x: hidden;
  }

  .luxury-section,
  .layout-band,
  .editorial-block,
  .mobile-split,
  .slots-banner,
  .guide-layout,
  .support-columns,
  .slots-content,
  .mobile-body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .layout-split .decor-img,
  .decor-constrained,
  .slots-inline-img,
  .sidebar-img-stack img,
  .support-rail img,
  .mobile-split-visual img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
  }

  .layout-band {
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 0;
    padding: 0;
  }

  .navbar {
    border-radius: 0;
    max-width: 100%;
  }

  .navbar-links {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .page-hero {
    padding: 32px 20px 48px;
    min-height: 240px;
  }

  .hero-wave svg {
    height: 40px;
  }
}
