:root {
  --bg: #1A0B10;
  --surface: #2A1118;
  --text: #FFF1F2;
  --muted: #FDA4AF;
  --primary: #FB7185;
  --secondary: #F97316;
  --accent: #FACC15;
  --border: rgba(255, 241, 242, 0.12);
  --organic-blob-opacity: 0.12;
  --natural-flow-spacing: 1.65;
  --blob-shapes-radius: 55% 45% 50% 50%;
  --fluid-motion-ease: ease;
  --soft-gradients-blend: rgba(251, 113, 133, 0.15);
  --playful-radius-lg: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 0%, var(--soft-gradients-blend) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(249, 115, 22, 0.12) 0%, transparent 55%),
    linear-gradient(160deg, var(--bg) 0%, #2A1118 50%, var(--bg) 100%);
  color: var(--text);
  line-height: var(--natural-flow-spacing);
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

body::before {
  content: "";
  position: fixed;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(250, 204, 21, var(--organic-blob-opacity)) 0%, transparent 70%);
  border-radius: var(--blob-shapes-radius);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s var(--fluid-motion-ease);
}

body::after {
  content: "";
  position: fixed;
  bottom: -100px;
  left: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.1) 0%, transparent 65%);
  border-radius: 45% 55% 40% 60%;
  pointer-events: none;
  z-index: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.offer-card-logo img {
  max-width: none;
  height: 100%;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent);
}

.disclosure-banner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(255, 241, 242, 0.08);
  width: 100%;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  position: relative;
  z-index: 10;
}

.disclosure-banner span.emoji {
  flex-shrink: 0;
  font-size: 14px;
}

.disclosure-banner p {
  max-width: 900px;
  line-height: 1.4;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 11, 16, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  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: 32px;
  width: auto;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-cta {
  display: none;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.navbar-cta:hover {
  color: var(--text);
  opacity: 0.9;
}

@media (min-width: 768px) {
  .navbar-cta {
    display: inline-block;
  }
}

.burger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media (min-width: 768px) {
  .burger-btn {
    display: none;
  }
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  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);
}

.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.nav-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--surface);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 60px 24px 24px;
  overflow-y: auto;
  border-left: 1px solid var(--border);
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-drawer a {
  display: block;
  padding: 12px 16px;
  color: var(--text);
  border-radius: 12px;
  font-size: 15px;
  transition: background 0.2s;
}

.nav-drawer a:hover {
  background: rgba(251, 113, 133, 0.15);
  color: var(--primary);
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 20px 32px;
  position: relative;
  z-index: 1;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,20 Q300,40 600,20 T1200,20 L1200,40 L0,40 Z' fill='%232A1118'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: 100% 100%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--text);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-badges img {
  height: 40px;
  width: auto;
}

.footer-copy {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.age-gate-overlay,
.cookie-banner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate-overlay.hidden,
.cookie-banner-overlay.hidden {
  display: none;
}

.age-gate-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.age-gate-modal::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.2) 0%, transparent 70%);
  border-radius: 50% 40% 60% 50%;
}

.age-gate-modal h2 {
  font-size: 24px;
  margin-bottom: 12px;
  position: relative;
}

.age-gate-modal p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 15px;
  position: relative;
}

.age-gate-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  position: relative;
}

.age-gate-buttons button {
  padding: 12px 28px;
  border: none;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.age-gate-buttons button:hover {
  transform: scale(1.03);
}

.btn-confirm {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text);
}

.btn-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner p {
  flex: 1;
  min-width: 240px;
  font-size: 14px;
  color: var(--muted);
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner-actions button {
  padding: 10px 20px;
  border: none;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text);
}

.btn-cookie-reject {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px 80px;
  position: relative;
  z-index: 1;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin: 28px 0 12px;
  color: var(--primary);
}

.legal-page h3 {
  font-size: 1.1rem;
  margin: 20px 0 10px;
  color: var(--muted);
}

.legal-page p {
  margin-bottom: 14px;
  color: rgba(255, 241, 242, 0.85);
}

.legal-page ul {
  margin: 12px 0 16px 24px;
  color: rgba(255, 241, 242, 0.85);
}

.legal-page li {
  margin-bottom: 6px;
}

.contact-form {
  margin-top: 32px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.contact-form h2 {
  margin-top: 0;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 241, 242, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  color: var(--primary);
  font-size: 13px;
  margin-top: 6px;
  display: none;
}

.form-error.visible {
  display: block;
}

.btn-submit {
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text);
  border: none;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-submit:hover {
  opacity: 0.9;
}

.form-success {
  padding: 32px;
  background: rgba(251, 113, 133, 0.1);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
}

.form-success h2 {
  color: var(--accent);
  margin-bottom: 12px;
}

.form-success.hidden,
.contact-form.hidden {
  display: none;
}

.wave-divider {
  width: 100%;
  height: 48px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 48' preserveAspectRatio='none'%3E%3Cpath d='M0,24 C200,48 400,0 600,24 C800,48 1000,0 1200,24 L1200,48 L0,48 Z' fill='%232A1118' opacity='0.5'/%3E%3C/svg%3E") no-repeat center;
  background-size: 100% 100%;
}

main {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
}
