:root {
  --bg-primary: #0b0b0c;
  --bg-secondary: #1a1410;
  --bg-surface: rgba(255, 255, 255, 0.04);
  --bg-surface-hover: rgba(255, 255, 255, 0.08);
  --accent-gold: #d4af37;
  --accent-amber: #f59e0b;
  --accent-champagne: #fff3c4;
  --text-primary: #fefce8;
  --text-secondary: #fde68a;
  --text-muted: rgba(254, 252, 232, 0.5);
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f59e0b 50%, #d4af37 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(245, 158, 11, 0.08) 100%);
  --gold-glow: 0 0 30px rgba(212, 175, 55, 0.3);
  --gold-glow-subtle: 0 0 15px rgba(212, 175, 55, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.5);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container-max: 1400px;
  --padding-desktop: 32px;
  --padding-tablet: 24px;
  --padding-mobile: 16px;
  --section-gap-desktop: 110px;
  --section-gap-tablet: 80px;
  --section-gap-mobile: 60px;
  --font-primary: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

a:hover {
  color: var(--accent-amber);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--padding-desktop);
  padding-right: var(--padding-desktop);
  width: 100%;
}

section {
  padding-top: var(--section-gap-desktop);
  padding-bottom: var(--section-gap-desktop);
  position: relative;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 11, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: var(--transition-smooth);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.4;
}

.site-header.scrolled {
  background: rgba(11, 11, 12, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.logo:hover {
  color: var(--accent-champagne);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  border-radius: var(--radius-sm);
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--bg-primary);
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}

.nav-list a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition-smooth);
  letter-spacing: 0.3px;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: var(--transition-smooth);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.nav-list a:hover {
  color: var(--accent-gold);
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 60%;
}

.nav-list a.active {
  color: var(--accent-gold);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: var(--gold-glow-subtle);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
  color: var(--bg-primary);
  filter: brightness(1.1);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 12, 0.97);
  backdrop-filter: blur(30px);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-nav-overlay.open {
  display: flex;
  opacity: 1;
}

.mobile-nav-overlay a {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  padding: 12px 20px;
}

.mobile-nav-overlay a:hover {
  color: var(--accent-gold);
}

/* ========== HERO SECTION ========== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(26, 20, 16, 0.9) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(26, 20, 16, 0.9) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

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

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1.5s; }
.particle:nth-child(3) { left: 45%; top: 40%; animation-delay: 3s; }
.particle:nth-child(4) { left: 65%; top: 70%; animation-delay: 4.5s; }
.particle:nth-child(5) { left: 80%; top: 30%; animation-delay: 6s; }
.particle:nth-child(6) { left: 90%; top: 55%; animation-delay: 2s; }
.particle:nth-child(7) { left: 15%; top: 80%; animation-delay: 5s; }
.particle:nth-child(8) { left: 55%; top: 15%; animation-delay: 7s; }

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent-gold);
  margin-bottom: 28px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-title .gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold-gradient);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: var(--gold-glow-subtle);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
  color: var(--bg-primary);
  filter: brightness(1.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(212, 175, 55, 0.35);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.08);
  color: var(--accent-gold);
  box-shadow: var(--gold-glow-subtle);
}

.hero-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 600px;
  text-align: center;
  line-height: 1.5;
}

.hero-disclaimer svg {
  flex-shrink: 0;
}

/* ========== GAME SECTION ========== */
.game-section {
  position: relative;
  z-index: 5;
  background: var(--bg-secondary);
}

.game-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.2;
}

.game-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--accent-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--accent-gold);
  opacity: 0.5;
}

.game-section-header h2 {
  margin-bottom: 12px;
}

.game-section-header p {
  max-width: 550px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.game-wrapper {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: var(--shadow-card), 0 0 60px rgba(212, 175, 55, 0.05);
  transition: var(--transition-smooth);
}

.game-wrapper:hover {
  transform: scale(1.005);
  box-shadow: var(--shadow-card-hover), 0 0 80px rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.25);
}

.game-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent 40%, transparent 60%, rgba(212, 175, 55, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.game-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  animation: ambientGlow 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.game-iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  z-index: 3;
}

.game-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.game-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  z-index: 3;
  position: relative;
}

.game-footer-bar .game-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.game-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.status-live {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.game-footer-bar .game-label {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.game-footer-bar .fullscreen-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  color: var(--accent-gold);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.game-footer-bar .fullscreen-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--accent-gold);
}

/* ========== STORY SECTION: Legend of 777 ========== */
.legend-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

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

.legend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.legend-content {
  position: relative;
}

.legend-number {
  font-family: var(--font-primary);
  font-size: 8rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.12;
  position: absolute;
  top: -40px;
  left: -10px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.legend-content h2 {
  margin-bottom: 20px;
  position: relative;
}

.legend-content p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.legend-content .story-quote {
  padding: 20px 24px;
  background: var(--gold-gradient-soft);
  border-left: 3px solid var(--accent-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 28px;
  font-style: italic;
  color: var(--accent-champagne);
  font-size: 1.05rem;
}

.legend-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legend-card {
  padding: 28px;
  background: var(--bg-surface);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.legend-card:hover {
  transform: translateY(-4px);
  background: var(--bg-surface-hover);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-card);
}

.legend-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--gold-gradient-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.legend-card h4 {
  margin-bottom: 8px;
  color: var(--accent-champagne);
}

.legend-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== FEATURES: Why Sevens Matter ========== */
.features-section {
  background: var(--bg-secondary);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
}

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

.features-header h2 {
  margin-bottom: 12px;
}

.features-header p {
  max-width: 550px;
  margin: 0 auto;
}

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

.feature-card {
  padding: 36px 28px;
  background: var(--bg-surface);
  border: 1px solid rgba(212, 175, 55, 0.06);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-6px);
  background: var(--bg-surface-hover);
  border-color: rgba(212, 175, 55, 0.15);
  box-shadow: var(--shadow-card);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--gold-gradient-soft);
  border-radius: var(--radius-md);
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--accent-champagne);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== FORTUNE STATS ========== */
.fortune-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

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

.fortune-header {
  text-align: center;
  margin-bottom: 64px;
}

.fortune-header h2 {
  margin-bottom: 12px;
}

.fortune-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.stat-card {
  padding: 36px 24px;
  background: var(--bg-surface);
  border: 1px solid rgba(212, 175, 55, 0.06);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.15);
  box-shadow: var(--shadow-card);
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.fortune-cta {
  text-align: center;
  padding: 48px;
  background: var(--gold-gradient-soft);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-lg);
}

.fortune-cta h3 {
  margin-bottom: 12px;
  color: var(--accent-champagne);
}

.fortune-cta p {
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== RESPONSIBLE GAMING BANNER ========== */
.responsible-banner {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.responsible-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.responsible-icon-area {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.responsible-shield {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gold-gradient-soft);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.responsible-content h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
  color: var(--accent-champagne);
}

.responsible-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

.responsible-link {
  margin-left: auto;
  flex-shrink: 0;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg-primary);
  padding-top: 80px;
  padding-bottom: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 600;
}

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

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

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

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

.footer-bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom .footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-bottom .footer-legal-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom .footer-legal-links a:hover {
  color: var(--accent-gold);
}

.footer-disclaimer {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(254, 252, 232, 0.3);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== PAGE HERO (for sub-pages) ========== */
.page-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
}

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

.page-hero .section-label {
  margin-bottom: 16px;
}

.page-hero h1 {
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ========== CONTENT PAGES ========== */
.content-section {
  background: var(--bg-primary);
}

.content-block {
  max-width: 900px;
  margin: 0 auto;
}

.content-block h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  margin-top: 48px;
  color: var(--accent-champagne);
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  margin-top: 32px;
  color: var(--text-primary);
}

.content-block p {
  margin-bottom: 16px;
}

.content-block ul, .content-block ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.content-block ul li, .content-block ol li {
  margin-bottom: 8px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.content-block .highlight-box {
  padding: 24px 28px;
  background: var(--gold-gradient-soft);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius-md);
  margin: 28px 0;
}

.content-block .highlight-box p {
  color: var(--accent-champagne);
  margin-bottom: 0;
}

/* ========== CONTACT FORM ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-card {
  padding: 28px;
  background: var(--bg-surface);
  border: 1px solid rgba(212, 175, 55, 0.06);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  border-color: rgba(212, 175, 55, 0.15);
  background: var(--bg-surface-hover);
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--gold-gradient-soft);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--accent-champagne);
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  background: var(--bg-surface);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* ========== ABOUT TIMELINE ========== */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 48px auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-gold), rgba(212, 175, 55, 0.1));
}

.timeline-item {
  position: relative;
  padding-left: 64px;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 16px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent-gold);
}

.timeline-item h4 {
  color: var(--accent-gold);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: 1px;
}

.timeline-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--accent-champagne);
}

.timeline-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ========== RESPONSIBLE GAMING PAGE ========== */
.rg-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
  max-width: 900px;
}

.rg-card {
  padding: 28px;
  background: var(--bg-surface);
  border: 1px solid rgba(212, 175, 55, 0.06);
  border-radius: var(--radius-md);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.rg-card:hover {
  border-color: rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
}

.rg-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gold-gradient-soft);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.rg-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--accent-champagne);
}

.rg-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ========== UTILITY ========== */
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}