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

:root {
  --navy: #0F0A1A;
  --navy-mid: #1A1128;
  --navy-card: #231535;
  --gold: #00E5C3;
  --gold-lt: #7FFFD4;
  --white: #F4F0FA;
  --muted: #8B7FA8;
  --border: #2E2048;
  --red: #FF5C7A;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}


#popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 26, 0.92);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.popup-box {
  background: var(--navy-card);
  border: 1px solid var(--gold);
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 0 60px rgba(0, 229, 195, 0.18);
}

.popup-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin: 0 auto 1.25rem;
}

.popup-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: .75rem;
}

.popup-box p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.popup-box p strong {
  color: var(--white);
}

.popup-confirm {
  display: block;
  width: 100%;
  padding: .85rem 1.5rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s;
}

.popup-confirm:hover {
  background: var(--gold-lt);
}

.popup-deny {
  display: block;
  width: 100%;
  margin-top: .75rem;
  padding: .75rem;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .875rem;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}

.popup-deny:hover {
  color: var(--white);
  border-color: var(--muted);
}


header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 10, 26, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .02em;
  text-decoration: none;
  flex-shrink: 0;
}

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

.header-badge {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: .2rem .55rem;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

nav a:hover {
  color: var(--gold);
}

@media (max-width: 600px) {
  nav {
    display: none;
  }
}

.section {
  padding: 4rem 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: .5rem;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-sub {
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 2rem;
}

.divider {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.tag {
  font-size: .68rem;
  font-weight: 500;
  padding: .2rem .5rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--muted);
  white-space: nowrap;
}

.tag.agréé {
  border-color: #1A6B5C;
  color: #3DDBA8;
  background: rgba(26, 107, 92, 0.18);
}

.visit-btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy);
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
  text-align: center;
}

.visit-btn:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
}

.visit-btn.outline {
  background: transparent;
  color: var(--gold);
}

.visit-btn.outline:hover {
  background: var(--gold);
  color: var(--navy);
}


.trp-reg-strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 2.25rem 1.5rem;
}

.trp-reg-strip__inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.25rem;
}

.trp-reg-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .85rem 1.15rem;
  min-height: 58px;
  text-decoration: none;
  transition: transform .2s, border-color .2s;
}

.trp-reg-tile:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.trp-reg-tile img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

.trp-disclaimer {
  max-width: 980px;
  margin: 0 auto;
  padding: .85rem 1.5rem;
  background: rgba(0, 229, 195, 0.05);
  border-bottom: 1px solid var(--border);
}

.trp-disclaimer p {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.65;
  text-align: center;
}

.trp-disclaimer strong {
  color: var(--white);
}


footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: .75rem;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: .78rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}

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

.footer-warning {
  background: rgba(0, 229, 195, 0.06);
  border: 1px solid rgba(0, 229, 195, 0.22);
  border-radius: 8px;
  max-width: 720px;
  margin: 0 auto 1.5rem;
  padding: 1.1rem 1.25rem;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.7;
  text-align: left;
}

.footer-warning strong {
  color: var(--gold);
  display: block;
  margin-bottom: .35rem;
}

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

.footer-legal {
  font-size: .72rem;
  color: var(--muted);
  opacity: .6;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}


#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: var(--navy-card);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}

html.age-verified:not(.cookies-accepted) #cookie-banner {
  display: flex;
}

.cookie-inner {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}

.cookie-text strong {
  display: block;
  color: var(--white);
  font-size: .88rem;
  margin-bottom: .25rem;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-accept {
  padding: .65rem 1.25rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: .82rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}

.cookie-accept:hover {
  background: var(--gold-lt);
}

html.age-verified #popup-overlay {
  display: none !important;
}

html.cookies-accepted #cookie-banner {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}
