

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

:root {
  --bg: #05060a;
  --surface: #0e1020;
  --text: #ede9fe;
  --muted: #a1a1aa;
  --primary: #22d3ee;
  --secondary: #a3e635;
  --accent: #f472b6;
  --border: rgba(237, 233, 254, 0.12);
  --radius: 1.5rem;
  --ease: cubic-bezier(0.34, 1.56, 0.64, 1);
  --display: 'Fredoka', 'Nunito', 'Trebuchet MS', sans-serif;
  --body: 'Nunito', 'Fredoka', 'Trebuchet MS', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  font-size: 1.0625rem;
  font-weight: 600;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.warning-banner {
  background: linear-gradient(90deg, #f472b6, #22d3ee);
  color: #05060a;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.45;
}

.subpage-header {
  background: rgba(14, 16, 32, 0.95);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
}

.subpage-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.subpage-header img {
  height: 44px;
  width: auto;
}

.back-home {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--border);
  transition: transform 0.3s var(--ease), border-color 0.25s;
}

.back-home:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
}

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.legal-page h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.legal-page .updated {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--primary);
}

.legal-page h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin: 1.25rem 0 0.55rem;
  color: var(--secondary);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.legal-page ul {
  list-style: disc;
  padding-left: 1.35rem;
  margin-bottom: 1rem;
}

.legal-page ol {
  list-style: decimal;
  padding-left: 1.35rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.75rem;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), #67e8f9);
  color: #05060a;
  box-shadow: 0 8px 28px rgba(34, 211, 238, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn--sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.92rem;
}

.footer {
  background: var(--surface);
  border-top: 2px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer__logo img {
  height: 44px;
  width: auto;
  margin-bottom: 0.75rem;
}

.footer__brandtext {
  color: var(--muted);
  max-width: 36ch;
  font-size: 0.95rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  max-width: 480px;
}

.footer__links a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

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

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer__badges img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.footer__disclaimer {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.footer__contact {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}

.footer__copy {
  color: var(--muted);
  font-size: 0.85rem;
  opacity: 0.8;
}

.age-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 6, 10, 0.88);
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

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

.age-gate__box {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 2rem;
  padding: 2.25rem 1.75rem;
  max-width: 420px;
  text-align: center;
}

.age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #05060a;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.age-gate__box h2 {
  font-family: var(--display);
  font-size: 1.55rem;
  margin-bottom: 0.75rem;
}

.age-gate__box p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.age-gate__note {
  margin-top: 1rem !important;
  font-size: 0.82rem !important;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  width: min(640px, 94vw);
}

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

.cookie-banner__inner {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.cookie-banner__text {
  flex: 1 1 240px;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .footer__top {
    flex-direction: column;
  }

  .warning-banner {
    font-size: 0.78rem;
  }
}
