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

:root {
  --burgundy: #5c1a2a;
  --burgundy-deep: #3d0f1b;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dark: #9a7a2e;
  --black: #0a0a0a;
  --midnight: #1a1a2e;
  --ivory: #f5f0e8;
  --walnut: #3e2723;
  --amber: #d4a017;
  --cream: #fdf8f0;
  --smoke: rgba(255, 255, 255, 0.03);
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-light);
}

/* Projector Flicker Background */
.projector-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.02) 0%, transparent 60%);
  animation: projectorFlicker 8s infinite alternate;
}

@keyframes projectorFlicker {
  0%, 100% { opacity: 0.3; }
  25% { opacity: 0.5; }
  50% { opacity: 0.2; }
  75% { opacity: 0.6; }
}

/* Header */
.cinema-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.9) 100%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-left: 1rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ivory);
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-menu a:hover {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

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

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* Hero Section - Grand Theater */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-curtain-left,
.hero-curtain-right {
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
}

.hero-curtain-left {
  left: 0;
  background: linear-gradient(90deg, var(--burgundy-deep) 0%, rgba(92, 26, 42, 0.3) 70%, transparent 100%);
}

.hero-curtain-right {
  right: 0;
  background: linear-gradient(-90deg, var(--burgundy-deep) 0%, rgba(92, 26, 42, 0.3) 70%, transparent 100%);
}

.hero-spotlight {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center top, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
  animation: spotlightSweep 12s infinite ease-in-out;
}

@keyframes spotlightSweep {
  0%, 100% { transform: translateX(-50%) rotate(-3deg); }
  50% { transform: translateX(-50%) rotate(3deg); }
}

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

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--ivory);
  opacity: 0.85;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
  color: var(--black);
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Film Strip Divider */
.film-strip-divider {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0;
  overflow: hidden;
}

.film-strip-divider::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px,
    var(--gold) 20px,
    transparent 20px,
    transparent 30px
  );
  opacity: 0.4;
}

/* Reel Machine Section */
.reel-section {
  position: relative;
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--black) 0%, var(--burgundy-deep) 50%, var(--black) 100%);
}

.reel-container {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(145deg, #1a0f12 0%, #2a1520 50%, #1a0f12 100%);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 3rem 2rem;
  position: relative;
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.1), inset 0 0 60px rgba(0,0,0,0.5);
}

.reel-container::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.reel-title {
  text-align: center;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.reel-machine {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.reel-column {
  width: 120px;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(26, 15, 18, 0.9) 50%, rgba(0,0,0,0.8) 100%);
  border: 1px solid rgba(201, 168, 76, 0.4);
  position: relative;
}

.reel-column::before,
.reel-column::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 5;
  pointer-events: none;
}

.reel-column::before {
  top: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.9), transparent);
}

.reel-column::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.9), transparent);
}

.reel-strip {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reel-symbol {
  width: 120px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.reel-symbol svg {
  width: 60px;
  height: 60px;
  fill: var(--gold);
  filter: drop-shadow(0 0 5px rgba(201, 168, 76, 0.3));
}

.win-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: translateY(-50%);
  opacity: 0;
  z-index: 10;
  box-shadow: 0 0 10px var(--gold);
}

.win-line.active {
  opacity: 1;
  animation: winPulse 0.5s infinite alternate;
}

@keyframes winPulse {
  0% { box-shadow: 0 0 5px var(--gold); }
  100% { box-shadow: 0 0 20px var(--gold), 0 0 40px rgba(201, 168, 76, 0.5); }
}

/* Reel Controls */
.reel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.spin-btn {
  padding: 1rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
  color: var(--black);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.spin-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(201, 168, 76, 0.5);
}

.spin-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.auto-spin-btn {
  padding: 0.8rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}

.auto-spin-btn:hover,
.auto-spin-btn.active {
  background: rgba(201, 168, 76, 0.15);
}

/* Score Panel */
.score-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.score-item {
  text-align: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.score-item label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.score-item .value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--ivory);
  font-weight: 700;
}

/* Combinations Panel */
.combos-panel {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.combos-panel h3 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  text-align: center;
}

.combo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}

.combo-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(201, 168, 76, 0.05);
  border-radius: 6px;
  font-size: 0.85rem;
}

.combo-item .multiplier {
  color: var(--gold);
  font-weight: 700;
}

/* History Log */
.history-panel {
  margin-top: 1.5rem;
  max-height: 150px;
  overflow-y: auto;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.history-panel h4 {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.history-entry {
  font-size: 0.8rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(245, 240, 232, 0.7);
}

.history-entry.win {
  color: var(--gold);
}

/* Statistics Section */
.stats-section {
  padding: 6rem 2rem;
  background: var(--black);
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto 0;
}

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

.stat-card {
  background: linear-gradient(135deg, rgba(92, 26, 42, 0.3) 0%, rgba(26, 26, 46, 0.5) 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.15);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stat-card .stat-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  fill: var(--gold);
}

.stat-card .stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

/* Premiere Timeline */
.timeline-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--black) 0%, var(--burgundy-deep) 100%);
}

.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.timeline-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
  transition: border-color 0.3s;
}

.timeline-step:hover {
  border-color: var(--gold);
}

.timeline-step .step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.timeline-step .step-icon {
  width: 50px;
  height: 50px;
  margin: 1rem auto;
  fill: var(--gold);
}

.timeline-step h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.timeline-step p {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.5;
}

/* Director Choice Features */
.features-section {
  padding: 6rem 2rem;
  background: var(--black);
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: linear-gradient(145deg, rgba(62, 39, 35, 0.4) 0%, rgba(26, 26, 46, 0.6) 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.4);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
}

.feature-card .feature-icon {
  width: 45px;
  height: 45px;
  fill: var(--gold);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.feature-card p {
  font-size: 0.9rem;
  opacity: 0.75;
  line-height: 1.6;
}

/* Live Red Carpet Feed */
.feed-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--burgundy-deep) 0%, var(--black) 100%);
}

.feed-container {
  max-width: 800px;
  margin: 0 auto;
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  animation: feedSlide 0.5s ease-out;
}

@keyframes feedSlide {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.feed-item .feed-icon {
  width: 35px;
  height: 35px;
  fill: var(--gold);
  flex-shrink: 0;
}

.feed-item .feed-text {
  flex: 1;
  font-size: 0.9rem;
}

.feed-item .feed-time {
  font-size: 0.75rem;
  opacity: 0.5;
  white-space: nowrap;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 2rem;
  background: var(--black);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: rgba(26, 26, 46, 0.3);
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.8;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 300px;
}

/* VIP Banner */
.vip-banner {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vip-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.vip-banner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
}

.vip-banner p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  position: relative;
}

.vip-banner .hero-cta {
  position: relative;
}

/* Footer */
.cinema-footer {
  background: linear-gradient(180deg, var(--black) 0%, #050505 100%);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.7);
  transition: color 0.3s;
}

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

.footer-col p {
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.6;
}

.responsible-gaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.responsible-gaming-links a {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--ivory);
  transition: all 0.3s;
}

.responsible-gaming-links a:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.6);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes goldGlow {
  0%, 100% { box-shadow: 0 0 5px rgba(201, 168, 76, 0.3); }
  50% { box-shadow: 0 0 20px rgba(201, 168, 76, 0.6); }
}

.spinning .reel-strip {
  animation: reelSpin 0.1s linear infinite;
}

@keyframes reelSpin {
  from { transform: translateY(0); }
  to { transform: translateY(-100px); }
}

/* Win Animation */
.win-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

.win-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.win-content {
  text-align: center;
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.win-content h2 {
  font-size: 3rem;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.5);
  margin-bottom: 1rem;
}

.win-content p {
  font-size: 1.2rem;
  color: var(--ivory);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--burgundy);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Page Content (for sub-pages) */
.page-content {
  padding: 120px 2rem 4rem;
  max-width: 900px;
  margin: 0 auto;
  min-height: 70vh;
}

.page-content h1 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 2rem;
}

.page-content h2 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.page-content p {
  margin-bottom: 1rem;
  opacity: 0.85;
  line-height: 1.8;
}

.page-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.page-content ul li {
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    padding: 0.8rem 1rem;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-curtain-left,
  .hero-curtain-right {
    width: 5%;
  }

  .reel-machine {
    gap: 6px;
    padding: 1rem;
  }

  .reel-column {
    width: 75px;
    height: 225px;
  }

  .reel-symbol {
    width: 75px;
    height: 75px;
    font-size: 1.8rem;
  }

  .reel-symbol svg {
    width: 40px;
    height: 40px;
  }

  .score-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .spin-btn {
    width: 100%;
    padding: 1rem;
  }

  .reel-controls {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    overflow-x: auto;
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
  }

  .stat-card {
    min-width: 220px;
    flex-shrink: 0;
  }

  .timeline-container {
    grid-template-columns: 1fr;
  }

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

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

  .logo {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .reel-container {
    padding: 1.5rem 1rem;
  }

  .combo-list {
    grid-template-columns: 1fr;
  }
}
