/* ============================================================
   PRINCESS CASINO DAR ES SALAAM — Main Stylesheet
   Color Palette: Navy #06091a | Purple #2d0a5e | Gold #d4a017
   ============================================================ */

/* ============================================================
   AGE VERIFICATION GATE
   ============================================================ */
#age-gate {
  position: fixed; inset: 0;
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
}
.age-gate-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 700px at 30% 40%, rgba(45,10,94,0.75) 0%, transparent 70%),
    radial-gradient(ellipse 700px 600px at 80% 70%, rgba(13,18,64,0.8) 0%, transparent 70%),
    url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?w=1920&q=70') center/cover no-repeat;
  background-color: #06091a;
  filter: brightness(0.45) saturate(1.2);
}
.age-gate-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(6,9,26,0.65);
}

.age-gate-card {
  position: relative; z-index: 1;
  background: rgba(10,14,35,0.92);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 24px;
  padding: 3rem 3rem 2.5rem;
  max-width: 520px; width: 100%;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(212,160,23,0.08),
    0 40px 80px rgba(0,0,0,0.8),
    0 0 60px rgba(212,160,23,0.08);
  animation: gateEntrance 0.9s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes gateEntrance {
  0%   { opacity: 0; transform: translateY(40px) scale(0.94); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.age-gate-logo {
  margin-bottom: 0.5rem;
}
.age-gate-logo img {
  height: 90px; width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 14px rgba(212,160,23,0.5));
}

.age-gate-divider {
  margin: 0.5rem 0 1rem;
  display: flex; align-items: center;
  gap: 0.8rem;
}
.age-gate-divider::before,
.age-gate-divider::after {
  content: '';
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.4), transparent);
}
.age-gate-crown {
  color: var(--gold-bright);
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px rgba(245,197,24,0.6));
  animation: crownPulse 2.5s ease-in-out infinite;
}
@keyframes crownPulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(245,197,24,0.5)); transform: scale(1); }
  50%       { filter: drop-shadow(0 0 20px rgba(245,197,24,0.9)); transform: scale(1.1); }
}

.age-gate-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.age-gate-title span {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.age-gate-location {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 1.8rem;
  text-transform: uppercase;
}
.age-gate-location i { margin-right: 0.4rem; }

.age-gate-box {
  background: rgba(212,160,23,0.05);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 16px;
  padding: 1.5rem 1.8rem;
  margin-bottom: 2rem;
}
.age-gate-shield {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 1.4rem;
  border-radius: 30px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(212,160,23,0.4);
}
.age-gate-shield i { font-size: 1.1rem; }

.age-gate-question {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.age-gate-question strong { color: var(--white); }

.age-gate-sub {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.7;
}

.age-gate-btns {
  display: flex; flex-direction: column; gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.age-gate-yes {
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 25px rgba(212,160,23,0.35);
}
.age-gate-yes:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212,160,23,0.55);
}
.age-gate-yes i { font-size: 1rem; }

.age-gate-no {
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
  background: transparent;
  color: var(--gray);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: var(--transition);
}
.age-gate-no:hover {
  border-color: rgba(255,100,100,0.4);
  color: #ff8888;
  background: rgba(255,100,100,0.06);
}

.age-gate-footer-note {
  font-size: 0.72rem;
  color: #555;
  line-height: 1.6;
}
.age-gate-footer-note i { margin-right: 0.3rem; }
.age-gate-footer-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Floating suits on age gate */
.ag-suit {
  position: fixed;
  color: var(--gold-bright);
  pointer-events: none;
  user-select: none;
  animation: floatSuitGate 10s ease-in-out infinite;
  z-index: 99998;
}
@keyframes floatSuitGate {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-30px) rotate(12deg); }
  66%       { transform: translateY(15px) rotate(-8deg); }
}

/* Declined Screen */
#age-declined {
  position: fixed; inset: 0;
  background: var(--navy-deep);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem;
}
.age-declined-inner {
  max-width: 480px;
}

/* Mobile adjustments */
@media (max-width: 560px) {
  .age-gate-card { padding: 2.2rem 1.5rem 2rem; border-radius: 18px; }
  .age-gate-logo img { height: 70px; }
  .age-gate-title { font-size: 1.5rem; }
}

/* ---------- CSS Variables ---------- */
:root {
  --navy-deep:   #06091a;
  --navy-mid:    #0d1240;
  --navy-light:  #141a4e;
  --purple-deep: #1a0535;
  --purple-mid:  #2d0a5e;
  --purple-light:#4a1a7a;
  --gold:        #d4a017;
  --gold-bright: #f5c518;
  --gold-light:  #ffd700;
  --gold-pale:   #fff0a0;
  --white:       #ffffff;
  --off-white:   #f0f0f0;
  --gray:        #aaaaaa;
  --text-light:  #e0e0e0;
  --font-display:'Cinzel', serif;
  --font-deco:   'Cinzel Decorative', serif;
  --font-body:   'Raleway', sans-serif;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 0 30px rgba(212,160,23,0.4);
  --shadow-glow: 0 0 60px rgba(212,160,23,0.25);
}

/* ---------- Reset & Base ---------- */
*, *::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(--navy-deep);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
}

::selection { background: var(--gold); color: var(--navy-deep); }

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

a { text-decoration: none; color: inherit; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0;
  background: var(--navy-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.fade-out { opacity: 0; visibility: hidden; }

.preloader-crown {
  width: 80px; height: 80px;
  animation: crownSpin 1.5s linear infinite;
  filter: drop-shadow(0 0 20px var(--gold));
}
.preloader-text {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  animation: pulse 1.5s ease-in-out infinite;
}
.preloader-bar {
  width: 200px; height: 2px;
  background: rgba(212,160,23,0.2);
  margin-top: 1rem; border-radius: 2px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  animation: barFill 2s ease forwards;
}

@keyframes crownSpin {
  0%   { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
@keyframes barFill {
  0%   { width: 0; }
  100% { width: 100%; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
#navbar.scrolled {
  background: rgba(6,9,26,0.96);
  backdrop-filter: blur(12px);
  padding: 0.8rem 2rem;
  border-bottom: 1px solid rgba(212,160,23,0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-logo img {
  height: 56px; width: auto;
  filter: drop-shadow(0 0 8px rgba(212,160,23,0.5));
  transition: height var(--transition);
}
#navbar.scrolled .nav-logo img { height: 44px; }

.nav-links {
  display: flex; align-items: center; gap: 0.2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-white);
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 1px; background: var(--gold);
  transition: left var(--transition), right var(--transition);
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a:hover::after { left: 15%; right: 15%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright)) !important;
  color: var(--navy-deep) !important;
  font-weight: 700 !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 30px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { box-shadow: var(--shadow-gold); transform: translateY(-1px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,9,26,0.3) 0%, rgba(45,10,94,0.6) 50%, rgba(6,9,26,0.85) 100%),
    url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?w=1920&q=90') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

#particles-js {
  position: absolute; inset: 0; z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 900px; padding: 0 2rem;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.4);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease forwards;
}
.hero-badge i { font-size: 0.9rem; animation: sparkle 2s ease-in-out infinite; }

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3) rotate(20deg); }
}

.hero-title {
  font-family: var(--font-deco);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, var(--white) 20%, var(--gold-bright) 50%, var(--white) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmerText 4s linear infinite, fadeInUp 1s ease 0.3s both;
  text-shadow: none;
  filter: drop-shadow(0 2px 20px rgba(212,160,23,0.5));
}
.hero-subtitle-brand {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  letter-spacing: 0.55em;
  color: var(--gold);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 0.5s both;
}
.hero-location {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  letter-spacing: 0.4em;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.7s both;
}
.hero-location i { color: var(--gold); margin-right: 0.4rem; }

.hero-divider {
  width: 120px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 2rem;
  animation: fadeIn 1s ease 0.9s both;
}

.hero-cta-group {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease 1.1s both;
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: fadeIn 1s ease 1.5s both;
}
.hero-scroll span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

@keyframes shimmerText {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   ANNOUNCEMENT TICKER
   ============================================================ */
.ticker-wrap {
  background: linear-gradient(90deg, var(--purple-deep), var(--navy-mid), var(--purple-deep));
  border-top: 1px solid rgba(212,160,23,0.3);
  border-bottom: 1px solid rgba(212,160,23,0.3);
  overflow: hidden;
  padding: 0.65rem 0;
}
.ticker {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold-bright);
  padding: 0 3rem;
}
.ticker-item i { color: var(--gold-light); }
.ticker-dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  margin: 0 2rem;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { padding: 5rem 0; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 0.8rem;
  justify-content: center;
}
.section-label::before,
.section-label::after {
  content: ''; flex: 1; max-width: 60px;
  height: 1px; background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  text-align: center;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-title .gold { color: var(--gold); }

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto 3.5rem;
  line-height: 1.8;
}

.gold-line {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--navy-deep);
}
.btn-gold:hover {
  box-shadow: 0 8px 30px rgba(212,160,23,0.5);
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  color: var(--gold-bright);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(212,160,23,0.12);
  box-shadow: 0 0 20px rgba(212,160,23,0.25);
  transform: translateY(-3px);
}
.btn-white {
  background: var(--white);
  color: var(--navy-deep);
}
.btn-white:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--purple-deep) 50%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1616696985578-a11b1da8cd93?w=1920&q=60') center/cover no-repeat;
  opacity: 0.05;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-main-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 500px;
  border: 1px solid rgba(212,160,23,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.about-accent-img {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 55%;
  border-radius: 10px;
  border: 3px solid var(--navy-deep);
  box-shadow: 0 10px 40px rgba(0,0,0,0.7);
}
.about-badge-years {
  position: absolute;
  top: -1.5rem; left: -1.5rem;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 0 30px rgba(212,160,23,0.6);
  animation: rotateGlow 8s linear infinite;
}
.about-badge-years .num { font-size: 2.2rem; line-height: 1; }
.about-badge-years .label { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; }

@keyframes rotateGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(212,160,23,0.6); }
  50%       { box-shadow: 0 0 60px rgba(245,197,24,0.9); }
}

.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat-item {
  text-align: center;
  padding: 1.2rem;
  background: rgba(212,160,23,0.06);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 10px;
  transition: var(--transition);
}
.stat-item:hover {
  background: rgba(212,160,23,0.12);
  border-color: rgba(212,160,23,0.4);
  transform: translateY(-4px);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-bright);
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ============================================================
   ANNIVERSARY SECTION
   ============================================================ */
#anniversary {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--navy-mid) 40%, var(--purple-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
#anniversary::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(212,160,23,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 80% 50%, rgba(74,26,122,0.3) 0%, transparent 70%);
}

.anniversary-content {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.anniversary-left {}
.anniversary-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}
.anniversary-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.anniversary-title span { color: var(--gold-bright); }
.anniversary-desc {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.anniversary-features {
  display: flex; flex-direction: column; gap: 0.8rem;
  margin-bottom: 2rem;
}
.anniversary-feat {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.9rem; color: var(--text-light);
}
.anniversary-feat i { color: var(--gold-bright); font-size: 1rem; width: 20px; }

.anniversary-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.anniversary-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.anv-card-icon {
  font-size: 3.5rem;
  color: var(--gold-bright);
  margin-bottom: 1rem;
  animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-12px) rotate(5deg); }
}
.anv-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}
.anv-card-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

/* Countdown */
.countdown-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.countdown {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0.8rem;
  margin-bottom: 2rem;
}
.count-block {
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 10px;
  padding: 0.8rem 0.4rem;
}
.count-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.count-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.3rem;
}

/* ============================================================
   GAMES SECTION
   ============================================================ */
#games {
  background: var(--navy-deep);
  position: relative;
}
#games::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 1000px 600px at 50% 100%, rgba(45,10,94,0.4), transparent);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.game-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy-mid);
  border: 1px solid rgba(212,160,23,0.12);
  transition: var(--transition);
  cursor: pointer;
  group: true;
}
.game-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212,160,23,0.5);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(212,160,23,0.15);
}
.game-card-img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.7) saturate(1.1);
}
.game-card:hover .game-card-img {
  transform: scale(1.08);
  filter: brightness(0.85) saturate(1.3);
}
.game-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,9,26,0.95) 0%, transparent 55%);
}
.game-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.game-card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--navy-deep);
  margin-bottom: 0.7rem;
  box-shadow: 0 4px 15px rgba(212,160,23,0.4);
}
.game-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.game-card-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
}
.game-card-tag {
  display: inline-block;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold-bright);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-top: 0.8rem;
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
#events {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--purple-deep) 100%);
  position: relative;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.event-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}
.event-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,160,23,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.event-card-img {
  width: 100%; height: 200px;
  object-fit: cover;
  filter: brightness(0.75);
  transition: transform 0.5s ease;
}
.event-card:hover .event-card-img { transform: scale(1.05); }
.event-card-body { padding: 1.6rem; }
.event-date {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.event-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.event-card-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.event-card-status {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.event-card-status.live { color: #4ade80; }
.event-card-status.live::before {
  content: ''; display: inline-block;
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  70%       { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}
.event-card-status.upcoming { color: var(--gold-bright); }

/* ============================================================
   BAR & DINING
   ============================================================ */
#dining {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.dining-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212,160,23,0.15);
}
.dining-img {
  position: relative;
}
.dining-img img {
  width: 100%; height: 100%; min-height: 500px;
  object-fit: cover;
  filter: brightness(0.65);
}
.dining-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--navy-deep));
}
.dining-content {
  background: linear-gradient(135deg, var(--navy-mid), var(--purple-deep));
  padding: 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.dining-items { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; }
.dining-item { display: flex; gap: 1.2rem; }
.dining-item-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-bright);
}
.dining-item-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.dining-item-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
#gallery {
  background: linear-gradient(180deg, var(--purple-deep) 0%, var(--navy-deep) 100%);
  position: relative;
}
.gallery-header { margin-bottom: 2rem; }
.instagram-banner {
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
}
.instagram-banner a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--gold-bright);
  border-bottom: 1px solid rgba(212,160,23,0.4);
  padding-bottom: 1px;
  transition: color var(--transition);
}
.instagram-banner a:hover { color: var(--gold-light); }
.instagram-banner i { font-size: 1.1rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.2rem;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(1.1);
  transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.9) saturate(1.3);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,9,26,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex; align-items: flex-end;
  padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--white);
  font-size: 0.8rem;
}
.gallery-overlay-icon i { color: var(--gold-bright); }

.gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   COMING SOON SECTION
   ============================================================ */
#coming-soon {
  position: relative;
  background: var(--navy-deep);
  overflow: hidden;
}
.coming-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 50% 50%, rgba(74,26,122,0.4) 0%, transparent 70%),
    url('https://images.unsplash.com/photo-1518709268805-4e9042af9f23?w=1920&q=60') center/cover no-repeat;
  opacity: 0.3;
}
.coming-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--navy-deep) 0%, rgba(6,9,26,0.4) 50%, var(--navy-deep) 100%);
}
.coming-content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.coming-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.coming-title {
  font-family: var(--font-deco);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.coming-title .gold-shimmer {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmerText 3s linear infinite;
}
.coming-mystery {
  display: flex; justify-content: center; gap: 1rem;
  margin: 2rem 0;
}
.mystery-icon {
  width: 60px; height: 60px;
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-bright);
  animation: floatMystery 3s ease-in-out infinite;
}
.mystery-icon:nth-child(2) { animation-delay: 0.5s; }
.mystery-icon:nth-child(3) { animation-delay: 1s; }
@keyframes floatMystery {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%       { transform: translateY(-15px); opacity: 1; }
}
.coming-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 2rem;
  opacity: 0.85;
}
.coming-countdown-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.coming-countdown {
  display: inline-grid;
  grid-template-columns: repeat(4, 90px);
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}
.coming-count-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 12px;
  padding: 1.2rem 0.5rem;
  position: relative;
  overflow: hidden;
}
.coming-count-block::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.coming-count-block .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold-bright);
  font-weight: 700;
  line-height: 1;
}
.coming-count-block .lbl {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.coming-question {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
  font-style: italic;
}

.notify-form {
  display: flex; gap: 0; max-width: 440px; margin: 0 auto;
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.notify-form input {
  flex: 1; padding: 0.9rem 1.5rem;
  background: transparent;
  border: none; outline: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.notify-form input::placeholder { color: var(--gray); }
.notify-form button {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: var(--navy-deep);
  border: none;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity var(--transition);
}
.notify-form button:hover { opacity: 0.9; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--purple-deep) 100%);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-info-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-bright);
}
.contact-info-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-info-val {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}
.contact-social {
  display: flex; gap: 0.8rem;
  margin-top: 1rem;
}
.social-btn {
  width: 42px; height: 42px;
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--gold-bright);
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212,160,23,0.3);
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212,160,23,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.contact-map iframe {
  width: 100%; height: 420px;
  border: none; display: block;
  filter: grayscale(0.3) invert(0.1);
}
.hours-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1rem;
}
.hours-row {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; color: var(--text-light);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hours-row .open { color: #4ade80; font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #020409;
  border-top: 1px solid rgba(212,160,23,0.15);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.footer-brand img { height: 65px; margin-bottom: 1.2rem; filter: drop-shadow(0 0 10px rgba(212,160,23,0.4)); }
.footer-brand p { font-size: 0.85rem; color: var(--gray); line-height: 1.8; margin-bottom: 1.5rem; }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.85rem; color: var(--gray);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-links a:hover { color: var(--gold-bright); }
.footer-links a::before {
  content: '›'; color: var(--gold); opacity: 0;
  transition: opacity var(--transition);
}
.footer-links a:hover::before { opacity: 1; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: #555; }
.footer-bottom a { color: var(--gold); }
.responsible-gaming {
  background: rgba(212,160,23,0.06);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  font-size: 0.72rem;
  color: var(--gray);
  display: flex; align-items: center; gap: 0.5rem;
}
.responsible-gaming i { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .games-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 600px; margin: 0 auto; }
  .anniversary-content { grid-template-columns: 1fr; }
  .dining-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .coming-countdown { grid-template-columns: repeat(4, 75px); }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; top: 70px; background: rgba(6,9,26,0.98); justify-content: flex-start; padding-top: 2rem; align-items: center; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .games-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: auto; aspect-ratio: 1; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .coming-countdown { grid-template-columns: repeat(2, 90px); }
  .countdown { grid-template-columns: repeat(4,1fr); }
  .about-accent-img { display: none; }
  .hero-title { font-size: clamp(2rem, 12vw, 3.5rem); }
  .dining-content { padding: 2.5rem 1.8rem; }
  .events-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .coming-countdown { grid-template-columns: repeat(2, 80px); }
  .footer-bottom { flex-direction: column; text-align: center; }
}
