/* =============================================
   SBB — Sports Betting Bars
   Premium Stylesheet
   ============================================= */

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

/* ---- CSS Custom Properties ---- */
:root {
  --black:       #0a0a0a;
  --deep:        #111111;
  --card-bg:     #161616;
  --border:      #2a2a2a;
  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --gold-dark:   #9a7a30;
  --amber:       #e07b39;
  --crimson:     #c0392b;
  --white:       #f5f0e8;
  --grey:        #888888;
  --grey-light:  #bbbbbb;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', sans-serif;
  --font-display:'Bebas Neue', sans-serif;
  --radius:      12px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- Age Gate Overlay ---- */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.age-gate-box {
  background: var(--card-bg);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  animation: fadeInUp 0.6s ease both;
}

.age-gate-box .gate-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.age-gate-box h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.age-gate-box p {
  color: var(--grey-light);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.age-gate-box .age-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.gate-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gate-yes {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--black);
  font-weight: 700;
  padding: 0.85rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-sans);
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-gate-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }

.btn-gate-no {
  background: transparent;
  color: var(--grey);
  font-weight: 500;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  font-family: var(--font-sans);
  transition: var(--transition);
}

.btn-gate-no:hover { border-color: var(--crimson); color: var(--crimson); }

/* ---- Age Banner (top) ---- */
.age-banner {
  background: linear-gradient(90deg, var(--crimson), #8b0000);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 100;
}

.age-banner span { margin: 0 0.5rem; }

/* ---- Navigation ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 4px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--amber)) !important;
  color: var(--black) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.35) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(224,123,57,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 20% 60%, rgba(192,57,43,0.05) 0%, transparent 50%);
}

/* Animated particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1.5); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* SBB Logo above offers */
.sbb-logo-hero {
  margin: 0 auto 2rem;
  max-width: 320px;
  animation: fadeInDown 0.9s ease both 0.1s;
}

.sbb-logo-hero img {
  width: 100%;
  filter: brightness(1.1) drop-shadow(0 0 30px rgba(201,168,76,0.3));
}

/* Fallback text logo if image fails */
.sbb-text-logo {
  font-family: var(--font-display);
  font-size: 5rem;
  letter-spacing: 8px;
  background: linear-gradient(135deg, var(--gold), var(--amber), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  animation: fadeInDown 0.9s ease both 0.1s;
  text-shadow: none;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.9s ease both 0.2s;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--grey-light);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.9s ease both 0.35s;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease both 0.5s;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,168,76,0.4); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.05);
  transform: translateY(-2px);
}

/* ---- Scroll Indicator ---- */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--grey);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1.5s ease both 1s;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1.5px solid var(--grey);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-mouse::before {
  content: '';
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDown 1.8s ease infinite;
}

@keyframes scrollDown {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ---- Section Shared ---- */
section { padding: 6rem 2rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--grey-light);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 560px;
}

/* ---- Divider ---- */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
  margin: 1.5rem 0;
  border-radius: 2px;
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.4rem;
}

/* ---- Venues Section ---- */
.venues-section {
  background: var(--black);
  max-width: 1200px;
  margin: 0 auto;
}

.venues-header {
  text-align: center;
  margin-bottom: 4rem;
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ---- Venue Card ---- */
.venue-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.venue-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(201,168,76,0.04), transparent);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.venue-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-dark);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.15);
}

.venue-card:hover::before { opacity: 1; }

.venue-card-header {
  padding: 2.5rem 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.venue-logo-wrap {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  background: #1a1a1a;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  padding: 8px;
  transition: var(--transition);
}

.venue-card:hover .venue-logo-wrap {
  border-color: var(--gold-dark);
  box-shadow: 0 0 20px rgba(201,168,76,0.15);
}

.venue-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.venue-info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.venue-tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,0.2);
}

.venue-card-body {
  padding: 1.75rem 2.5rem;
  flex: 1;
}

.venue-card-body p {
  color: var(--grey-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.venue-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--grey-light);
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  transition: var(--transition);
}

.feature-chip:hover { border-color: var(--gold-dark); color: var(--gold); }

.venue-card-footer {
  padding: 1.5rem 2.5rem 2.5rem;
}

.btn-venue {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-venue::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.btn-venue:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(201,168,76,0.45);
}

.btn-venue:hover::after { opacity: 1; }
.btn-venue .btn-text { position: relative; z-index: 1; }
.btn-venue .btn-arrow { position: relative; z-index: 1; transition: transform 0.3s ease; }
.btn-venue:hover .btn-arrow { transform: translateX(4px); }

/* ---- Responsible Gambling Section ---- */
.rg-section {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.rg-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.rg-inner .section-title { margin-bottom: 0.75rem; }
.rg-inner .section-subtitle { margin: 0 auto 3rem; }

.rg-orgs {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.rg-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 240px;
  transition: var(--transition);
  text-decoration: none;
  color: var(--white);
}

.rg-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}

.rg-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.rg-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
}

.rg-card p {
  font-size: 0.82rem;
  color: var(--grey);
  text-align: center;
}

.rg-card .rg-link {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.rg-helpline {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 1.25rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--grey-light);
}

.rg-helpline strong { color: var(--gold); }

/* ---- Why Choose Section ---- */
.why-section { background: var(--black); }

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.4);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(224,123,57,0.1));
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.why-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, #1a1200, #0a0a0a 40%, #1a0800);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.06), transparent);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--grey-light);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* ---- Footer ---- */
footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand .nav-logo {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--grey);
  transition: var(--transition);
}

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

/* ---- Compliance / Disclaimer Block ---- */
.compliance-block {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2.5rem;
}

.compliance-block h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.compliance-block p,
.compliance-block li {
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.compliance-block ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.compliance-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--grey-light);
  text-decoration: none;
  transition: var(--transition);
}

.compliance-badge:hover { border-color: var(--gold-dark); color: var(--gold); }

.age-badge-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--crimson);
  color: #fff;
  font-weight: 900;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--grey);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--grey);
  transition: var(--transition);
}

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

/* ---- Animations ---- */
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp  { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown{ from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer   { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Pulse Ring ---- */
.pulse-ring {
  position: relative;
  display: inline-block;
}

.pulse-ring::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: pulseRing 2s ease infinite;
}

@keyframes pulseRing {
  0%   { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ---- Mobile Nav ---- */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 400;
  }

  .nav-links.open { transform: translateY(0); }

  .nav-links a { font-size: 1rem; }

  .venues-grid { grid-template-columns: 1fr; }

  .venue-card-header { flex-direction: column; text-align: center; }

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

  .footer-bottom { flex-direction: column; text-align: center; }

  section { padding: 4rem 1.25rem; }

  .hero { min-height: 85vh; }
}

@media (max-width: 480px) {
  .venues-grid { grid-template-columns: 1fr; }
  .rg-orgs { flex-direction: column; align-items: center; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ---- Gold shimmer on hover ---- */
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s linear infinite;
}

@keyframes goldShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ---- Glow line ---- */
.glow-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
  margin: 0;
}
