:root {
  --bg-primary: #0c0c0f;
  --bg-secondary: #17171c;
  --bg-card: #1f1f25;
  --gold-start: #c9a84e;
  --gold-end: #f5d487;
  --gold: #d4af5a;
  --red-start: #b91c1c;
  --red-end: #ef4444;
  --blue-start: #2563eb;
  --blue-end: #60a5fa;
  --silver-start: #9ca3af;
  --silver-end: #e5e7eb;
  --text-primary: #f0ede6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font-heading: 'Oswald', 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --container-max: 1280px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== FILM GRAIN OVERLAY ===== */
.film-grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  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/images/images/%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: grainShift 0.5s steps(10) infinite;
}

@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -2%); }
  20% { transform: translate(2%, 1%); }
  30% { transform: translate(-1%, 3%); }
  40% { transform: translate(3%, -1%); }
  50% { transform: translate(-3%, 2%); }
  60% { transform: translate(1%, -3%); }
  70% { transform: translate(-2%, 1%); }
  80% { transform: translate(2%, -2%); }
  90% { transform: translate(-1%, -1%); }
}

/* ===== VIGNETTE ===== */
.vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.5) 100%);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(12, 12, 15, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 78, 0.08);
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
}

.header.scrolled {
  background: rgba(12, 12, 15, 0.92);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

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

.header-reflection {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 78, 0.06), transparent);
  animation: headerReflection 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes headerReflection {
  0% { left: -60%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

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

.logo-icon {
  font-size: 28px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-primary);
}

.logo-accent {
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-desktop {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
  transition: width var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  text-shadow: 0 0 20px rgba(201, 168, 78, 0.3);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-nav {
  display: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-lg);
  padding: 12px 28px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: #0c0c0f;
  box-shadow: 0 4px 20px rgba(201, 168, 78, 0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 78, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(201, 168, 78, 0.4);
  color: var(--gold);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 78, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 78, 0.15);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: var(--radius-xl);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 12px;
}

.btn-icon {
  font-size: 14px;
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 10;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

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

.mobile-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

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

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  pointer-events: none;
}

.mobile-menu.open {
  pointer-events: all;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.mobile-menu.open .mobile-menu-overlay {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background: var(--bg-secondary);
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.mobile-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-secondary);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition-fast);
}

.mobile-close:hover {
  color: var(--text-primary);
  border-color: var(--gold);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--gold);
  padding-left: 12px;
}

.btn-mobile-cta {
  margin-top: auto;
  text-align: center;
}

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

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

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

.hero-bg-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 12, 15, 0.7) 0%,
    rgba(12, 12, 15, 0.5) 40%,
    rgba(12, 12, 15, 0.75) 70%,
    var(--bg-primary) 100%
  );
}

.hero-beams {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.beam {
  position: absolute;
  width: 2px;
  height: 120%;
  background: linear-gradient(180deg, transparent, rgba(201, 168, 78, 0.08), transparent);
  top: -10%;
}

.beam-1 {
  left: 20%;
  transform: rotate(-15deg);
  animation: beamFloat 8s ease-in-out infinite;
}

.beam-2 {
  left: 55%;
  transform: rotate(10deg);
  animation: beamFloat 10s ease-in-out infinite 2s;
  opacity: 0.7;
}

.beam-3 {
  left: 80%;
  transform: rotate(-8deg);
  animation: beamFloat 12s ease-in-out infinite 4s;
  opacity: 0.5;
}

@keyframes beamFloat {
  0%, 100% { opacity: 0.3; transform: rotate(-15deg) translateX(0); }
  50% { opacity: 0.7; transform: rotate(-15deg) translateX(30px); }
}

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

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(201, 168, 78, 0.4);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201, 168, 78, 0.1);
  border: 1px solid rgba(201, 168, 78, 0.2);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--red-end);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-legal {
  padding: 12px 20px;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid rgba(201, 168, 78, 0.3);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.hero-legal p {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

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

@keyframes scrollPulse {
  0%, 100% { height: 40px; opacity: 1; }
  50% { height: 20px; opacity: 0.4; }
}

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

/* ===== TRENDING STRIP ===== */
.trending-strip {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: var(--bg-secondary);
  overflow: hidden;
}

.strip-scroll {
  display: flex;
  gap: 24px;
  animation: stripScroll 25s linear infinite;
}

@keyframes stripScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.strip-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  flex-shrink: 0;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.label-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.label-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.text-gold {
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== NOW PLAYING ===== */
.now-playing {
  padding: 100px 0 120px;
}

.game-theater {
  position: relative;
}

.theater-frame {
  position: relative;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 78, 0.12);
}

.theater-screen {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.theater-screen iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.game-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--bg-primary);
  z-index: 5;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.game-loading.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-reel {
  width: 48px;
  height: 48px;
}

.reel-spinner {
  width: 100%;
  height: 100%;
  border: 3px solid rgba(201, 168, 78, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.game-loading p {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.theater-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--bg-card);
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 16px;
}

.theater-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.theater-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

.theater-actions {
  display: flex;
  gap: 12px;
}

.theater-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200px;
  background: radial-gradient(ellipse, rgba(201, 168, 78, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 0 120px;
  background: var(--bg-secondary);
}

.features-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
  animation-delay: calc(var(--delay) * 0.15s);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 78, 0.2);
}

.card-poster {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-poster-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.card-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-poster-cinematic {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}

.card-poster-bonus {
  background: linear-gradient(135deg, #2d1b00, #44290a, #6b3e10);
}

.card-poster-story {
  background: linear-gradient(135deg, #0d1b2a, #1b2838, #1a3a4a);
}

.card-poster-instant {
  background: linear-gradient(135deg, #1c0a2e, #2a1040, #3d1a5c);
}

.feature-card:hover .card-poster-bg {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(31, 31, 37, 0.95) 100%);
}

.card-rating {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: rgba(0,0,0,0.6);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.card-content {
  padding: 24px;
}

.card-genre {
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-meta {
  display: flex;
  gap: 8px;
}

.meta-tag {
  padding: 4px 12px;
  font-size: 11px;
  background: rgba(201, 168, 78, 0.08);
  border: 1px solid rgba(201, 168, 78, 0.15);
  border-radius: 100px;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.card-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80px;
  background: radial-gradient(ellipse, rgba(201, 168, 78, 0.08), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  pointer-events: none;
}

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

/* ===== COMING SOON ===== */
.coming-soon {
  padding: 100px 0 120px;
}

.coming-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.coming-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.coming-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 78, 0.2);
}

.coming-poster {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.coming-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.coming-card:hover .coming-poster-img {
  transform: scale(1.08);
}

.coming-poster-heist {
  background: linear-gradient(135deg, #1a1a1a, #2c1810, #4a2c17);
}

.coming-poster-galaxy {
  background: linear-gradient(135deg, #0a0e1a, #0f1b3d, #162055);
}

.coming-poster-noir {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a, #2a2a2a);
}

.coming-info {
  padding: 24px;
  background: var(--bg-card);
}

.coming-badge {
  display: inline-block;
  padding: 4px 12px;
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 2px;
  background: rgba(185, 28, 28, 0.2);
  color: var(--red-end);
  border-radius: 100px;
  margin-bottom: 8px;
}

.coming-info h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.coming-info p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 60px 0 120px;
  background: var(--bg-secondary);
}

.cta-card {
  position: relative;
  padding: 80px 40px;
  text-align: center;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 78, 0.12);
}

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

.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.15;
  filter: blur(2px);
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(201, 168, 78, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(31,31,37,0.85) 0%, rgba(31,31,37,0.95) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

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

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: rgba(201, 168, 78, 0.1);
  border-color: rgba(201, 168, 78, 0.3);
  color: var(--gold);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.footer-legal p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-legal p:first-child {
  margin-bottom: 8px;
}

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

.footer-badges span {
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 2px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: var(--text-muted);
}

.badge-18 {
  border-color: rgba(185, 28, 28, 0.4) !important;
  color: var(--red-end) !important;
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 168, 78, 0.12);
  padding: 40px;
  transform: translateY(20px);
  transition: transform var(--transition-smooth);
}

.modal.open .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.1);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
  color: #0c0c0f;
  border-radius: var(--radius-md);
}

.step-info h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.step-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.modal-video {
  max-width: 800px;
}

.trailer-player {
  margin-top: 8px;
}

.trailer-placeholder {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: linear-gradient(135deg, #0f0f14, #1a1a22);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trailer-placeholder-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
}

.play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 78, 0.2);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 24px;
  color: var(--gold);
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2;
}

.play-circle:hover {
  background: rgba(201, 168, 78, 0.3);
  transform: translate(-50%, -50%) scale(1.1);
}

.trailer-placeholder p {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--text-primary);
  z-index: 2;
}

.trailer-subtitle {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  z-index: 2;
}

/* ===== PAGE HERO WITH BACKGROUND IMAGE ===== */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}

.page-hero-with-image {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 12, 15, 0.75) 0%,
    rgba(12, 12, 15, 0.6) 50%,
    rgba(12, 12, 15, 0.9) 100%
  );
}

.page-hero-with-image .container {
  position: relative;
  z-index: 2;
}

/* ===== ABOUT PAGE IMAGES ===== */
.about-hero-image {
  margin-bottom: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 78, 0.12);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.about-featured-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 48px 0;
}

.about-image-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 78, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.about-grid-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--transition-slow);
}

.about-image-item:hover .about-grid-img {
  transform: scale(1.05);
}

.about-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(180deg, transparent, rgba(12, 12, 15, 0.9));
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== PAGE CONTENT (existing + enhanced) ===== */
.page-content {
  padding: 60px 0 100px;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

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

.page-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}

.page-content ul li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 8px;
}

.page-content a {
  color: var(--gold);
}

.page-content a:hover {
  text-decoration: underline;
}

.effective-date {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 32px;
}

/* ===== CONTACT PAGE ===== */
.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  margin-bottom: 8px;
}

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

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

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

.form-submit {
  width: 100%;
}

.form-success {
  display: none;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 78, 0.2);
  border-radius: var(--radius-md);
  text-align: center;
}

.form-success.visible {
  display: block;
}

.form-success p {
  color: var(--gold);
  font-size: 16px;
}

/* ===== RESPONSIBLE GAMING PAGE ===== */
.rg-banner {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 78, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 40px;
}

.rg-banner h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 8px;
}

.rg-banner p {
  color: var(--text-secondary);
}

.resource-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 16px;
}

.resource-card h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  margin-bottom: 8px;
}

.resource-card a {
  color: var(--gold);
}

/* ===== FADE IN ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .features-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .coming-row {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .contact-info {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .about-featured-img {
    height: 420px;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }

  .btn-nav {
    display: inline-flex;
  }

  .mobile-toggle {
    display: none;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 100px);
  }

  .page-hero-with-image {
    min-height: 400px;
  }

  .about-featured-img {
    height: 480px;
  }

  .about-grid-img {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .features-row {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 40px;
  }
}