/* ========================================
   1. CSS VARIABLES
   ======================================== */
:root {
  /* Base Colors */
  --deep-sand-black: #0C0A08;
  --desert-night: #1A1510;
  --stone-surface: #2A221A;
  --stone-mid: #3A3228;
  --stone-light: #4A4238;

  /* Accent Colors */
  --pharaoh-gold: #D4AF37;
  --sand-glow: #E6C068;
  --ancient-blue: #1E3A5F;
  --gold-light: #F0D878;
  --gold-dark: #B8941E;

  /* Text Colors */
  --text-primary: #F5E9D6;
  --text-secondary: #CBB89D;
  --text-dim: #8A7B6A;

  /* Gradients */
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F0D878 50%, #D4AF37 100%);
  --gold-gradient-hover: linear-gradient(135deg, #E6C068 0%, #F5E09A 50%, #E6C068 100%);
  --dark-gradient: linear-gradient(180deg, #0C0A08 0%, #1A1510 100%);
  --stone-gradient: linear-gradient(180deg, rgba(42,34,26,0.95) 0%, rgba(26,21,16,0.98) 100%);

  /* Layout */
  --container-max: 1400px;
  --container-padding: 24px;
  --section-spacing: 100px;
  --border-radius: 16px;
  --border-radius-sm: 12px;
  --border-radius-lg: 20px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.15);
  --shadow-gold-intense: 0 0 40px rgba(212, 175, 55, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-elevated: 0 16px 48px rgba(0, 0, 0, 0.5);
}

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

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

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--deep-sand-black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

a:hover {
  color: var(--sand-glow);
}

ul, ol {
  list-style: none;
}

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

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

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   3. LAYOUT
   ======================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

.section {
  padding: var(--section-spacing) 0;
  position: relative;
}

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

.section-header h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ========================================
   4. COMPONENTS
   ======================================== */

/* --- Header / Navbar --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(12,10,8,0.97) 0%, rgba(26,21,16,0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--pharaoh-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-icon {
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-normal);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-normal);
  border-radius: 1px;
}

.nav-links a:hover {
  color: var(--pharaoh-gold);
}

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

.nav-links a.active {
  color: var(--pharaoh-gold);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--deep-sand-black);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-intense);
  color: var(--deep-sand-black);
}

.btn-outline {
  background: transparent;
  color: var(--pharaoh-gold);
  border: 2px solid var(--pharaoh-gold);
}

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

.btn-lg {
  padding: 18px 48px;
  font-size: 1.1rem;
  border-radius: var(--border-radius);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--pharaoh-gold);
  transition: all var(--transition-normal);
  border-radius: 1px;
}

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

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

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

/* --- Mobile Nav --- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--stone-gradient);
  border-left: 1px solid rgba(212, 175, 55, 0.15);
  z-index: 1050;
  padding: 100px 32px 32px;
  transition: right var(--transition-slow);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  display: block;
  color: var(--text-secondary);
  font-size: 1.1rem;
  padding: 16px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  transition: all var(--transition-normal);
}

.mobile-nav a:hover {
  color: var(--pharaoh-gold);
  padding-left: 8px;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1040;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(30, 58, 95, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
    linear-gradient(180deg, var(--deep-sand-black) 0%, var(--desert-night) 50%, var(--deep-sand-black) 100%);
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.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.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--pharaoh-gold);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--pharaoh-gold) 50%, var(--text-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 32px;
  color: var(--text-secondary);
}

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

.hero-disclaimer {
  background: rgba(42, 34, 26, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius-sm);
  padding: 16px 24px;
  max-width: 600px;
  margin: 0 auto;
}

.hero-disclaimer p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.hero-disclaimer strong {
  color: var(--pharaoh-gold);
}

/* --- Dust Particles --- */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--pharaoh-gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) translateX(50px);
  }
}

/* --- Game Section --- */
.game-section {
  background: var(--desert-night);
  position: relative;
}

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

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

.game-wrapper {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.2),
    0 0 40px rgba(212, 175, 55, 0.1),
    var(--shadow-elevated);
  background: var(--deep-sand-black);
}

.game-wrapper::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), transparent, rgba(212, 175, 55, 0.3));
  border-radius: calc(var(--border-radius-lg) + 2px);
  z-index: -1;
}

.game-iframe-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.game-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--border-radius-lg);
}

.game-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: rgba(42, 34, 26, 0.6);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.game-title-bar h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
}

.game-badge {
  padding: 4px 12px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--pharaoh-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* --- Features Section --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: linear-gradient(180deg, rgba(42, 34, 26, 0.6) 0%, rgba(26, 21, 16, 0.8) 100%);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition-normal);
  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: opacity var(--transition-normal);
}

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

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h4 {
  margin-bottom: 12px;
  color: var(--pharaoh-gold);
}

.feature-card p {
  font-size: 0.95rem;
}

/* --- Story Section --- */
.story-section {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
    var(--deep-sand-black);
}

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

.story-content h2 {
  margin-bottom: 20px;
}

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

.story-visual {
  position: relative;
}

.story-card {
  background: linear-gradient(135deg, rgba(42, 34, 26, 0.8) 0%, rgba(26, 21, 16, 0.9) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(212, 175, 55, 0.05), transparent, rgba(212, 175, 55, 0.05), transparent);
  animation: rotate-glow 8s linear infinite;
}

@keyframes rotate-glow {
  100% { transform: rotate(360deg); }
}

.story-card-inner {
  position: relative;
  z-index: 1;
}

.story-symbol {
  font-size: 5rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.story-card h3 {
  color: var(--pharaoh-gold);
  margin-bottom: 12px;
}

/* --- How to Play Section --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step-card {
  background: linear-gradient(180deg, rgba(42, 34, 26, 0.5) 0%, rgba(26, 21, 16, 0.7) 100%);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  counter-increment: step;
  transition: all var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.2);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gold-gradient);
  color: var(--deep-sand-black);
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 20px;
}

.step-card h4 {
  margin-bottom: 10px;
  color: var(--text-primary);
}

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

.testimonial-card {
  background: linear-gradient(180deg, rgba(42, 34, 26, 0.5) 0%, rgba(26, 21, 16, 0.7) 100%);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: all var(--transition-normal);
}

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

.testimonial-stars {
  color: var(--pharaoh-gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-sand-black);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* --- FAQ Section --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: rgba(42, 34, 26, 0.3);
  transition: all var(--transition-normal);
}

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-normal);
}

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

.faq-icon {
  font-size: 1.3rem;
  color: var(--pharaoh-gold);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  margin-left: 16px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

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

.faq-answer-inner p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    var(--desert-night);
  text-align: center;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 {
  margin-bottom: 16px;
}

.cta-box p {
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* --- Footer --- */
.footer {
  background: var(--deep-sand-black);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 60px 0 0;
}

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

.footer-brand p {
  margin-top: 12px;
  font-size: 0.9rem;
  max-width: 320px;
}

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

.footer-col a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: all var(--transition-normal);
}

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

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #e74c3c;
  color: #e74c3c;
  font-weight: 800;
  font-size: 0.85rem;
}

/* --- Legal Disclaimer Bar --- */
.disclaimer-bar {
  background: rgba(42, 34, 26, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius-sm);
  padding: 20px 28px;
  margin-top: 20px;
}

.disclaimer-bar p {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
}

/* --- Cards (for inner pages) --- */
.content-card {
  background: linear-gradient(180deg, rgba(42, 34, 26, 0.6) 0%, rgba(26, 21, 16, 0.8) 100%);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius);
  padding: 48px;
}

.content-card h2 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.content-card h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--pharaoh-gold);
  font-size: 1.2rem;
}

.content-card p {
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.content-card ul {
  margin-bottom: 14px;
  padding-left: 20px;
}

.content-card ul li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.content-card ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--pharaoh-gold);
  font-size: 0.6rem;
  top: 5px;
}

/* --- Page Hero --- */
.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
    var(--desert-night);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--text-dim);
}

.breadcrumb span {
  color: var(--text-dim);
}

.breadcrumb .current {
  color: var(--pharaoh-gold);
}

/* --- Contact Form --- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(42, 34, 26, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  transition: all var(--transition-normal);
}

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

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

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

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

/* --- Responsible Gaming --- */
.rg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.rg-card {
  background: linear-gradient(180deg, rgba(42, 34, 26, 0.5) 0%, rgba(26, 21, 16, 0.7) 100%);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: all var(--transition-normal);
}

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

.rg-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.rg-card h4 {
  color: var(--pharaoh-gold);
  margin-bottom: 10px;
}

/* ========================================
   5. UTILITIES
   ======================================== */
.text-center { text-align: center; }
.text-gold { color: var(--pharaoh-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; }

/* ========================================
   6. MEDIA QUERIES
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-spacing: 70px;
  }

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

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

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

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .game-wrapper {
    max-width: 95%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-spacing: 50px;
    --container-padding: 16px;
  }

  .header-inner {
    height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    min-height: 70vh;
    padding: 50px 0;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero-description {
    font-size: 1rem;
  }

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

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .game-wrapper {
    max-width: 100%;
    border-radius: var(--border-radius-sm);
  }

  .game-iframe-container {
    border-radius: var(--border-radius-sm);
  }

  .game-iframe-container iframe {
    border-radius: var(--border-radius-sm);
  }

  .game-title-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .content-card {
    padding: 28px 20px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .btn-lg {
    padding: 15px 32px;
    font-size: 1rem;
  }

  .story-card {
    padding: 32px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .game-iframe-container {
    padding-top: 75%;
  }
}