/* ============================================
   午夜爵士风 - 壹号娱乐 全局样式
   Midnight Jazz Theme - Global Stylesheet
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

/* CSS Variables */
:root {
  --midnight-blue: #191970;
  --champagne-gold: #f7e7ce;
  --velvet-red: #8b0000;
  --smoke-gray: #696969;
  --dark-bg: #0f0f3c;
  --deep-dark: #0a0a2e;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --green-table: #005028;
  --white: #ffffff;
  --text-light: #e0d8cc;
  --text-muted: #a09888;
  --font-heading: 'Playfair Display', 'Noto Sans SC', serif;
  --font-body: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  --border-radius: 12px;
  --card-radius: 15px;
  --transition: all 0.3s ease;
  --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
  --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--deep-dark);
  color: var(--text-light);
  line-height: 1.8;
  overflow-x: hidden;
  background-image: url('../images/velvet-texture.webp');
  background-repeat: repeat;
}

a {
  color: var(--champagne-gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-light);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--champagne-gold);
  line-height: 1.3;
  margin-bottom: 0.8em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }

p {
  margin-bottom: 1em;
  color: var(--text-light);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   Header & Navigation
   ============================================ */
.site-header {
  background: linear-gradient(180deg, var(--deep-dark) 0%, var(--midnight-blue) 100%);
  border-bottom: 2px solid var(--gold);
  padding: 0;
  position: relative;
  z-index: 100;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.site-logo img {
  height: 50px;
  width: auto;
}

.header-cta .btn-register {
  background: linear-gradient(135deg, var(--velvet-red), #b30000);
  color: var(--champagne-gold);
  padding: 10px 28px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

.header-cta .btn-register:hover {
  background: linear-gradient(135deg, #b30000, var(--velvet-red));
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* Main Navigation */
.main-nav {
  background: rgba(10, 10, 46, 0.95);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  flex-wrap: wrap;
}

.nav-list li {
  position: relative;
}

.nav-list li a {
  display: block;
  padding: 14px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}

.nav-list li a:hover,
.nav-list li a.active {
  color: var(--champagne-gold);
  border-bottom-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.nav-list li a::before {
  content: '♦';
  margin-right: 6px;
  color: var(--gold);
  font-size: 0.7em;
  opacity: 0;
  transition: var(--transition);
}

.nav-list li a:hover::before {
  opacity: 1;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold);
  color: var(--champagne-gold);
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2rem;
}

/* ============================================
   Hero Section (Module 1)
   ============================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-bg.webp') center/cover no-repeat;
  z-index: 1;
}

.hero-video-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,10,46,0.6) 0%, rgba(25,25,112,0.8) 100%);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

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

@keyframes particleFall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
}

.hero-logo {
  max-width: 300px;
  margin: 0 auto 30px;
  opacity: 0.9;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--champagne-gold);
  text-shadow: 0 0 30px rgba(247, 231, 206, 0.3);
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.btn-cta-neon {
  display: inline-block;
  padding: 16px 48px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--champagne-gold);
  background: transparent;
  border: 2px solid var(--velvet-red);
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  animation: neonPulse 2s ease-in-out infinite;
}

.btn-cta-neon:hover {
  background: var(--velvet-red);
  box-shadow: 0 0 30px rgba(139, 0, 0, 0.6), 0 0 60px rgba(139, 0, 0, 0.3);
  transform: scale(1.05);
}

@keyframes neonPulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.4), 0 0 20px rgba(139, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.6), 0 0 40px rgba(139, 0, 0, 0.3), 0 0 60px rgba(139, 0, 0, 0.1);
  }
}

/* ============================================
   Section Common Styles
   ============================================ */
.section-block {
  padding: 80px 0;
  position: relative;
}

.section-block:nth-child(even) {
  background: rgba(25, 25, 112, 0.15);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Three-Column Layout
   ============================================ */
.three-col-layout {
  display: flex;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.col-sidebar {
  flex: 0 0 220px;
  min-width: 0;
}

.col-main {
  flex: 1;
  min-width: 0;
}

.sidebar-widget {
  background: rgba(25, 25, 112, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 25px;
}

.sidebar-widget h4 {
  font-size: 1rem;
  color: var(--gold);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.sidebar-widget ul {
  list-style: none;
}

.sidebar-widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-widget ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.sidebar-widget ul li a:hover {
  color: var(--champagne-gold);
  padding-left: 5px;
}

/* ============================================
   Module 2: Brand Timeline
   ============================================ */
.timeline-section {
  background: linear-gradient(180deg, var(--deep-dark) 0%, rgba(25,25,112,0.3) 100%);
  padding: 80px 0;
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateY(-50%);
}

.timeline-nodes {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.timeline-node {
  text-align: center;
  flex: 1;
  padding: 0 10px;
  cursor: pointer;
  transition: var(--transition);
}

.timeline-node:hover {
  transform: translateY(-5px);
}

.timeline-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--midnight-blue);
  border: 3px solid var(--gold);
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--champagne-gold);
  font-size: 0.8rem;
  transition: var(--transition);
}

.timeline-node:hover .timeline-dot {
  background: var(--gold);
  color: var(--midnight-blue);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.timeline-text {
  background: rgba(25, 25, 112, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius);
  padding: 20px;
  margin-top: 15px;
  text-align: left;
  transition: var(--transition);
}

.timeline-text h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.timeline-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   Module 3: Baccarat Trend
   ============================================ */
.baccarat-section {
  background: linear-gradient(135deg, var(--green-table) 0%, #003018 100%);
  padding: 80px 0;
}

.baccarat-grid {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.baccarat-table-img {
  flex: 1;
  min-width: 280px;
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 2px solid var(--gold);
}

.baccarat-trend-chart {
  flex: 1.5;
  min-width: 300px;
}

.baccarat-trend-chart img {
  border-radius: var(--card-radius);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.baccarat-info {
  margin-top: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--gold);
}

/* ============================================
   Module 4: PG Game Cards
   ============================================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.game-card {
  perspective: 1000px;
  height: 380px;
  cursor: pointer;
}

.game-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.game-card:hover .game-card-inner {
  transform: rotateY(180deg);
}

.game-card-front,
.game-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 2px solid var(--gold);
}

.game-card-front {
  background: var(--midnight-blue);
}

.game-card-front img {
  width: 100%;
  height: 70%;
  object-fit: cover;
}

.game-card-front .card-title {
  padding: 12px 15px;
  text-align: center;
}

.game-card-front .card-title h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.game-card-front .card-title .stars {
  color: var(--gold);
  font-size: 0.85rem;
}

.game-card-back {
  background: linear-gradient(135deg, var(--midnight-blue), var(--deep-dark));
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  text-align: center;
}

.game-card-back h4 {
  margin-bottom: 15px;
}

.game-card-back .rtp-info {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}

.game-card-back p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.btn-play {
  display: inline-block;
  padding: 10px 30px;
  background: linear-gradient(135deg, var(--velvet-red), #b30000);
  color: var(--champagne-gold);
  border-radius: 25px;
  font-weight: 700;
  border: 1px solid var(--gold);
  transition: var(--transition);
}

.btn-play:hover {
  box-shadow: var(--shadow-gold);
  transform: scale(1.05);
}

/* ============================================
   Module 5: VIP Levels
   ============================================ */
.vip-section {
  background: linear-gradient(180deg, var(--deep-dark), rgba(25,25,112,0.4));
}

.vip-stairs {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.vip-step {
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  padding: 15px;
  border-radius: var(--card-radius);
  background: rgba(25, 25, 112, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.15);
  flex: 1;
  min-width: 150px;
  max-width: 200px;
}

.vip-step:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.vip-step img {
  width: 80px;
  height: 80px;
  margin: 0 auto 10px;
  object-fit: contain;
}

.vip-step h4 {
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.vip-step .vip-bonus {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}

.vip-details {
  background: rgba(25, 25, 112, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius);
  padding: 30px;
  display: none;
}

.vip-details.active {
  display: block;
}

.vip-details table {
  width: 100%;
  border-collapse: collapse;
}

.vip-details th,
.vip-details td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.vip-details th {
  color: var(--gold);
  font-weight: 700;
}

/* ============================================
   Module 6: Articles
   ============================================ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.article-card {
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: grayscale(60%);
  transition: var(--transition);
}

.article-card:hover img {
  filter: grayscale(20%);
}

.article-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  gap: 15px;
  font-size: 0.8rem;
  color: var(--smoke-gray);
  margin-bottom: 10px;
}

.article-card-body h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.article-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
}

.article-read-more {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 10px;
  display: inline-block;
}

/* ============================================
   Module 7: Registration
   ============================================ */
.register-section {
  background: url('../images/register-bg.webp') center/cover no-repeat;
  position: relative;
  padding: 80px 0;
}

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 46, 0.85);
}

.register-content {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.register-info {
  flex: 1;
  min-width: 280px;
}

.register-info h2 {
  font-size: 2rem;
  text-shadow: 0 0 20px rgba(139, 0, 0, 0.5), 0 0 40px rgba(139, 0, 0, 0.3);
  animation: neonText 2s ease-in-out infinite;
}

@keyframes neonText {
  0%, 100% { text-shadow: 0 0 10px rgba(139, 0, 0, 0.5), 0 0 20px rgba(139, 0, 0, 0.3); }
  50% { text-shadow: 0 0 20px rgba(139, 0, 0, 0.8), 0 0 40px rgba(139, 0, 0, 0.5), 0 0 60px rgba(139, 0, 0, 0.2); }
}

.register-form-wrap {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
}

.register-form {
  background: rgba(25, 25, 112, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--card-radius);
  padding: 35px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--champagne-gold);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--velvet-red), #b30000);
  color: var(--champagne-gold);
  border: 2px solid var(--gold);
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.btn-submit:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* ============================================
   Module 8: Responsible Gambling
   ============================================ */
.responsible-section {
  background: rgba(25, 25, 112, 0.2);
}

.responsible-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.responsible-card {
  background: rgba(25, 25, 112, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius);
  padding: 25px;
  text-align: center;
  transition: var(--transition);
}

.responsible-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.responsible-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  object-fit: contain;
}

.responsible-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.age-badge {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
}

/* ============================================
   Module 9: License
   ============================================ */
.license-section {
  text-align: center;
  background: linear-gradient(180deg, var(--deep-dark), rgba(25,25,112,0.2));
}

.license-badge {
  max-width: 200px;
  margin: 0 auto 25px;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.license-info {
  max-width: 700px;
  margin: 0 auto;
}

.license-number {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 15px;
}

/* ============================================
   Module 10: FAQ Vinyl Records
   ============================================ */
.faq-section {
  background: linear-gradient(180deg, rgba(25,25,112,0.3), var(--deep-dark));
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  cursor: pointer;
  background: rgba(25, 25, 112, 0.3);
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(25, 25, 112, 0.5);
}

.faq-vinyl-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transition: transform 0.6s ease;
}

.faq-item.active .faq-vinyl-icon {
  transform: rotate(360deg);
}

.faq-question h4 {
  flex: 1;
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--champagne-gold);
}

.faq-toggle {
  color: var(--gold);
  font-size: 1.2rem;
  transition: var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(10, 10, 46, 0.5);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 20px;
}

.faq-answer-inner p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: linear-gradient(180deg, var(--deep-dark), #050520);
  border-top: 2px solid var(--gold);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--champagne-gold);
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover {
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.footer-social a img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.footer-payment {
  text-align: center;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-payment img {
  max-width: 500px;
  margin: 0 auto;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--smoke-gray);
  margin-bottom: 5px;
}

.footer-age-badge {
  width: 50px;
  height: 50px;
  margin: 15px auto 0;
}

/* ============================================
   Breadcrumb
   ============================================ */
.breadcrumb {
  padding: 15px 0;
  font-size: 0.85rem;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  gap: 5px;
}

.breadcrumb-list li::after {
  content: '>';
  margin-left: 8px;
  color: var(--smoke-gray);
}

.breadcrumb-list li:last-child::after {
  content: '';
}

.breadcrumb-list li a {
  color: var(--text-muted);
}

.breadcrumb-list li:last-child a {
  color: var(--champagne-gold);
}

/* ============================================
   Inner Page Styles
   ============================================ */
.inner-hero {
  background: linear-gradient(135deg, var(--midnight-blue), var(--deep-dark));
  padding: 60px 0 40px;
  text-align: center;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.inner-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.inner-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.inner-content {
  padding: 50px 0;
}

.content-article {
  background: rgba(25, 25, 112, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--card-radius);
  padding: 40px;
  margin-bottom: 30px;
}

.content-article h2,
.content-article h3 {
  margin-top: 30px;
}

.content-article img {
  border-radius: var(--border-radius);
  margin: 20px 0;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.content-article table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.content-article table th,
.content-article table td {
  padding: 12px 15px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  text-align: left;
}

.content-article table th {
  background: rgba(25, 25, 112, 0.5);
  color: var(--gold);
}

.content-article table tr:nth-child(even) {
  background: rgba(25, 25, 112, 0.2);
}

.game-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  padding: 15px;
  background: rgba(25, 25, 112, 0.3);
  border-radius: var(--border-radius);
}

.game-rating .stars {
  color: var(--gold);
  font-size: 1.3rem;
}

.game-rating .rating-text {
  color: var(--text-muted);
}

/* Image gallery in inner pages */
.img-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: 25px 0;
}

.img-gallery img {
  border-radius: var(--border-radius);
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition);
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.img-gallery img:hover {
  border-color: var(--gold);
  transform: scale(1.02);
}

/* ============================================
   APP Download Page
   ============================================ */
.app-hero {
  background: linear-gradient(135deg, var(--midnight-blue), var(--velvet-red));
  padding: 80px 0;
  text-align: center;
}

.app-download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.app-platform {
  background: rgba(25, 25, 112, 0.4);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--card-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}

.app-platform:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.app-platform img {
  max-width: 200px;
  margin: 0 auto 20px;
}

.app-steps {
  counter-reset: step;
  max-width: 700px;
  margin: 40px auto;
}

.app-step {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(25, 25, 112, 0.2);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--gold);
}

.app-step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--midnight-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.app-screenshots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 40px auto;
}

.app-screenshots img {
  border-radius: var(--card-radius);
  border: 2px solid rgba(212, 175, 55, 0.2);
  transition: var(--transition);
}

.app-screenshots img:hover {
  border-color: var(--gold);
  transform: scale(1.03);
}

/* ============================================
   Jammer Block (invisible SEO)
   ============================================ */
.jammer-block {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .three-col-layout {
    flex-direction: column;
  }
  
  .col-sidebar {
    flex: none;
    display: flex;
    gap: 15px;
    overflow-x: auto;
  }
  
  .sidebar-widget {
    min-width: 200px;
    flex-shrink: 0;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline-nodes {
    flex-direction: column;
    gap: 20px;
  }
  
  .timeline-line {
    display: none;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
  }
  
  .nav-list.active {
    display: flex;
  }
  
  .nav-list li a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }
  
  .hero-section {
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }
  
  .game-card {
    height: 350px;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .register-content {
    flex-direction: column;
  }
  
  .register-form-wrap {
    max-width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .app-download-grid {
    grid-template-columns: 1fr;
  }
  
  .app-screenshots {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .vip-stairs {
    flex-direction: column;
    align-items: center;
  }
  
  .vip-step {
    max-width: 100%;
    width: 100%;
  }
  
  .baccarat-grid {
    flex-direction: column;
  }
  
  .inner-hero h1 {
    font-size: 1.8rem;
  }
  
  .content-article {
    padding: 20px;
  }
  
  .section-block {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .header-top {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-title {
    font-size: 1.6rem;
  }
  
  .btn-cta-neon {
    padding: 12px 30px;
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
}

/* Preload optimization hints */
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .particle {
    animation: none;
  }
  
  .game-card:hover .game-card-inner {
    transform: none;
  }
}
