/* ===========================
   LondonNightArena.com
   Global Stylesheet
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c96e;
  --gold-dark: #9c7a2e;
  --crimson: #b5142a;
  --crimson-dark: #7d0e1d;
  --dark: #0a0a0f;
  --dark-2: #111118;
  --dark-3: #16161f;
  --dark-4: #1e1e2a;
  --dark-5: #252535;
  --muted: #6b6b85;
  --text: #e8e8f0;
  --text-muted: #9090a8;
  --success: #2eb87a;
  --warning: #e8a020;
  --error: #e8384f;
  --border: rgba(201,168,76,0.15);
  --border-hover: rgba(201,168,76,0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.2);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 600; }
p { color: var(--text-muted); line-height: 1.7; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--lg { padding: 18px 40px; font-size: 1.05rem; }
.btn--danger { background: var(--crimson); color: #fff; }
.btn--danger:hover { background: var(--crimson-dark); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ---- Cards ---- */
.card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-gold); }
.card--dark { background: var(--dark-2); }

/* ---- Section headers ---- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ---- Gold divider ---- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0;
}

/* ---- Badge ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge--gold { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }
.badge--green { background: rgba(46,184,122,0.15); color: var(--success); border: 1px solid rgba(46,184,122,0.3); }
.badge--red { background: rgba(232,56,79,0.15); color: var(--error); border: 1px solid rgba(232,56,79,0.3); }

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.nav__logo-text span { color: var(--gold); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.nav__links a:hover { color: var(--gold); }
.nav__links a.active { color: var(--gold); }
.nav__cta { display: flex; gap: 12px; align-items: center; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10,10,15,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile a { color: var(--text); font-size: 1rem; font-weight: 500; padding: 8px 0; border-bottom: 1px solid var(--border); }
.nav__mobile a:last-child { border-bottom: none; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer__brand p { margin-top: 16px; font-size: 0.9rem; max-width: 280px; }
.footer__contact { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--text-muted); }
.footer__contact-item .ci-icon { font-size: 0.95rem; margin-top: 1px; min-width: 16px; }
.footer__contact-item a { color: var(--text-muted); }
.footer__contact-item a:hover { color: var(--gold); }
.footer__brand .footer__logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--text); }
.footer__brand .footer__logo span { color: var(--gold); }
.footer__col h5 { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul li a { color: var(--text-muted); font-size: 0.9rem; }
.footer__col ul li a:hover { color: var(--text); }
.footer__disclaimer {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 0 0 32px;
}
.footer__disclaimer p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.footer__disclaimer p + p { margin-top: 10px; }
.footer__disclaimer a { color: var(--gold); font-size: 0.82rem; }
.footer__disclaimer strong { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 0.82rem; color: var(--muted); margin: 0; }
.footer__age-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(181,20,42,0.15);
  border: 1px solid rgba(181,20,42,0.3);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: #e57070;
  font-weight: 600;
}

/* ===========================
   AGE GATE MODAL
   =========================== */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-gate.hidden { display: none; }
.age-gate__card {
  background: var(--dark-3);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), var(--shadow-gold);
}
.age-gate__icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}
.age-gate__card h2 { font-size: 2rem; margin-bottom: 12px; }
.age-gate__card p { font-size: 0.95rem; margin-bottom: 28px; }
.age-gate__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 24px;
  cursor: pointer;
  transition: var(--transition);
}
.age-gate__checkbox:hover { border-color: var(--gold); }
.age-gate__checkbox input[type="checkbox"] { display: none; }
.age-gate__custom-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--muted);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-top: 1px;
}
.age-gate__checkbox.checked .age-gate__custom-check {
  background: var(--gold);
  border-color: var(--gold);
}
.age-gate__custom-check::after {
  content: '';
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
  transform: rotate(-45deg) translateY(-2px);
  opacity: 0;
  transition: var(--transition);
}
.age-gate__checkbox.checked .age-gate__custom-check::after { opacity: 1; }
.age-gate__checkbox label { font-size: 0.88rem; color: var(--text-muted); cursor: pointer; }
.age-gate__card .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }
.age-gate__note { font-size: 0.78rem; color: var(--muted); margin-top: 16px; }

/* ===========================
   COOKIE CONSENT
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--dark-3);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  z-index: 9000;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner.hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }
.cookie-banner h4 { font-size: 1rem; margin-bottom: 8px; }
.cookie-banner p { font-size: 0.83rem; margin-bottom: 16px; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  padding: 140px 0 64px;
  text-align: center;
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.page-hero .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===========================
   CONTENT PAGE STYLES
   =========================== */
.content-section { padding: 72px 0; }
.content-wrap { max-width: 800px; margin: 0 auto; }
.content-wrap h2 { margin-bottom: 20px; margin-top: 48px; }
.content-wrap h2:first-child { margin-top: 0; }
.content-wrap h3 { font-size: 1.3rem; margin-bottom: 16px; margin-top: 32px; color: var(--gold); }
.content-wrap p { margin-bottom: 18px; font-size: 0.97rem; }
.content-wrap ul { padding-left: 0; margin-bottom: 18px; }
.content-wrap ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.97rem;
  color: var(--text-muted);
}
.content-wrap ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.content-wrap .info-box {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.content-wrap .info-box p { margin-bottom: 0; font-size: 0.9rem; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 56px 0; }
  .card { padding: 24px; }
  .age-gate__card { padding: 32px 24px; }
  .cookie-banner { left: 16px; right: 16px; bottom: 16px; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeInUp 0.6s ease both; }
.animate-fade { animation: fadeIn 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===========================
   GOLD TEXT GRADIENT
   =========================== */
.text-gold { color: var(--gold); }
.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
