/* ==========================================
   GoldenAura — Dark Luxury Social Casino
   ========================================== */

:root {
  --black: #07070d;
  --black-soft: #0d0d18;
  --black-surface: #111120;
  --gold: #D4AF37;
  --gold-dim: #a8882c;
  --gold-bright: #F0D080;
  --gold-pale: rgba(212, 175, 55, 0.12);
  --gold-glow: rgba(212, 175, 55, 0.08);
  --text-primary: #F5F0E8;
  --text-muted: #8A8070;
  --text-faint: #4A4540;
  --green-felt: #1A3D2B;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(7,7,13,0.95) 0%, transparent 100%);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.nav-badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Animated slot reel display */
.reel-display {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
  animation: reel-appear 1.2s ease-out;
}

@keyframes reel-appear {
  from { opacity: 0; transform: translateY(-40%) translateX(40px); }
  to { opacity: 1; transform: translateY(-50%) translateX(0); }
}

.reel-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: reel-spin 2.5s ease-in-out infinite;
}

.reel-col:nth-child(2) { animation-delay: 0.3s; }
.reel-col:nth-child(3) { animation-delay: 0.6s; }

@keyframes reel-spin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.reel-symbol {
  width: 72px;
  height: 72px;
  background: var(--black-soft);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  box-shadow: 0 0 20px rgba(212,175,55,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
}

.reel-symbol.s7 { color: var(--gold-bright); text-shadow: 0 0 12px rgba(240,208,128,0.5); }
.reel-symbol.sbar { font-size: 11px; font-weight: 900; letter-spacing: 0.05em; }
.reel-symbol.scherry { font-size: 28px; }
.reel-symbol.scoin { color: var(--gold-bright); font-size: 28px; }

/* Gold glow orbs */
.gold-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.orb1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  top: 20%; right: 10%;
  animation: orb-breathe 4s ease-in-out infinite;
}

.orb2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 70%);
  bottom: 20%; left: 30%;
  animation: orb-breathe 6s ease-in-out infinite 2s;
}

@keyframes orb-breathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}

/* Gold particles */
.particle-field { position: absolute; inset: 0; }

.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 6s ease-in-out infinite;
}

.p1 { top: 30%; right: 20%; animation-delay: 0s; }
.p2 { top: 60%; right: 35%; animation-delay: 1.2s; }
.p3 { top: 45%; right: 15%; animation-delay: 2.4s; }
.p4 { top: 70%; right: 25%; animation-delay: 3.6s; }
.p5 { top: 25%; right: 40%; animation-delay: 4.8s; }
.p6 { top: 55%; right: 10%; animation-delay: 1.8s; }

@keyframes particle-float {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  20% { opacity: 0.6; }
  80% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-60px) scale(0.5); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.eyebrow-line {
  flex: 0 0 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
}

.eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.title-gold { color: var(--gold); }
.title-aura { color: var(--text-primary); }

.hero-tagline {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.meta-item { text-align: center; }

.meta-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.meta-label {
  font-size: 11px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  margin-top: 4px;
  display: block;
}

.meta-divider {
  width: 1px;
  height: 32px;
  background: rgba(212,175,55,0.15);
}

.hero-legal {
  font-size: 11px;
  color: var(--text-faint);
  line-height: 1.5;
  max-width: 420px;
  border-top: 1px solid rgba(212,175,55,0.1);
  padding-top: 16px;
}

/* ─── SECTION SHARED ─── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

/* ─── GAMES SECTION ─── */
.games-section {
  padding: 120px 0;
  background: var(--black-soft);
  position: relative;
}

.games-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.2), transparent);
}

.games-header {
  text-align: center;
  margin-bottom: 72px;
}

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

.game-card {
  background: var(--black-surface);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(212,175,55,0.06);
}

.game-visual { height: 180px; overflow: hidden; position: relative; }
.game-info { padding: 28px 28px 32px; }

/* Slots art */
.art-slots { background: linear-gradient(135deg, #0d0806 0%, #1a1208 100%); height: 100%; display: flex; align-items: center; justify-content: center; }

.slot-reel-art {
  display: flex;
  gap: 8px;
  animation: slot-shake 3s ease-in-out infinite;
}

@keyframes slot-shake {
  0%, 90%, 100% { transform: rotate(0deg); }
  92% { transform: rotate(-2deg); }
  94% { transform: rotate(2deg); }
  96% { transform: rotate(-1deg); }
}

.sr-icon {
  width: 60px; height: 80px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

.sr-win {
  background: rgba(212,175,55,0.25);
  box-shadow: 0 0 20px rgba(212,175,55,0.3);
  color: var(--gold-bright);
}

/* Blackjack art */
.art-blackjack { background: linear-gradient(135deg, #081012 0%, #0d1a12 100%); height: 100%; display: flex; align-items: center; justify-content: center; }

.cards-art {
  display: flex;
  gap: -20px;
  position: relative;
}

.card {
  width: 56px; height: 72px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
}

.c-back {
  background: linear-gradient(135deg, var(--gold-dim), #8a6d1f);
  margin-right: -24px;
  z-index: 1;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.c-ace {
  background: var(--black-surface);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold-bright);
  z-index: 2;
  box-shadow: 4px 4px 12px rgba(0,0,0,0.5);
  animation: card-deal 2s ease-in-out infinite;
}

.c-king {
  background: var(--black-surface);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  margin-left: -24px;
  z-index: 1;
  box-shadow: 6px 6px 16px rgba(0,0,0,0.5);
}

@keyframes card-deal {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Roulette art */
.art-roulette { background: linear-gradient(135deg, #0a0810 0%, #120818 100%); height: 100%; display: flex; align-items: center; justify-content: center; }

.roulette-art { position: relative; }

.roulette-wheel {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 3px solid var(--gold-dim);
  position: relative;
  animation: wheel-spin 4s linear infinite;
  box-shadow: 0 0 30px rgba(212,175,55,0.15);
}

@keyframes wheel-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.r-mark {
  position: absolute;
  width: 20px; height: 20px;
  font-size: 8px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
}

.r0 { top: 2px; left: 50%; transform: translateX(-50%); color: #2d5a1e; }
.r32 { top: 50%; right: 2px; transform: translateY(-50%); }
.r15 { bottom: 2px; left: 50%; transform: translateX(-50%); }
.r19 { top: 50%; left: 2px; transform: translateY(-50%); }
.r4 { top: 20%; left: 15%; font-size: 7px; }
.r21 { top: 20%; right: 15%; font-size: 7px; }
.r2 { bottom: 20%; left: 15%; font-size: 7px; }
.r25 { bottom: 20%; right: 15%; font-size: 7px; }

.roulette-ball {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(212,175,55,0.8);
  animation: ball-bounce 1s ease-in-out infinite;
}

@keyframes ball-bounce {
  0%, 100% { top: -5px; }
  50% { top: -10px; }
}

.game-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.game-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.game-stat {
  border-top: 1px solid rgba(212,175,55,0.1);
  padding-top: 16px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 2px;
  display: block;
}

/* ─── FEATURES SECTION ─── */
.features-section { padding: 120px 0; }

.features-header {
  text-align: center;
  margin-bottom: 72px;
}

.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 20px;
  overflow: hidden;
}

.feature-item {
  padding: 40px 40px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(212,175,55,0.08);
  border-right: 1px solid rgba(212,175,55,0.08);
  transition: background 0.2s ease;
}

.feature-item:hover { background: var(--gold-pale); }

.fi-dark { background: var(--black-soft); }
.fi-gold { background: var(--black-surface); }

.fi-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fi-body { flex: 1; }

.fi-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.fi-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── PHILOSOPHY SECTION ─── */
.philosophy-section {
  padding: 100px 0;
  background: var(--black-soft);
  border-top: 1px solid rgba(212,175,55,0.08);
  border-bottom: 1px solid rgba(212,175,55,0.08);
}

.philosophy-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 48px;
}

.philosophy-ornament { margin-bottom: 32px; }

.philosophy-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--gold-bright);
  line-height: 1.5;
  margin-bottom: 28px;
}

.philosophy-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.philosophy-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.p-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 6px 14px;
  border-radius: 20px;
}

/* ─── CLOSING SECTION ─── */
.closing-section {
  padding: 120px 0 160px;
  position: relative;
  overflow: hidden;
}

.closing-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  text-align: center;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.coin-stack {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.coin {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(212,175,55,0.2);
}

.coin-b { transform: scale(1); z-index: 3; }
.coin-s { transform: translateX(-30px) scale(0.85); z-index: 2; margin-top: 8px; }
.coin-t { transform: translateX(-60px) scale(0.7); z-index: 1; margin-top: 16px; }

.coin::after {
  content: '$';
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--gold);
}

.closing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── FOOTER ─── */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid rgba(212,175,55,0.1);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-legal {
  font-size: 11px;
  color: var(--text-faint);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 16px;
}

.footer-copy { font-size: 11px; color: var(--text-faint); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 100px 32px 60px; }
  .reel-display { display: none; }
  .games-grid { grid-template-columns: 1fr; }
  .features-layout { grid-template-columns: 1fr; }
  .hero-meta { gap: 16px; }
}

@media (max-width: 600px) {
  .section-container { padding: 0 24px; }
  .closing-inner { padding: 0 24px; }
  .footer-inner { padding: 0 24px; }
  .feature-item { padding: 28px 24px; }
  .philosophy-inner { padding: 0 24px; }
}
