:root {
  --gold: #d4af37;
  --gold-light: #f4d976;
  --gold-dark: #9c7c1c;
  --emerald: #0a3d2e;
  --emerald-light: #1a6b52;
  --black: #0a0a0a;
  --black-2: #141414;
  --black-3: #1c1c1c;
  --white: #fdfcf7;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(212,175,55,0.18);
}

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

html { scroll-behavior:smooth; }

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

body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,0.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(10,61,46,0.25), transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
  z-index: -2;
  animation: bgShift 20s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.1) rotate(2deg); }
}

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

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

/* ===== LOADER ===== */
.loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-ring {
  width: 100px; height: 100px;
  border: 3px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--gold-light);
  border-radius: 50%;
  margin: 0 auto 30px;
  animation: spin 1.2s linear infinite;
  box-shadow: 0 0 30px rgba(212,175,55,0.4);
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-logo {
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  letter-spacing: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulseGlow 2s infinite;
}
.loader-tag {
  font-size: 0.8rem;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-top: 8px;
}
@keyframes pulseGlow {
  50% { filter: drop-shadow(0 0 20px var(--gold)); }
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  mix-blend-mode: screen;
}

/* ===== PARTICLES ===== */
.particles { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  animation: float 15s linear infinite;
  box-shadow: 0 0 6px var(--gold);
}
@keyframes float {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) translateX(50px); opacity: 0; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(10,10,10,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s ease;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10,10,10,0.85);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1400px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.logo {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem; font-weight: 900;
  letter-spacing: 3px;
  color: var(--white);
}
.logo span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-menu a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-menu a::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: all 0.3s;
  transform: translateX(-50%);
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-cta {
  padding: 10px 22px !important;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 30px;
  color: var(--black) !important;
  font-weight: 700 !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  box-shadow: 0 0 20px var(--gold);
  color: var(--black) !important;
}
.nav-tools { display: flex; gap: 16px; align-items: center; }
.sound-toggle {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--gold);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s;
}
.sound-toggle:hover { box-shadow: 0 0 15px var(--gold); }
.live-clock {
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 1px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px; height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

/* ===== JACKPOT TICKER ===== */
.jackpot-ticker {
  position: fixed;
  top: 80px;
  left: 0; right: 0;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.1), transparent);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 8px 0;
  z-index: 998;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  animation: tickerScroll 30s linear infinite;
}
.jackpot-ticker span {
  padding: 0 30px;
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 2px;
}
.ticker-amount {
  color: var(--gold) !important;
  font-weight: 700;
  text-shadow: 0 0 10px var(--gold);
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.roulette-wheel {
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 3px solid rgba(212,175,55,0.15);
  animation: spin 30s linear infinite;
  opacity: 0.4;
}
.roulette-inner {
  position: absolute; inset: 40px;
  border-radius: 50%;
  border: 2px solid rgba(212,175,55,0.2);
  background:
    conic-gradient(from 0deg,
      var(--black) 0deg, var(--gold) 30deg,
      var(--black) 60deg, var(--emerald) 90deg,
      var(--black) 120deg, var(--gold) 150deg,
      var(--black) 180deg, var(--emerald) 210deg,
      var(--black) 240deg, var(--gold) 270deg,
      var(--black) 300deg, var(--emerald) 330deg,
      var(--black) 360deg);
  opacity: 0.3;
}
.roulette-center {
  position: absolute;
  top: 50%; left: 50%;
  width: 80px; height: 80px;
  background: radial-gradient(circle, var(--gold), var(--gold-dark));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 40px var(--gold);
}
.floating-chip {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 30%, var(--gold-dark));
  box-shadow: 0 0 30px rgba(212,175,55,0.6), inset 0 0 20px rgba(0,0,0,0.3);
  animation: floatChip 8s ease-in-out infinite;
}
.floating-chip::after {
  content: '✦';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  color: var(--black);
}
.chip-1 { top: 15%; left: 10%; animation-delay: 0s; }
.chip-2 { top: 25%; right: 12%; animation-delay: 2s; background: radial-gradient(circle, var(--emerald-light) 30%, var(--emerald)); }
.chip-3 { bottom: 20%; left: 15%; animation-delay: 4s; background: radial-gradient(circle, #b91c1c 30%, #7f1d1d); }
.chip-4 { bottom: 25%; right: 10%; animation-delay: 6s; }
@keyframes floatChip {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 6px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: 2px;
}
.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 650px;
  margin: 0 auto 40px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  display: inline-block;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(212,175,55,0.4);
}
.btn-gold:hover {
  box-shadow: 0 0 40px var(--gold);
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 30px var(--gold);
}
.btn-ghost {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--white);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold);
}
.btn-large { padding: 18px 50px; font-size: 0.95rem; }

.scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 2px solid var(--gold);
  border-radius: 14px;
  z-index: 2;
}
.scroll-indicator span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll 1.8s infinite;
}
@keyframes scroll {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 22px; opacity: 0.3; }
}

/* ===== SECTIONS ===== */
section { padding: 100px 0; position: relative; }
.section-eyebrow {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 50px;
  line-height: 1.2;
}
.subsection-title {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  margin: 60px 0 30px;
  letter-spacing: 1px;
}
.dark-section {
  background: linear-gradient(135deg, rgba(10,61,46,0.15), transparent);
}

/* ===== STATS ===== */
.stats-section { padding: 80px 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}
.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
}
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(212,175,55,0.2);
  border-color: var(--gold);
}
.stat-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(212,175,55,0.5);
}
.stat-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== FEATURED ===== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 40px;
}
.featured-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.5s;
}
.featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(212,175,55,0.2);
  border-color: var(--gold);
}
.featured-img {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.featured-card:hover .featured-img img { transform: scale(1.1); }
.featured-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  padding: 6px 16px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 700;
  border-radius: 30px;
}
.featured-content { padding: 32px; }
.featured-content h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--gold-light);
}
.featured-content p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.featured-list {
  list-style: none;
  margin-bottom: 28px;
}
.featured-list li {
  padding: 8px 0;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(212,175,55,0.1);
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
}
.featured-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ===== GAMES ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.game-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 36px 20px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.game-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(212,175,55,0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.game-card:hover::before { opacity: 1; }
.game-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212,175,55,0.3);
}
.game-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 14px;
  filter: drop-shadow(0 0 10px var(--gold));
}
.game-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.game-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 180px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
  background:
    radial-gradient(ellipse at top, rgba(212,175,55,0.08), transparent 60%);
}
.page-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.page-subtitle {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===== RESORT DETAIL ===== */
.resort-detail { padding: 80px 0; }
.resort-header {
  display: flex; gap: 30px;
  align-items: flex-end;
  margin-bottom: 50px;
}
.resort-num {
  font-family: 'Orbitron', monospace;
  font-size: 4.5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.resort-hero-img {
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 50px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.resort-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.resort-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.info-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 36px;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
}
.info-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212,175,55,0.15);
}
.info-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.info-card p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}
.info-meta div {
  padding: 8px 0;
  border-top: 1px solid rgba(212,175,55,0.1);
  font-size: 0.9rem;
}
.info-meta strong { color: var(--gold); margin-right: 8px; }

.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.feature-block {
  padding: 28px;
  background: var(--glass);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  transition: all 0.3s;
}
.feature-block:hover {
  background: rgba(212,175,55,0.08);
  transform: translateX(8px);
}
.feature-block h4 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.feature-block p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
}

.map-container {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  height: 450px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; filter: invert(0.9) hue-rotate(180deg); }

/* ===== VIP PRICING ===== */
.countdown-section { text-align: center; }
.countdown {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.count-box {
  background: var(--glass);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 24px 32px;
  min-width: 110px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(212,175,55,0.2);
}
.count-box span {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: 700;
  text-shadow: 0 0 15px var(--gold);
}
.count-box label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.price-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.5s;
  position: relative;
}
.price-card.featured {
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(212,175,55,0.25);
}
.price-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.2);
}
.price-card.featured:hover { transform: scale(1.05) translateY(-12px); }
.price-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(192,192,192,0.15);
  color: silver;
  border: 1px solid silver;
  border-radius: 30px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.price-badge.gold {
  background: rgba(212,175,55,0.15);
  color: var(--gold);
  border-color: var(--gold);
}
.price-badge.platinum {
  background: rgba(229,228,226,0.15);
  color: #e5e4e2;
  border-color: #e5e4e2;
}
.price-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.price {
  font-family: 'Orbitron', monospace;
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 700;
}
.price span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.price-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}
.price-card ul li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(212,175,55,0.08);
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.perk {
  text-align: center;
  padding: 32px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  transition: all 0.3s;
}
.perk:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}
.perk-icon { font-size: 2.5rem; margin-bottom: 14px; }
.perk h4 { font-family: 'Cinzel', serif; color: var(--gold); margin-bottom: 8px; }
.perk p { color: rgba(255,255,255,0.7); font-size: 0.88rem; }

/* ===== GALLERY MASONRY ===== */
.masonry {
  columns: 3;
  column-gap: 20px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--glass-border);
}
.masonry-item img {
  width: 100%;
  transition: transform 0.6s;
}
.masonry-item:hover img { transform: scale(1.1); }
.masonry-item.tall img { min-height: 400px; object-fit: cover; }
.masonry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay span {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
}

.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 60px var(--gold);
}
.lightbox-close {
  position: absolute;
  top: 30px; right: 40px;
  font-size: 3rem;
  color: var(--gold);
  cursor: pointer;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-grid.reverse .about-img { order: -1; }
.about-grid p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.about-img {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.about-img img { width: 100%; height: 450px; object-fit: cover; }

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 50px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px; top: 6px;
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--gold);
}
.timeline-year {
  font-family: 'Orbitron', monospace;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.timeline-content h4 {
  font-family: 'Cinzel', serif;
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.timeline-content p { color: rgba(255,255,255,0.7); }

/* ===== CONTACT ===== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.contact-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.1), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
}
.contact-card:hover::before { opacity: 1; }
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(212,175,55,0.15);
}
.contact-avatar {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: inline-block;
  width: 70px; height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  animation: pulseAvatar 2.5s infinite;
}
@keyframes pulseAvatar {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.5); }
  50% { box-shadow: 0 0 0 15px rgba(212,175,55,0); }
}
.contact-card h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.contact-card p {
  margin-bottom: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

/* ===== BOOKING ===== */
.booking-form {
  max-width: 900px;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 50px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; margin-bottom: 24px; }
.form-group label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15), 0 0 20px rgba(212,175,55,0.3);
}
.form-group select option { background: var(--black); }

/* ===== LEGAL PAGES ===== */
.legal-section { padding: 60px 0 100px; }
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 60px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.legal-updated {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}
.legal-content h2 {
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  font-size: 1.5rem;
  margin: 40px 0 16px;
  letter-spacing: 1px;
}
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 1.15rem;
  margin: 28px 0 12px;
  letter-spacing: 0.5px;
}
.legal-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  font-size: 0.98rem;
  line-height: 1.75;
}
.legal-content ul {
  list-style: none;
  margin: 12px 0 20px;
  padding-left: 0;
}
.legal-content ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(212,175,55,0.06);
}
.legal-content ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold);
}
.legal-content ul li strong { color: var(--gold-light); }
.legal-link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(212,175,55,0.4);
  transition: all 0.3s;
}
.legal-link:hover {
  color: var(--gold-light);
  text-decoration-color: var(--gold);
}
.legal-contact {
  background: rgba(212,175,55,0.06);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 4px;
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.9;
}
.legal-contact strong { color: var(--gold); }

/* Responsible Gaming Tools */
.rg-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.rg-tool {
  background: rgba(212,175,55,0.05);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
}
.rg-tool:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.rg-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.rg-tool h4 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.rg-tool p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
}

/* Cookie Table */
.cookie-table-wrap {
  overflow-x: auto;
  margin: 20px 0 24px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.cookie-table thead {
  background: rgba(212,175,55,0.1);
}
.cookie-table th {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  text-align: left;
  padding: 14px 18px;
  letter-spacing: 1px;
  font-weight: 600;
  border-bottom: 1px solid var(--glass-border);
}
.cookie-table td {
  padding: 14px 18px;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(212,175,55,0.08);
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tbody tr:hover {
  background: rgba(212,175,55,0.04);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #0a0a0a, #000);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 30px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 20px var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.footer-logo span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-col h4 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.05rem;
  letter-spacing: 2px;
}
.footer-col p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  padding: 6px 0;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.3s;
  position: relative;
  padding-left: 0;
}
.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.1);
  padding-top: 30px;
  text-align: center;
}
.disclaimer {
  color: var(--gold-light);
  font-size: 0.85rem;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}

/* ===== FLOATING SUPPORT ===== */
.floating-support {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  animation: bounce 2.5s infinite;
  text-decoration: none;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.floating-support:hover {
  box-shadow: 0 0 30px #25d366;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 70px; right: -100%;
    width: 80%; max-width: 320px;
    height: calc(100vh - 70px);
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 40px 30px;
    gap: 20px;
    transition: right 0.4s;
    border-left: 1px solid var(--glass-border);
  }
  .nav-menu.active { right: 0; }
  .live-clock { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid.reverse .about-img { order: 0; }
  .masonry { columns: 2; }
  .resort-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 30px; }
  .price-card.featured { transform: scale(1); }
  .price-card.featured:hover { transform: translateY(-12px); }
  .cursor-glow { display: none; }
  .roulette-wheel { width: 400px; height: 400px; }
  .legal-content { padding: 40px 28px; }
}

@media (max-width: 568px) {
  section { padding: 70px 0; }
  .hero { padding-top: 120px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-img { height: 240px; }
  .masonry { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .countdown { gap: 12px; }
  .count-box { padding: 16px 18px; min-width: 80px; }
  .count-box span { font-size: 1.8rem; }
  .roulette-wheel { width: 300px; height: 300px; }
  .legal-content { padding: 30px 20px; }
  .legal-content h2 { font-size: 1.3rem; }
}