/* ============================================================
   JELLISNAPAREN.COM — RUSTIC WESTERN CASINO STYLESHEET
   ============================================================ */

/* ─── 1. CSS VARIABLES ─────────────────────────────────────── */
:root {
  /* Colors */
  --bg-primary:       #1a120b;
  --bg-secondary:     #261f17;
  --bg-card:          rgba(38, 31, 23, 0.92);
  --saddle-brown:     #8b5a2b;
  --desert-gold:      #d4a373;
  --sunset-orange:    #e76f51;
  --faded-denim:      #6c9ebf;
  --text-primary:     #fef3e2;
  --text-secondary:   #c9b6a0;
  --text-muted:       #a08070;

  /* Gradients */
  --leather-grad:     linear-gradient(135deg, #6b3f1e 0%, #8b5a2b 40%, #a0652a 60%, #6b3f1e 100%);
  --gold-grad:        linear-gradient(135deg, #c8933a, #d4a373, #e8c07a, #d4a373, #c8933a);
  --sunset-grad:      linear-gradient(180deg, #3d1a0e 0%, #7a3020 20%, #c4622a 50%, #e8a050 75%, #f0c860 100%);
  --brass-grad:       radial-gradient(circle at 40% 35%, #c8933a 0%, #8b5a2b 40%, #5a3010 70%, #3a1e08 100%);

  /* Spacing */
  --space-desktop:    100px;
  --space-tablet:     70px;
  --space-mobile:     50px;

  /* Dialer */
  --dialer-size:      180px;
  --dialer-radius:    90px;
  --item-orbit:       68px;

  /* Typography */
  --font-display:     'Playfair Display', serif;
  --font-body:        'Crimson Text', serif;
  --font-stamp:       'Special Elite', cursive;
}

/* ─── 2. RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--desert-gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--sunset-orange); }
ul { list-style: none; }
input, textarea, button { font-family: inherit; }

/* ─── 3. SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--saddle-brown); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--desert-gold); }

/* ─── 4. LAYOUT ──────────────────────────────────────────────── */
.content-wrapper {
  margin-left: 210px;
  min-height: 100vh;
  transition: margin-left 0.4s ease;
}
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── 5. DIALER SIDEBAR ─────────────────────────────────────── */
.dialer-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 210px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.dialer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 6, 3, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 998;
}
.dialer-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* Dialer Container */
.dialer-container {
  position: relative;
  width: var(--dialer-size);
  height: var(--dialer-size);
  border-radius: 50%;
  background: var(--brass-grad);
  box-shadow:
    0 0 0 4px #5a3010,
    0 0 0 8px #8b5a2b,
    0 0 0 10px #3a1e08,
    0 0 30px rgba(212, 163, 115, 0.4),
    0 0 60px rgba(231, 111, 81, 0.2),
    inset 0 2px 8px rgba(255, 220, 160, 0.15),
    inset 0 -2px 8px rgba(0,0,0,0.5);
  pointer-events: all;
  cursor: default;
  flex-shrink: 0;
}

/* Leather outer ring texture */
.dialer-container::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(
      from 0deg,
      #4a2c10 0deg 8deg,
      #3a1e08 8deg 16deg
    );
  z-index: -1;
  box-shadow: 0 0 20px rgba(231, 111, 81, 0.3), 0 0 50px rgba(212, 163, 115, 0.1);
}
.dialer-container::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 3px solid rgba(212, 163, 115, 0.3);
  z-index: -1;
}

/* Dialer Wheel (rotates) */
.dialer-wheel {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform-origin: center center;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Dialer Items */
.dialer-item {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5a3010, #3a1e08);
  border: 2px solid #8b5a2b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5), inset 0 1px 2px rgba(255,200,100,0.1);
}
.dialer-item:hover {
  background: linear-gradient(135deg, #8b5a2b, #d4a373);
  border-color: var(--desert-gold);
  box-shadow: 0 0 12px rgba(212, 163, 115, 0.6), 0 0 20px rgba(231, 111, 81, 0.3);
  transform: scale(1.15) !important;
  z-index: 10;
}
.dialer-item.active {
  background: linear-gradient(135deg, #d4a373, #e8c07a);
  border-color: var(--sunset-orange);
  box-shadow: 0 0 16px rgba(231, 111, 81, 0.8), 0 0 30px rgba(212, 163, 115, 0.4);
}
.dialer-item.active .dialer-icon svg { stroke: #3a1e08; }

.dialer-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.dialer-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--text-secondary);
  transition: stroke 0.3s;
}
.dialer-item:hover .dialer-icon svg { stroke: var(--bg-primary); }

/* Tooltip */
.dialer-item::after {
  content: attr(data-tooltip);
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) scale(0);
  background: rgba(26, 18, 11, 0.95);
  border: 1px solid var(--saddle-brown);
  color: var(--desert-gold);
  font-family: var(--font-stamp);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: all 0.2s ease;
  z-index: 20;
}
.dialer-item:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* Hub Center */
.dialer-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #e8c07a, #c8933a, #8b5a2b, #3a1e08);
  border: 3px solid #c8933a;
  box-shadow:
    0 0 0 2px #3a1e08,
    0 0 15px rgba(212, 163, 115, 0.5),
    inset 0 2px 4px rgba(255,230,150,0.3);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.3s;
}
.dialer-hub:hover {
  box-shadow: 0 0 25px rgba(212, 163, 115, 0.8), 0 0 0 2px #3a1e08;
}
.hub-inner { display: flex; align-items: center; justify-content: center; }
.hub-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--bg-primary);
  text-shadow: 0 1px 2px rgba(255,200,100,0.5);
  line-height: 1;
}

/* Pointer marker */
.dialer-pointer {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 14px solid var(--desert-gold);
  filter: drop-shadow(0 0 6px rgba(212, 163, 115, 0.7));
  z-index: 15;
}

/* Rivets */
.dialer-rivet {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #e8c07a, #8b5a2b);
  border: 1px solid #5a3010;
  box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.r1 { top: 6px; left: 50%; transform: translateX(-50%); }
.r2 { bottom: 6px; left: 50%; transform: translateX(-50%); }
.r3 { left: 6px; top: 50%; transform: translateY(-50%); }
.r4 { right: 6px; top: 50%; transform: translateY(-50%); }

/* Mobile Badge */
.dialer-badge {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brass-grad);
  border: 3px solid var(--saddle-brown);
  box-shadow: 0 0 20px rgba(212, 163, 115, 0.4), 0 4px 15px rgba(0,0,0,0.5);
  cursor: pointer;
  z-index: 1001;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  color: var(--text-primary);
  pointer-events: all;
  transition: all 0.3s ease;
}
.dialer-badge:hover {
  box-shadow: 0 0 30px rgba(212, 163, 115, 0.7);
  transform: scale(1.05);
}
.badge-icon { width: 22px; height: 22px; }
.badge-icon svg { width: 100%; height: 100%; stroke: var(--desert-gold); }
.badge-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--desert-gold);
  line-height: 1;
}

/* ─── 6. HEADER ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(26,18,11,0.98) 0%, rgba(38,31,23,0.95) 100%);
  border-bottom: 2px solid var(--saddle-brown);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 1px 0 rgba(212,163,115,0.1);
  padding: 16px 0;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--desert-gold);
  letter-spacing: 0.04em;
  text-shadow: 0 0 20px rgba(212, 163, 115, 0.4);
}
.brand-star { color: var(--sunset-orange); font-size: 0.8rem; }
.header-tagline {
  font-family: var(--font-stamp);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  flex: 1;
  text-align: center;
}

/* ─── 7. BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--leather-grad);
  border: 2px solid var(--saddle-brown);
  border-radius: 8px;
  color: var(--desert-gold);
  font-family: var(--font-stamp);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,200,100,0.1);
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(212,163,115,0.1) 100%);
  transition: opacity 0.3s;
}
.btn-primary:hover {
  border-color: var(--desert-gold);
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(212, 163, 115, 0.5), 0 6px 20px rgba(0,0,0,0.4);
  transform: translateY(-2px) rotate(-0.5deg);
}
.btn-primary:active { transform: translateY(1px) rotate(0deg); }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--leather-grad);
  border: 3px solid var(--saddle-brown);
  border-radius: 10px;
  color: var(--desert-gold);
  font-family: var(--font-stamp);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(0,0,0,0.5), 0 0 30px rgba(212,163,115,0.2), inset 0 1px 0 rgba(255,200,100,0.15);
  position: relative;
}
.btn-hero:hover {
  border-color: var(--desert-gold);
  box-shadow: 0 0 40px rgba(212, 163, 115, 0.6), 0 10px 30px rgba(0,0,0,0.5);
  transform: translateY(-3px) rotate(-1deg);
  color: var(--text-primary);
}
.btn-hero:active { transform: translateY(1px) rotate(0deg); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 2px solid var(--saddle-brown);
  border-radius: 8px;
  color: var(--text-secondary);
  font-family: var(--font-stamp);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  border-color: var(--desert-gold);
  color: var(--desert-gold);
  background: rgba(212, 163, 115, 0.05);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: transparent;
  border: 2px solid var(--saddle-brown);
  border-radius: 8px;
  color: var(--desert-gold);
  font-family: var(--font-stamp);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--leather-grad);
  border-color: var(--desert-gold);
  box-shadow: 0 0 15px rgba(212,163,115,0.3);
  transform: translateY(-2px);
}

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

/* Hero Background Layers */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    #1a0a05 0%,
    #3d1505 15%,
    #7a2d10 30%,
    #c4521e 50%,
    #e8841e 65%,
    #f0b830 75%,
    #e8c84a 85%,
    #d4a020 100%
  );
}
/* Sun glow */
.hero-sky::after {
  content: '';
  position: absolute;
  bottom: 38%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,220,100,0.6) 0%, rgba(240,160,40,0.3) 40%, transparent 70%);
  border-radius: 50%;
}

/* Mesas */
.hero-mesa {
  position: absolute;
  bottom: 25%;
  background: linear-gradient(180deg, #4a1e0a 0%, #3a1508 50%, #2a1005 100%);
  border-radius: 4px 4px 0 0;
}
.hero-mesa-1 { left: -5%; width: 25%; height: 28%; clip-path: polygon(0% 100%, 5% 40%, 20% 20%, 35% 30%, 50% 25%, 65% 35%, 70% 50%, 80% 45%, 100% 55%, 100% 100%); }
.hero-mesa-2 { right: -5%; width: 30%; height: 35%; clip-path: polygon(0% 55%, 15% 45%, 25% 50%, 35% 35%, 50% 25%, 65% 30%, 75% 20%, 90% 40%, 100% 30%, 100% 100%, 0% 100%); }
.hero-mesa-3 { left: 30%; width: 45%; height: 22%; clip-path: polygon(0% 100%, 5% 60%, 15% 45%, 30% 50%, 50% 40%, 70% 50%, 85% 45%, 95% 55%, 100% 100%); }

/* Ground */
.hero-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28%;
  background: linear-gradient(180deg, #3a1508 0%, #2a1005 40%, #1a0a03 100%);
}
.hero-ground::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #8b5a2b, var(--desert-gold), #8b5a2b, transparent);
  opacity: 0.5;
}

/* Cacti */
.hero-cactus {
  position: absolute;
  bottom: 24%;
}
.hero-cactus::before, .hero-cactus::after {
  content: '';
  position: absolute;
  background: #1e4a1a;
  border-radius: 6px;
}
.cactus-1 { left: 12%; }
.cactus-1::before { width: 14px; height: 55px; bottom: 0; left: 0; background: #1e4a1a; border-radius: 6px; }
.cactus-1::after { width: 28px; height: 8px; bottom: 30px; left: -14px; background: #1e4a1a; border-radius: 6px 6px 0 0; }
.cactus-2 { right: 18%; }
.cactus-2::before { width: 12px; height: 45px; bottom: 0; left: 0; background: #1e4a1a; border-radius: 5px; }
.cactus-2::after { width: 22px; height: 7px; bottom: 25px; left: -10px; background: #1e4a1a; border-radius: 5px 5px 0 0; }
.cactus-3 { left: 30%; }
.cactus-3::before { width: 10px; height: 35px; bottom: 0; left: 0; background: #1e4a1a; border-radius: 4px; }
.cactus-3::after { width: 18px; height: 6px; bottom: 18px; left: -8px; background: #1e4a1a; border-radius: 4px 4px 0 0; }

/* Cowboy silhouette */
.hero-cowboy {
  position: absolute;
  bottom: 24%;
  right: 15%;
  width: 80px;
  height: 120px;
  background: #1a0a03;
  clip-path: polygon(
    35% 100%, 30% 75%, 20% 50%, 15% 35%, 25% 20%, 20% 5%, 35% 0%,
    50% 0%, 65% 0%, 80% 5%, 75% 20%, 85% 35%, 80% 50%, 70% 75%, 65% 100%
  );
}
.hero-cowboy::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -10px;
  width: 100px;
  height: 25px;
  background: #1a0a03;
  clip-path: polygon(0% 100%, 5% 40%, 20% 0%, 80% 0%, 95% 40%, 100% 100%);
}

/* Wagon wheels */
.hero-wheel {
  position: absolute;
  bottom: 22%;
  border: 4px solid #3a1e08;
  border-radius: 50%;
  opacity: 0.4;
}
.wheel-1 { left: 5%; width: 60px; height: 60px; }
.wheel-2 { left: 3%; width: 80px; height: 80px; top: auto; bottom: 18%; }
.hero-wheel::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 4px; height: 100%;
  background: #3a1e08;
}
.hero-wheel::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 4px; height: 100%;
  background: #3a1e08;
}

/* Dust particles */
.dust-particles { position: absolute; inset: 0; pointer-events: none; }
.dust-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(212, 163, 115, 0.3);
  animation: dustFloat linear infinite;
}

@keyframes dustFloat {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-200px) translateX(60px) scale(0.3); opacity: 0; }
}

/* Hero overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,18,11,0.3) 0%,
    rgba(26,18,11,0.1) 40%,
    rgba(26,18,11,0.6) 80%,
    rgba(26,18,11,0.95) 100%
  );
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  text-align: center;
  padding: 60px 40px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(139, 90, 43, 0.3);
  border: 1px solid var(--saddle-brown);
  border-radius: 20px;
  font-family: var(--font-stamp);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--desert-gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  text-shadow:
    0 0 40px rgba(212, 163, 115, 0.4),
    0 4px 20px rgba(0,0,0,0.8);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-subheadline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--desert-gold);
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(212, 163, 115, 0.3);
}
.hero-paragraph {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 20px;
  line-height: 1.8;
}
.hero-legal {
  font-family: var(--font-stamp);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  padding: 8px 16px;
  background: rgba(26, 18, 11, 0.6);
  border: 1px solid rgba(139, 90, 43, 0.3);
  border-radius: 6px;
  display: inline-block;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── 9. SECTION STYLES ─────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-ornament {
  font-family: var(--font-stamp);
  color: var(--saddle-brown);
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-shadow: 0 0 30px rgba(212, 163, 115, 0.2);
}
.section-subtitle {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* ─── 10. FEATURES SECTION ──────────────────────────────────── */
.features-section {
  padding: var(--space-desktop) 0;
  background: var(--bg-secondary);
  position: relative;
}
.features-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--saddle-brown), var(--desert-gold), var(--saddle-brown), transparent);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(139, 90, 43, 0.4);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,163,115,0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: var(--saddle-brown);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 20px rgba(212,163,115,0.1);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--desert-gold);
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─── 11. GAME SECTION ──────────────────────────────────────── */
.game-section {
  padding: var(--space-desktop) 0;
  background: var(--bg-primary);
}
.game-frame-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.game-frame-outer {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: linear-gradient(135deg, #5a3010, #3a1e08, #5a3010);
  border: 4px solid var(--saddle-brown);
  border-radius: 16px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #3a1e08,
    0 0 0 4px rgba(212, 163, 115, 0.2),
    0 20px 60px rgba(0,0,0,0.6),
    inset 0 0 30px rgba(0,0,0,0.4);
}
.game-frame-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--desert-gold);
  border-style: solid;
  opacity: 0.8;
  z-index: 2;
}
.corner-tl { top: -2px; left: -2px; border-width: 3px 0 0 3px; border-radius: 4px 0 0 0; }
.corner-tr { top: -2px; right: -2px; border-width: 3px 3px 0 0; border-radius: 0 4px 0 0; }
.corner-bl { bottom: -2px; left: -2px; border-width: 0 0 3px 3px; border-radius: 0 0 0 4px; }
.corner-br { bottom: -2px; right: -2px; border-width: 0 3px 3px 0; border-radius: 0 0 4px 0; }

.game-frame-inner {
  width: 100%;
  background: #0d0a08;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #2a1a0a;
  box-shadow: inset 0 4px 20px rgba(0,0,0,0.5);
  position: relative;
  min-height: 540px;
}
.game-frame-inner iframe {
  width: 100%;
  height: 540px;
  border: none;
  display: block;
}
.game-disclaimer {
  font-family: var(--font-stamp);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-align: center;
  padding: 8px 20px;
  background: rgba(26, 18, 11, 0.8);
  border: 1px solid rgba(139, 90, 43, 0.3);
  border-radius: 6px;
}

/* ─── 12. HOW IT WORKS ──────────────────────────────────────── */
.how-section {
  padding: var(--space-desktop) 0;
  background: var(--bg-secondary);
  position: relative;
}
.how-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--saddle-brown), var(--desert-gold), var(--saddle-brown), transparent);
}
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(139, 90, 43, 0.4);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  position: relative;
  transition: all 0.3s ease;
}
.step-card:hover {
  border-color: var(--desert-gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 20px rgba(212,163,115,0.15);
}
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(139, 90, 43, 0.3);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--desert-gold);
  margin-bottom: 10px;
}
.step-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}
.step-connector {
  font-family: var(--font-stamp);
  color: rgba(139, 90, 43, 0.4);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  padding: 0 12px;
  flex-shrink: 0;
}

/* ─── 13. EXPERIENCE SECTION ────────────────────────────────── */
.experience-section {
  padding: var(--space-desktop) 0;
  background: var(--bg-primary);
  position: relative;
}
.experience-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.experience-quote {
  position: relative;
  padding: 50px 60px;
  background: var(--bg-card);
  border: 1px solid rgba(139, 90, 43, 0.4);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(212,163,115,0.05);
}
.experience-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212,163,115,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(212, 163, 115, 0.2);
  line-height: 0.5;
  margin-bottom: 20px;
  display: block;
}
.experience-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.quote-author {
  font-family: var(--font-stamp);
  color: var(--desert-gold);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

/* ─── 14. RESPONSIBLE BANNER ────────────────────────────────── */
.responsible-banner {
  padding: 40px 0;
  background: linear-gradient(135deg, #1e0e06, #2a1508, #1e0e06);
  border-top: 2px solid rgba(139, 90, 43, 0.5);
  border-bottom: 2px solid rgba(139, 90, 43, 0.5);
}
.responsible-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 30px;
  background: var(--bg-card);
  border: 1px solid rgba(139, 90, 43, 0.4);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.responsible-icon { font-size: 2.5rem; flex-shrink: 0; }
.responsible-content { flex: 1; }
.responsible-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--desert-gold);
  margin-bottom: 6px;
}
.responsible-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ─── 15. FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: #120c07;
  border-top: 3px solid var(--saddle-brown);
  padding-top: 60px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--desert-gold), transparent);
  opacity: 0.3;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--brass-grad);
  border: 3px solid var(--saddle-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--bg-primary);
  margin-bottom: 10px;
  box-shadow: 0 0 15px rgba(212,163,115,0.3);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--desert-gold);
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: var(--font-stamp);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-nav h4 {
  font-family: var(--font-stamp);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saddle-brown);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(139, 90, 43, 0.3);
}
.footer-nav ul li { margin-bottom: 8px; }
.footer-nav ul li a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-nav ul li a:hover { color: var(--desert-gold); }
.footer-legal h4 {
  font-family: var(--font-stamp);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--saddle-brown);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(139, 90, 43, 0.3);
}
.footer-legal p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(139, 90, 43, 0.2);
  border: 1px solid rgba(139, 90, 43, 0.5);
  border-radius: 4px;
  font-family: var(--font-stamp);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.footer-bottom {
  border-top: 1px solid rgba(139, 90, 43, 0.3);
  padding: 20px 40px;
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font-stamp);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── 16. PAGE LAYOUTS (INNER PAGES) ───────────────────────── */
.page-hero {
  position: relative;
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 2px solid rgba(139, 90, 43, 0.3);
  overflow: hidden;
}
.page-hero--short { padding: 50px 40px; }
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(231, 111, 81, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 16px 0 10px;
  text-shadow: 0 0 30px rgba(212,163,115,0.3);
}
.page-hero p {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.page-main { padding: var(--space-desktop) 0; }
.game-page-main { padding: 40px 0 var(--space-desktop); }

.content-card {
  background: var(--bg-card);
  border: 1px solid rgba(139, 90, 43, 0.4);
  border-radius: 16px;
  padding: 50px 60px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
}
.content-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(212,163,115,0.02) 0%, transparent 60%);
  pointer-events: none;
}
.content-card h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--desert-gold);
  margin: 36px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(139, 90, 43, 0.3);
}
.content-card h2:first-of-type { margin-top: 0; }
.content-card p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* Legal content */
.legal-content { }
.legal-date {
  font-family: var(--font-stamp);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 30px !important;
  padding: 8px 14px;
  background: rgba(139, 90, 43, 0.1);
  border-left: 3px solid var(--saddle-brown);
  border-radius: 0 4px 4px 0;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.value-card {
  background: rgba(26, 18, 11, 0.5);
  border: 1px solid rgba(139, 90, 43, 0.3);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s;
}
.value-card:hover {
  border-color: var(--saddle-brown);
  transform: translateY(-4px);
}
.value-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--desert-gold);
  margin-bottom: 8px;
  border: none !important;
  padding: 0 !important;
}
.value-card p { margin-bottom: 0 !important; font-size: 0.9rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; }
.contact-form-wrap h2, .contact-info-wrap h2 { margin-top: 0; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--font-stamp);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saddle-brown);
}
.form-group input, .form-group textarea {
  background: rgba(26, 18, 11, 0.8);
  border: 1px solid rgba(139, 90, 43, 0.5);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all 0.3s;
  resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--saddle-brown);
  box-shadow: 0 0 15px rgba(139, 90, 43, 0.2);
  background: rgba(38, 31, 23, 0.9);
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(26, 18, 11, 0.5);
  border: 1px solid rgba(139, 90, 43, 0.3);
  border-radius: 10px;
  margin-bottom: 14px;
}
.contact-info-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-info-card h4 {
  font-family: var(--font-stamp);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--saddle-brown);
  margin-bottom: 4px;
}
.contact-info-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 0; }
.contact-info-note {
  margin-top: 20px;
  padding: 14px;
  background: rgba(26, 18, 11, 0.5);
  border-left: 3px solid var(--saddle-brown);
  border-radius: 0 8px 8px 0;
}
.contact-info-note p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.contact-info-note a { color: var(--desert-gold); }

/* Responsible */
.responsible-alert {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(231, 111, 81, 0.08);
  border: 1px solid rgba(231, 111, 81, 0.3);
  border-radius: 12px;
  margin-bottom: 36px;
}
.responsible-alert-icon { font-size: 2rem; flex-shrink: 0; }
.responsible-alert h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--desert-gold);
  margin-bottom: 6px;
  border: none !important;
  padding: 0 !important;
}
.responsible-alert p { margin-bottom: 0 !important; color: var(--text-secondary); }

.guidelines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.guideline-card {
  background: rgba(26, 18, 11, 0.5);
  border: 1px solid rgba(139, 90, 43, 0.3);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s;
}
.guideline-card:hover { border-color: var(--saddle-brown); transform: translateY(-3px); }
.guideline-icon { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.guideline-card h4 { font-family: var(--font-display); color: var(--desert-gold); font-size: 1rem; margin-bottom: 6px; }
.guideline-card p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 0; }

.resources-list { margin: 16px 0 !important; padding-left: 0 !important; }
.resources-list li {
  display: block;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(139, 90, 43, 0.15);
}
.resources-list li a { color: var(--faded-denim); }
.resources-list li a:hover { color: var(--desert-gold); }

.rules-list { margin: 16px 0 !important; padding-left: 0 !important; }
.rules-list li {
  display: block;
  padding: 10px 16px;
  margin-bottom: 8px;
  background: rgba(26, 18, 11, 0.4);
  border-left: 3px solid rgba(139, 90, 43, 0.5);
  border-radius: 0 6px 6px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: all 0.3s;
}
.rules-list li:hover { border-left-color: var(--desert-gold); background: rgba(38, 31, 23, 0.6); }

/* ─── 17. ANIMATIONS ────────────────────────────────────────── */
@keyframes dialerIdle {
  0%, 100% { box-shadow: 0 0 0 4px #5a3010, 0 0 0 8px #8b5a2b, 0 0 0 10px #3a1e08, 0 0 30px rgba(212, 163, 115, 0.4), 0 0 60px rgba(231, 111, 81, 0.2); }
  50% { box-shadow: 0 0 0 4px #5a3010, 0 0 0 8px #8b5a2b, 0 0 0 10px #3a1e08, 0 0 45px rgba(212, 163, 115, 0.6), 0 0 80px rgba(231, 111, 81, 0.3); }
}
.dialer-container { animation: dialerIdle 4s ease-in-out infinite; }

@keyframes hubPulse {
  0%, 100% { box-shadow: 0 0 0 2px #3a1e08, 0 0 15px rgba(212, 163, 115, 0.5); }
  50% { box-shadow: 0 0 0 2px #3a1e08, 0 0 25px rgba(212, 163, 115, 0.8), 0 0 40px rgba(231, 111, 81, 0.3); }
}
.dialer-hub { animation: hubPulse 3s ease-in-out infinite; }

/* ─── 18. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1199px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  :root { --dialer-size: 150px; --dialer-radius: 75px; --item-orbit: 56px; }
  .content-wrapper { margin-left: 175px; }
  .dialer-sidebar { width: 175px; }
  .header-tagline { display: none; }
  .steps-grid { flex-direction: column; align-items: stretch; }
  .step-connector { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .guidelines-grid { grid-template-columns: 1fr; }
  .content-card { padding: 36px 30px; }
}

@media (max-width: 767px) {
  :root { --space-desktop: 50px; }
  .content-wrapper { margin-left: 0; }
  .dialer-sidebar { width: auto; height: auto; top: auto; }
  .dialer-container { display: none; }
  .dialer-badge { display: flex; }

  .dialer-sidebar.mobile-open .dialer-container {
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
    --dialer-size: 260px;
    --item-orbit: 95px;
    width: 260px;
    height: 260px;
  }
  .dialer-sidebar.mobile-open .dialer-backdrop { opacity: 1; pointer-events: all; }
  .dialer-sidebar.mobile-open .dialer-badge { display: flex; }

  .header-inner { padding: 0 20px; }
  .section-container { padding: 0 20px; }
  .hero-content { padding: 40px 20px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; padding: 0 20px 40px; }
  .footer-bottom { padding: 20px; }
  .game-frame-inner { min-height: 400px; }
  .game-frame-inner iframe { height: 400px; }
  .experience-quote { padding: 30px 24px; }
  .experience-quote p { font-size: 1.1rem; }
  .responsible-inner { flex-direction: column; text-align: center; }
  .page-hero { padding: 50px 20px; }
  .content-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .header-brand { font-size: 1.1rem; gap: 6px; }
  .hero-headline { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
}
/* ============================================================ */