:root {
  --bg: #FAFAF9;
  --surface: #FFFFFF;
  --text: #1C1917;
  --muted: #78716C;
  --primary: #FB7185;
  --secondary: #60A5FA;
  --accent: #34D399;
  --border: rgba(28,25,23,0.12);
  --glass-blur: 40px;
  --nav-h: 60px;
  --max: 1200px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --glassmorphism: glassmorphism;
  --light: light;
  --airy: airy;
  --ios-like: ios-like;
  --clean: clean;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(96, 165, 250, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(251, 113, 133, 0.14), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(52, 211, 153, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #F5F5F4 100%);
  background-attachment: fixed;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.disclosure-banner {
  background: #0C0A09;
  color: #FAFAF9;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0C0A09;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

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

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FAFAF9;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

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

.brand-lockup span {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #FAFAF9;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.nav-links a {
  color: #FAFAF9;
  font-size: 12px;
  font-weight: 400;
  border-radius: 999px;
  padding: 6px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FAFAF9;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(28, 25, 23, 0.06);
}

.section-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 24px;
  position: relative;
}

.section-wrap::before {
  content: "";
  position: absolute;
  inset: 10% auto auto 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section-inner {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}

.section-lead {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 28px;
  font-size: 1rem;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  color: var(--text);
  font-weight: 400;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.btn-pill:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}

.btn-primary:hover {
  background: #F43F5E;
  color: #fff;
}

.site-footer {
  background: #0C0A09;
  color: rgba(250, 250, 249, 0.85);
  padding: 48px 24px 32px;
  margin-top: auto;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #FAFAF9;
  font-weight: 500;
}

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

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

.footer-links a {
  color: rgba(250, 250, 249, 0.75);
  font-size: 13px;
}

.footer-links a:hover {
  color: #FAFAF9;
}

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

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

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

.footer-compliance {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(250, 250, 249, 0.65);
  margin-bottom: 16px;
  max-width: 900px;
}

.footer-company {
  font-size: 12px;
  color: rgba(250, 250, 249, 0.55);
  margin-bottom: 16px;
}

.footer-updated {
  font-size: 12px;
  color: rgba(250, 250, 249, 0.5);
  margin-bottom: 16px;
}

.footer-dgoj {
  font-size: 11px;
  line-height: 1.55;
  color: rgba(250, 250, 249, 0.45);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 960px;
}

.age-overlay,
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 10, 9, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px;
}

.age-overlay[hidden],
.cookie-overlay[hidden] {
  display: none;
}

.age-modal,
.cookie-modal {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 32px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(28, 25, 23, 0.15);
}

.age-modal h2,
.cookie-modal h2 {
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

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

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.modal-actions button {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.modal-actions button:hover {
  transform: scale(1.04);
}

.btn-confirm {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}

.btn-decline {
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
}

.btn-accept {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.btn-reject {
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
}

.page-hero {
  padding: 48px 24px 40px;
  position: relative;
  overflow: hidden;
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-hero h1 {
  font-weight: 300;
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

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

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

.legal-content h1 {
  font-weight: 300;
  font-size: 2rem;
  margin-bottom: 16px;
}

.legal-content h2 {
  font-weight: 400;
  font-size: 1.25rem;
  margin: 28px 0 10px;
}

.legal-content p,
.legal-content li {
  color: var(--text);
  margin-bottom: 12px;
  font-size: 0.98rem;
}

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

.contact-form {
  margin-top: 28px;
  padding: 28px;
  max-width: 520px;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

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

.form-error {
  color: var(--primary);
  font-size: 0.85rem;
  margin-bottom: 12px;
  min-height: 1.2em;
}

.form-success {
  padding: 24px;
  text-align: center;
  color: var(--text);
}

.form-success[hidden] {
  display: none;
}

.contact-form[hidden] {
  display: none;
}

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

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

.line-icon {
  width: 40px;
  height: 40px;
  stroke: var(--secondary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.redirect-card {
  max-width: 440px;
  padding: 40px 32px;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 0.8s linear infinite;
}

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

.redirect-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}

.ad-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

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

  .nav-links {
    position: fixed;
    inset: 0;
    background: #0C0A09;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 999;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 10px 28px;
  }

  .site-header.is-open {
    z-index: 1001;
  }

  .nav-toggle {
    position: relative;
    z-index: 1002;
  }
}

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

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

  .hero-decor {
    max-width: 100%;
    width: auto;
    right: 0;
    left: auto;
  }

  .band-mosaic .tile {
    max-width: 100%;
    background-size: cover;
  }

  .footer-badges img {
    max-width: 100%;
    height: 36px;
  }
}
