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

:root {
  --bg: #fff1f2;
  --surface: #ffffff;
  --text: #3f1d22;
  --muted: #9f5f68;
  --primary: #fb7185;
  --secondary: #fdba74;
  --accent: #34d399;
  --border: rgba(63, 29, 34, 0.12);
  --nav-bg: rgba(15, 15, 25, 0.75);
  --disclosure-bg: #0f0f19;
  --shadow-hard: 4px 4px 0 rgba(63, 29, 34, 0.25);
  --neon-pink: 0 0 8px #fb7185, 0 0 16px rgba(251, 113, 133, 0.4);
  --neon-cyan: 0 0 8px #34d399, 0 0 16px rgba(52, 211, 153, 0.35);
  --font-display: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: text-shadow 0.2s, color 0.2s;
}

a:hover {
  text-shadow: var(--neon-pink);
}

.disclosure-bar {
  width: 100%;
  background: var(--disclosure-bg);
  height: 28px;
  overflow: hidden;
  padding: 4px 0;
  position: relative;
}

.disclosure-track {
  display: flex;
  width: max-content;
  animation: disclosure-marquee 40s linear infinite;
}

.disclosure-text {
  flex-shrink: 0;
  padding-right: 80px;
  font-size: 11px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

@keyframes disclosure-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
}

.logo-link img {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 8px;
}

.site-nav a:hover {
  text-shadow: var(--neon-cyan);
  color: var(--accent);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
}

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

.site-footer {
  background: linear-gradient(180deg, #1a1020 0%, #0f0f19 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 24px 32px;
  border-top: 3px solid var(--primary);
  box-shadow: inset 0 4px 0 rgba(251, 113, 133, 0.2);
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 360px;
  margin-bottom: 8px;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--accent);
  text-shadow: var(--neon-cyan);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-dgoj {
  font-size: 11px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
  max-width: 900px;
}

.footer-bottom {
  margin-top: 16px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 25, 0.88);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.modal-box {
  background: var(--surface);
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-hard), var(--neon-pink);
  border-radius: 8px;
  padding: 32px 28px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.modal-box h2 {
  font-size: 1.25rem;
  font-weight: 800;
  font-style: italic;
  color: var(--text);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.modal-box p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: inherit;
}

.btn:hover {
  transform: translate(-2px, -2px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--text);
  box-shadow: var(--shadow-hard);
}

.btn-primary:hover {
  box-shadow: 6px 6px 0 rgba(63, 29, 34, 0.3), var(--neon-pink);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(15, 15, 25, 0.95);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--accent);
  padding: 16px 24px;
}

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

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-inner p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
  min-width: 200px;
}

.cookie-inner a {
  color: var(--secondary);
}

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

.page-hero {
  text-align: center;
  padding: 48px 24px 32px;
  background: var(--bg);
}

.page-hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: var(--neon-pink);
}

.page-hero p {
  color: var(--muted);
  margin-top: 8px;
}

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

.content-page h2 {
  font-size: 1.15rem;
  font-weight: 800;
  font-style: italic;
  margin: 28px 0 10px;
  color: var(--text);
}

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

.content-page ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.9375rem;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--neon-pink);
}

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

.form-error {
  display: none;
  font-size: 0.8rem;
  color: #dc2626;
}

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

.form-success {
  padding: 32px;
  background: var(--surface);
  border: 3px solid var(--accent);
  box-shadow: var(--shadow-hard);
  border-radius: 8px;
  text-align: center;
}

.form-success h2 {
  color: var(--text);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--muted);
}

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

.error-page h1 {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  font-style: italic;
  color: var(--primary);
  text-shadow: var(--neon-pink);
  line-height: 1;
}

.error-page p {
  color: var(--muted);
  margin: 16px 0 24px;
  max-width: 420px;
}

.go-redirect {
  background: var(--bg);
  min-height: 100vh;
}

.go-page {
  max-width: 520px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.go-ad {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--muted);
  border: 2px solid var(--border);
  padding: 4px 10px;
  margin-bottom: 24px;
}

.go-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: 0 auto 24px;
}

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

.go-page h1 {
  font-size: 1.35rem;
  font-weight: 800;
  font-style: italic;
  color: var(--text);
  margin-bottom: 12px;
}

.go-page > p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 8px;
}

.go-compliance {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: left;
}

.go-compliance p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}

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

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

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

  .site-nav a {
    font-size: 1.25rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    flex: 1;
  }
}
