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

:root {
  --navy: #0D1B2A;
  --navy2: #132233;
  --blue: #1A6FFF;
  --blue2: #0D52CC;
  --gold: #C9A84C;
  --gold2: #A8893A;
  --white: #F5F7FA;
  --grey1: #E8ECF2;
  --grey2: #B0BAC9;
  --grey3: #6B7A90;
  --text: #1A2535;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(13, 27, 42, .18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  padding: .85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.logo-brand {
  color: var(--gold);
}

.logo-domain {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--grey2);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-badge {
  background: rgba(201, 168, 76, .15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 20px;
  letter-spacing: .04em;
  white-space: nowrap;
}

.legal-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #0a2a4a 60%, #0d1b2a 100%);
  padding: 4.25rem 1.5rem 3.25rem;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26, 111, 255, .15) 0%, transparent 70%);
  pointer-events: none;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201, 168, 76, .12);
  border: 1px solid rgba(201, 168, 76, .35);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.legal-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1.12;
  margin-bottom: .85rem;
}

.legal-sub {
  color: var(--grey2);
  max-width: 760px;
  font-size: .98rem;
  line-height: 1.75;
}

main {
  padding: 2.75rem 1.5rem 4.5rem;
}

.legal-card {
  background: #fff;
  border: 1.5px solid var(--grey1);
  border-radius: var(--radius);
  box-shadow: 0 10px 36px rgba(13, 27, 42, .08);
  padding: 2rem 1.75rem;
}

.legal-card h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 1.35rem;
  margin-bottom: .55rem;
  letter-spacing: -0.01em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--grey3);
  font-size: .95rem;
  line-height: 1.75;
}

.legal-card ul {
  margin-left: 1.25rem;
  margin-top: .5rem;
}

.legal-note {
  margin-top: 1.25rem;
  background: rgba(26, 111, 255, .08);
  border: 1.5px solid rgba(26, 111, 255, .16);
  border-radius: 12px;
  padding: 1.1rem 1.15rem;
}

.legal-note strong {
  color: var(--navy);
}

footer {
  background: var(--navy);
  color: var(--grey2);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: .75rem;
  line-height: 1;
  letter-spacing: -0.01em;
}

.footer-col p {
  font-size: .85rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .9rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-col ul li a {
  color: var(--grey2);
  text-decoration: none;
  font-size: .85rem;
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-legal {
  max-width: 1160px;
  margin: 2rem auto 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 2rem;
}

.footer-warning {
  background: rgba(231, 76, 60, .1);
  border: 1px solid rgba(231, 76, 60, .3);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.footer-warning .icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.footer-warning p {
  font-size: .84rem;
  line-height: 1.7;
  color: #f4a0a0;
}

.footer-warning strong {
  color: #f4c4c4;
}

.footer-warning a {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .78rem;
  color: var(--grey3);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.1rem;
  align-items: center;
}

.footer-legal-links a {
  color: var(--grey2);
  text-decoration: none;
}

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

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #e74c3c;
  color: #e74c3c;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: .85rem;
}

@media (max-width: 860px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .nav-links {
    display: none;
  }
}

