/* =============================================
   PLAVONCOLLECTIVE - WILD WEST LUXURY SALOON
   Cinematic Social Casino Design System
   ============================================= */

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

:root {
  --bg-primary: #0f0e0c;
  --bg-secondary: #1c1917;
  --bg-card: #1a1814;
  --accent-brown: #78350f;
  --gold: #d4af37;
  --gold-light: #e8c547;
  --gold-dim: rgba(212, 175, 55, 0.25);
  --burnt-orange: #c2410c;
  --dust-beige: #f5e6c8;
  --deep-red: #7f1d1d;
  --text-primary: #f5e6c8;
  --text-secondary: #a89a84;
  --text-muted: #6b5e4f;
  --sidebar-width: 90px;
  --sidebar-expanded: 260px;
  --border-gold: rgba(212, 175, 55, 0.25);
  --border-subtle: rgba(212, 175, 55, 0.1);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.15);
  --shadow-fire: 0 0 60px rgba(194, 65, 12, 0.2);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --grain-opacity: 0.04;
}

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

body {
  font-family: 'Inter', 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(images/%23noise)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: var(--grain-opacity);
  pointer-events: none;
  z-index: 10000;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dust-beige);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-brown);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* =============================================
   SIDEBAR NAVIGATION
   ============================================= */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--sidebar-width);
  background: linear-gradient(180deg, #1a1610 0%, #0f0e0c 50%, #1a1610 100%);
  border-right: 1px solid var(--border-gold);
  z-index: 1000;
  transition: width 0.4s var(--transition-smooth);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sidebar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(212, 175, 55, 0.02) 2px,
      rgba(212, 175, 55, 0.02) 4px
    );
  pointer-events: none;
}

.sidebar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.sidebar:hover {
  width: var(--sidebar-expanded);
}

.sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px 0;
  position: relative;
  z-index: 1;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px 24px;
  border-bottom: 1px solid var(--border-gold);
  margin-bottom: 24px;
  min-height: 60px;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid var(--gold-dim);
  flex-shrink: 0;
  filter: sepia(0.3) brightness(0.9);
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s var(--transition-smooth) 0.1s;
}

.sidebar:hover .logo-text {
  opacity: 1;
  transform: translateX(0);
}

.sidebar-menu {
  list-style: none;
  flex: 1;
  padding: 0 12px;
}

.sidebar-menu li {
  margin-bottom: 4px;
}

.sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--text-secondary);
  transition: all 0.3s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.sidebar-menu li a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.sidebar-menu li a:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.sidebar-menu li a:hover::before {
  opacity: 1;
}

.sidebar-menu li.active a {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-dim);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1), inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.nav-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.sidebar-menu li a:hover .nav-icon,
.sidebar-menu li.active a .nav-icon {
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.5));
}

.nav-label {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s var(--transition-smooth) 0.05s;
}

.sidebar:hover .nav-label {
  opacity: 1;
  transform: translateX(0);
}

.sidebar-bottom {
  padding: 0 12px;
  border-top: 1px solid var(--border-gold);
  padding-top: 20px;
  margin-top: auto;
}

.social-icons {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text-muted);
  transition: all 0.3s;
  background: rgba(212, 175, 55, 0.05);
}

.social-link:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

.age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--deep-red), #991b1b);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}

.badge-text {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s var(--transition-smooth) 0.1s;
}

.sidebar:hover .badge-text {
  opacity: 1;
}

/* --- MOBILE HEADER --- */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(15, 14, 12, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  z-index: 1001;
  padding: 0 20px;
  align-items: center;
  gap: 12px;
}

.mobile-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--gold-dim);
  filter: sepia(0.3);
}

.mobile-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  flex: 1;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 10px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-overlay.active {
  opacity: 1;
}

/* =============================================
   MAIN CONTENT
   ============================================= */
.main-content {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  transition: margin-left 0.4s var(--transition-smooth);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(1.2) sepia(0.2);
  animation: heroZoom 30s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 80%, rgba(194, 65, 12, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, rgba(15, 14, 12, 0.3) 0%, rgba(15, 14, 12, 0.6) 60%, rgba(15, 14, 12, 0.95) 100%);
}

.hero-gradient-sky {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, 
    rgba(194, 65, 12, 0.15) 0%, 
    rgba(212, 175, 55, 0.08) 50%,
    transparent 100%);
  animation: skyPulse 8s ease-in-out infinite alternate;
}

@keyframes skyPulse {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

.fire-glow {
  position: absolute;
  bottom: -20%;
  left: 20%;
  width: 60%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(194, 65, 12, 0.15) 0%, transparent 70%);
  animation: fireFlicker 3s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes fireFlicker {
  0% { opacity: 0.5; transform: scale(1) translateY(0); }
  25% { opacity: 0.7; transform: scale(1.02) translateY(-5px); }
  50% { opacity: 0.4; transform: scale(0.98) translateY(2px); }
  75% { opacity: 0.8; transform: scale(1.03) translateY(-3px); }
  100% { opacity: 0.6; transform: scale(1) translateY(0); }
}

.light-rays {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: conic-gradient(from 200deg, transparent 0%, rgba(212, 175, 55, 0.06) 10%, transparent 20%, rgba(212, 175, 55, 0.04) 30%, transparent 40%);
  animation: rayRotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rayRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Dust particles */
.dust-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.dust-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(245, 230, 200, 0.4);
  border-radius: 50%;
  animation: dustFloat linear infinite;
}

@keyframes dustFloat {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) translateX(10px) scale(1);
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-10vh) translateX(-20px) scale(0.5);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: clamp(80px, 10vh, 140px) clamp(20px, 5vw, 60px);
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-dim);
  border-radius: 100px;
  font-size: clamp(12px, 1.5vw, 14px);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.title-line {
  display: block;
}

.title-accent {
  background: linear-gradient(135deg, var(--gold), var(--burnt-orange), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-disclaimer {
  font-size: 13px;
  color: var(--text-muted);
}

.badge-18-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--deep-red);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  color: white;
  vertical-align: middle;
  margin-right: 4px;
  font-family: 'Cinzel', serif;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLineGrow 2s ease-in-out infinite;
}

@keyframes scrollLineGrow {
  0%, 100% { transform: scaleY(0.5); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-family: 'Cinzel', serif;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before {
  opacity: 1;
}

.btn:active {
  transform: scale(0.97) translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #b8941f);
  color: #0f0e0c;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 40px rgba(212, 175, 55, 0.5);
  color: #0f0e0c;
  transform: translateY(-2px);
}

.btn-glow {
  animation: btnGlow 3s ease-in-out infinite alternate;
}

@keyframes btnGlow {
  0% { box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3); }
  100% { box-shadow: 0 4px 40px rgba(212, 175, 55, 0.5), 0 0 80px rgba(212, 175, 55, 0.15); }
}

.btn-secondary {
  background: transparent;
  color: var(--dust-beige);
  border: 1px solid var(--gold-dim);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 20px 44px;
  font-size: clamp(16px, 1.8vw, 18px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: clamp(60px, 10vh, 120px) 0;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.section-narrow {
  max-width: 860px;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vh, 70px);
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--dust-beige), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   FEATURED GAME SECTION
   ============================================= */
.featured-game {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}

.featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s var(--transition-smooth);
  box-shadow: var(--shadow-gold);
}

.featured-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.2), var(--shadow-fire);
  transform: translateY(-4px);
}

.featured-card-img {
  position: relative;
  overflow: hidden;
  min-height: 350px;
}

.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.1) sepia(0.1);
  transition: all 0.6s var(--transition-smooth);
}

.featured-card:hover .featured-card-img img {
  transform: scale(1.05);
  filter: brightness(0.8) saturate(1.2);
}

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 14, 12, 0.3), rgba(15, 14, 12, 0.6));
}

.featured-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(212, 175, 55, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f0e0c;
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
  opacity: 0;
  transition: all 0.4s var(--transition-smooth);
}

.featured-card:hover .featured-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.featured-card-content {
  padding: clamp(24px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.game-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tag {
  padding: 4px 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.featured-card-content h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.featured-card-content p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* =============================================
   FEATURES GRID
   ============================================= */
.why-play {
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(194, 65, 12, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
    var(--bg-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 3vw, 24px);
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px);
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  color: var(--gold);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.feature-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary), var(--bg-primary));
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
}

.step-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.step-number {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: 8px;
}

.step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold);
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

.step-connector {
  width: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  background: 
    radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.03), transparent 60%),
    var(--bg-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(16px, 3vw, 24px);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 36px);
  transition: all 0.4s var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-card > p {
  color: var(--text-secondary);
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  padding-left: 16px;
  border-left: 2px solid var(--gold-dim);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-dim);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.2);
}

.testimonial-author strong {
  display: block;
  color: var(--dust-beige);
  font-family: 'Cinzel', serif;
  font-size: 14px;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  position: relative;
  padding: clamp(80px, 12vh, 160px) 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) sepia(0.3) saturate(1.3);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center, rgba(194, 65, 12, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(15, 14, 12, 0.7), rgba(15, 14, 12, 0.8));
}

.dust-particles-cta {
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--dust-beige), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-desc {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  margin-bottom: 32px;
}

.cta-legal {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

/* =============================================
   NOTICE SECTION
   ============================================= */
.notice-section {
  padding: clamp(40px, 6vh, 60px) 0;
}

.notice-box {
  background: linear-gradient(135deg, rgba(127, 29, 29, 0.15), rgba(120, 53, 15, 0.1));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  text-align: center;
}

.notice-box h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 16px;
  color: var(--gold);
}

.notice-box p {
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 14px;
  line-height: 1.7;
}

.notice-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.badge-responsible {
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-dim);
  border-radius: 100px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  font-family: 'Cinzel', serif;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: linear-gradient(180deg, var(--bg-secondary), #0a0908);
  border-top: 1px solid var(--border-gold);
  padding: clamp(40px, 6vh, 80px) 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 4vw, 60px);
  padding-bottom: clamp(30px, 4vh, 50px);
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--gold-dim);
  filter: sepia(0.3);
}

.footer-brand h4 {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 2px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
}

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

.footer-col h5 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  padding: 4px 0;
  transition: all 0.3s;
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-disclaimer {
  padding: clamp(24px, 3vh, 36px) 0;
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-disclaimer p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

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

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

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

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

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text-muted);
  transition: all 0.3s;
  background: rgba(212, 175, 55, 0.05);
}

.footer-social a:hover {
  color: var(--gold);
  background: rgba(212, 175, 55, 0.15);
}

/* =============================================
   PAGE HERO (INNER PAGES)
   ============================================= */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-sm {
  min-height: 35vh;
}

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

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.1) sepia(0.2);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center, rgba(194, 65, 12, 0.15), transparent 60%),
    linear-gradient(180deg, rgba(15, 14, 12, 0.4) 0%, rgba(15, 14, 12, 0.9) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: clamp(100px, 15vh, 160px) clamp(20px, 5vw, 60px) clamp(40px, 6vh, 80px);
}

.page-hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--dust-beige), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-content p {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

/* =============================================
   GAME PAGE
   ============================================= */
.game-page-section {
  padding: clamp(80px, 10vh, 120px) 0 clamp(40px, 6vh, 80px);
}

.game-page-header {
  margin-bottom: clamp(30px, 4vh, 50px);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.back-link:hover {
  color: var(--gold);
  transform: translateX(-4px);
}

.game-page-header h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--dust-beige), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.game-page-subtitle {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

/* Game frame */
.game-frame-wrapper {
  margin-bottom: clamp(30px, 5vh, 60px);
}

.game-frame-border {
  position: relative;
  background: linear-gradient(135deg, #2a1f0e, #1a140a, #2a1f0e);
  border: 3px solid var(--gold-dim);
  border-radius: 20px;
  padding: clamp(8px, 1.5vw, 16px);
  box-shadow: 
    0 0 40px rgba(212, 175, 55, 0.15),
    inset 0 0 40px rgba(0, 0, 0, 0.5);
  transition: all 0.5s var(--transition-smooth);
}

.game-frame-border:hover {
  border-color: var(--gold);
  box-shadow: 
    0 0 60px rgba(212, 175, 55, 0.25),
    0 0 120px rgba(212, 175, 55, 0.1),
    inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.game-frame-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3px solid var(--gold);
  z-index: 2;
}

.game-frame-corner.tl { top: -3px; left: -3px; border-right: 0; border-bottom: 0; border-radius: 4px 0 0 0; }
.game-frame-corner.tr { top: -3px; right: -3px; border-left: 0; border-bottom: 0; border-radius: 0 4px 0 0; }
.game-frame-corner.bl { bottom: -3px; left: -3px; border-right: 0; border-top: 0; border-radius: 0 0 0 4px; }
.game-frame-corner.br { bottom: -3px; right: -3px; border-left: 0; border-top: 0; border-radius: 0 0 4px 0; }

.game-frame-inner {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.game-frame-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.game-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(16px, 3vw, 24px);
}

.game-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 36px);
}

.game-info-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 16px;
  color: var(--gold);
}

.game-info-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.game-features-list {
  list-style: none;
}

.game-features-list li {
  padding: 8px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 15px;
}

.game-features-list li:last-child {
  border-bottom: none;
}

/* =============================================
   GAMES SHOWCASE
   ============================================= */
.game-showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  transition: all 0.5s var(--transition-smooth);
}

.game-showcase-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.25);
  transform: translateY(-4px);
}

.game-showcase-img {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  cursor: pointer;
}

.game-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(1.1) sepia(0.1);
  transition: all 0.6s var(--transition-smooth);
}

.game-showcase-card:hover .game-showcase-img img {
  transform: scale(1.05);
  filter: brightness(0.8) saturate(1.2);
}

.game-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 14, 12, 0.2), rgba(15, 14, 12, 0.5));
}

.game-showcase-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(212, 175, 55, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f0e0c;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
  opacity: 0;
  transition: all 0.4s var(--transition-smooth);
}

.game-showcase-card:hover .game-showcase-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.game-showcase-info {
  padding: clamp(30px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.game-showcase-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--dust-beige), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.game-showcase-info p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.game-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.game-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-content {
  max-width: 860px;
  margin: 0 auto;
}

.about-text-block {
  margin-bottom: clamp(30px, 5vh, 50px);
}

.about-text-block h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 20px;
  color: var(--gold);
}

.about-text-block p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.about-image-block {
  margin-bottom: clamp(30px, 5vh, 50px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.about-image-block img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(0.8) saturate(1.1) sepia(0.15);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 3vw, 24px);
  margin-top: clamp(30px, 5vh, 50px);
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 36px);
  text-align: center;
  transition: all 0.4s var(--transition-smooth);
}

.value-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.value-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 16px;
  color: var(--gold);
}

.contact-info > p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
}

.contact-item strong {
  display: block;
  color: var(--dust-beige);
  font-family: 'Cinzel', serif;
  font-size: 14px;
  margin-bottom: 2px;
}

.contact-item p {
  color: var(--text-secondary);
  font-size: 14px;
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-gold);
}

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

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

.form-group label {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.5px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(15, 14, 12, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--dust-beige);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  transition: all 0.3s var(--transition-smooth);
  outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15), 0 0 40px rgba(212, 175, 55, 0.05);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--dust-beige);
}

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

/* =============================================
   FAQ PAGE
   ============================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--gold-dim);
}

.faq-item.active {
  border-color: var(--gold-dim);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--dust-beige);
  font-family: 'Cinzel', serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 600;
  text-align: left;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s var(--transition-smooth);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition-smooth), padding 0.4s var(--transition-smooth);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

.faq-answer a {
  color: var(--gold);
  text-decoration: underline;
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-content {
  padding: clamp(20px, 4vw, 40px) 0;
}

.legal-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--gold);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--dust-beige);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}

.legal-content ul {
  list-style: none;
  margin-bottom: 16px;
  padding-left: 0;
}

.legal-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--gold);
  font-weight: 700;
}

/* =============================================
   ANIMATIONS
   ============================================= */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--transition-smooth);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
    width: var(--sidebar-expanded);
  }
  
  .sidebar.mobile-open {
    transform: translateX(0);
  }
  
  .sidebar.mobile-open .logo-text,
  .sidebar.mobile-open .nav-label,
  .sidebar.mobile-open .badge-text {
    opacity: 1;
    transform: translateX(0);
  }
  
  .mobile-header {
    display: flex;
  }
  
  .mobile-overlay.active {
    display: block;
  }
  
  .main-content {
    margin-left: 0;
    padding-top: 64px;
  }
  
  .featured-card {
    grid-template-columns: 1fr;
  }
  
  .featured-card-img {
    min-height: 280px;
  }
  
  .game-showcase-card {
    grid-template-columns: 1fr;
  }
  
  .game-showcase-img {
    min-height: 300px;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .step-connector {
    display: none;
  }
  
  .steps-grid {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 60px 20px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    flex-direction: column;
  }
  
  .step-card {
    max-width: 100%;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
  
  .game-features {
    grid-template-columns: 1fr;
  }
  
  .game-info-grid {
    grid-template-columns: 1fr;
  }
  
  .page-hero {
    min-height: 40vh;
  }
  
  .about-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .btn-lg {
    padding: 16px 32px;
  }
  
  .scroll-indicator {
    display: none;
  }
}

/* =============================================
   CURSOR GLOW (Desktop only)
   ============================================= */
@media (hover: hover) and (pointer: fine) {
  .cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    will-change: left, top;
  }
}

/* Print styles */
@media print {
  .sidebar, .mobile-header, .dust-particles, .fire-glow, .light-rays, .cursor-glow {
    display: none !important;
  }
  .main-content {
    margin-left: 0 !important;
  }
}