/* ============================================================
   ValueBridgeX — Steampunk Theme  (v4 — Premium Steampunk Edition)
   default.css — shared stylesheet for all pages
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Lato:ital,wght@0,300;0,400;0,700;1,400&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --primary:      #0d0a06;
  --surface:      #161009;
  --card:         #1e160a;
  --border:       #3d2e0f;
  --accent:       #c87941;
  --accent-glow:  rgba(200,121,65,0.3);
  --accent-dim:   rgba(200,121,65,0.08);
  --gold:         #e8b84b;
  --gold-dark:    #c49a20;
  --gold-glow:    rgba(232,184,75,0.35);
  --text:         #c8b49a;
  --text-dim:     #7a6540;
  --white:        #fff8f0;
  --danger:       #cc3333;
  --font-head:    'Cinzel', serif;
  --font-body:    'Lato', sans-serif;
  --radius:       14px;
  --radius-sm:    8px;
  --transition:   0.3s ease;
  --shadow:       0 8px 32px rgba(0,0,0,0.7);
  --shadow-cyan:  0 0 24px rgba(200,121,65,0.25), 0 0 8px rgba(200,121,65,0.15);
  --shadow-gold:  0 0 24px rgba(232,184,75,0.4),  0 0 8px rgba(232,184,75,0.2);
}

/* ── Keyframes ─────────────────────────────────────────────── */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0    rgba(200,121,65,0.6), 0 0 32px rgba(200,121,65,0.2); }
  50%  { box-shadow: 0 0 0 18px rgba(200,121,65,0),   0 0 48px rgba(200,121,65,0.4); }
  100% { box-shadow: 0 0 0 0    rgba(200,121,65,0),   0 0 32px rgba(200,121,65,0.2); }
}

@keyframes slide-glow {
  0%   { text-shadow: 0 0 12px rgba(200,121,65,0.4), 0 0 32px rgba(200,121,65,0.15); }
  50%  { text-shadow: 0 0 24px rgba(200,121,65,0.8), 0 0 64px rgba(200,121,65,0.3); }
  100% { text-shadow: 0 0 12px rgba(200,121,65,0.4), 0 0 32px rgba(200,121,65,0.15); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes eyebrow-pulse {
  0%, 100% { box-shadow: 0 0 8px  rgba(200,121,65,0.4); }
  50%       { box-shadow: 0 0 20px rgba(200,121,65,0.9), 0 0 40px rgba(200,121,65,0.4); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes border-glow-pulse {
  0%, 100% { border-color: var(--accent); box-shadow: 0 0 8px  rgba(200,121,65,0.3); }
  50%       { border-color: var(--gold);  box-shadow: 0 0 20px rgba(255,215,0,0.5);  }
}

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

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--primary);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  min-height: 100vh;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold); }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.2;
}
ul, ol { list-style: none; }
button { font-family: var(--font-body); }

/* ── Utility ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 96px 0;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--white) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 18px rgba(200,121,65,0.35));
  letter-spacing: 1px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-dim);
  margin-bottom: 56px;
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}
.btn:hover::after { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, #ffe533 0%, var(--gold) 40%, var(--gold-dark) 100%);
  color: #060612;
  box-shadow: 0 4px 20px rgba(255,215,0,0.45), 0 1px 4px rgba(0,0,0,0.4);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.btn-gold:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 36px rgba(255,215,0,0.7), 0 2px 8px rgba(0,0,0,0.5);
  color: #060612;
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: rgba(200,121,65,0.06);
  box-shadow: 0 0 12px rgba(200,121,65,0.1), inset 0 0 12px rgba(200,121,65,0.04);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 0 24px rgba(200,121,65,0.55), 0 4px 16px rgba(0,0,0,0.4);
  transform: translateY(-2px);
}

/* ── 18+ Badge ─────────────────────────────────────────────── */
.badge-18 {
  background: var(--danger);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 5px;
  letter-spacing: 1px;
  box-shadow: 0 0 10px rgba(255,51,85,0.5);
  flex-shrink: 0;
}

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,10,6,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,121,65,0.18);
  box-shadow: 0 2px 32px rgba(0,0,0,0.6), 0 1px 0 rgba(200,121,65,0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 1.5px;
  text-decoration: none;
  flex-shrink: 0;
  text-shadow: 0 0 16px rgba(200,121,65,0.6), 0 0 32px rgba(200,121,65,0.2);
  transition: text-shadow var(--transition);
}
.site-logo:hover {
  text-shadow: 0 0 24px rgba(200,121,65,0.9), 0 0 48px rgba(200,121,65,0.4);
  color: var(--white);
}
.site-logo svg {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(200,121,65,0.7));
}
.logo-accent { color: var(--accent); }

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: flex-end;
}
.site-nav a {
  font-size: 0.78rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 5px;
  transition: color var(--transition);
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 2px;
  transition: width var(--transition);
  box-shadow: 0 0 8px rgba(200,121,65,0.6);
}
.site-nav a:hover {
  color: var(--accent);
}
.site-nav a:hover::after {
  width: 100%;
}

/* ── Hamburger ─────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--accent); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--accent); }

/* ── Mobile Nav ────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(20,14,6,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 20px 24px 28px;
  gap: 6px;
}
.mobile-nav.open,
.mobile-nav[style*="flex"] {
  display: flex !important;
}
.mobile-nav a {
  font-size: 0.9rem;
  font-family: var(--font-head);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.mobile-nav a:hover {
  color: var(--accent);
  background: rgba(200,121,65,0.06);
  border-color: rgba(200,121,65,0.2);
}

/* ── Hero Slider ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Steampunk grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,121,65,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,121,65,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 1;
}

/* Perspective vanishing grid at bottom */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -20%;
  right: -20%;
  height: 50%;
  background: repeating-linear-gradient(
    transparent,
    transparent 20px,
    rgba(200,121,65,0.05) 20px,
    rgba(200,121,65,0.05) 21px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 64px,
    rgba(200,121,65,0.05) 64px,
    rgba(200,121,65,0.05) 65px
  );
  transform: perspective(400px) rotateX(40deg);
  transform-origin: bottom center;
  pointer-events: none;
  z-index: 1;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6));
  -webkit-mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6));
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.active { opacity: 1; }

/* Slide 1: Steampunk copper-amber */
.hero-slide:nth-child(1) {
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(80,40,10,0.6) 0%, transparent 70%),
    linear-gradient(160deg, #0d0a06 0%, #1a100a 40%, #0d0a06 100%);
}

/* Slide 2: deep bronze */
.hero-slide:nth-child(2) {
  background:
    radial-gradient(ellipse 70% 50% at 50% 25%, rgba(60,30,5,0.7) 0%, transparent 65%),
    linear-gradient(160deg, #100c07 0%, #201408 35%, #0d0a06 100%);
}

/* Slide 3: amber-gold */
.hero-slide:nth-child(3) {
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(100,60,10,0.5) 0%, transparent 65%),
    linear-gradient(160deg, #0d0803 0%, #181005 30%, #0d0a06 100%);
}

/* Central radial glow for each slide */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 35%, rgba(200,121,65,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 800px;
  padding: 0 24px;
  animation: fadeInUp 0.8s ease both;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(200,121,65,0.1);
  border: 1px solid rgba(200,121,65,0.5);
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  padding: 7px 22px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
  animation: eyebrow-pulse 2.5s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #fff8f0 20%, var(--accent) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(200,121,65,0.4));
  letter-spacing: -0.5px;
}

.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: var(--text-dim);
  margin-bottom: 32px;
  font-weight: 400;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-badge {
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.5);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.67rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 50px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

/* Slide indicator dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(200,121,65,0.8);
  transform: scale(1.4);
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 40px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .stat-item { padding: 8px 20px; }
  .stat-divider { display: none; }
}

/* ── Game Cards ────────────────────────────────────────────── */
.games-section {
  background: var(--surface);
  position: relative;
}
.games-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  box-shadow: 0 0 12px var(--accent-glow);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(200,121,65,0), rgba(200,121,65,0)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  transition: all 0.35s ease;
  pointer-events: none;
  z-index: 1;
}
.game-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 60px rgba(200,121,65,0.2),
    0 8px 24px rgba(0,0,0,0.6),
    0 0 0 1px rgba(200,121,65,0.4);
  border-color: rgba(200,121,65,0.5);
}

.game-card-thumb {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: #100a02;
}
.game-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.game-card:hover .game-card-thumb img {
  transform: scale(1.1);
}
/* Gradient overlay on image bottom */
.game-card-thumb::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(30,22,10,0.95) 0%, transparent 100%);
  pointer-events: none;
}

/* FREE TO PLAY badge */
.game-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #ffe533 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #05050f;
  font-family: var(--font-head);
  font-size: 0.57rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 12px rgba(255,215,0,0.5);
  z-index: 2;
}

.game-card-body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.game-card-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.game-card-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  flex: 1;
  margin-bottom: 18px;
  line-height: 1.6;
}
.game-card .btn {
  align-self: flex-start;
  font-size: 0.72rem;
  padding: 10px 22px;
  letter-spacing: 1.5px;
}

/* ── About ─────────────────────────────────────────────────── */
.about-section { background: var(--primary); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(200,121,65,0.15) 0%, rgba(30,22,10,0.95) 60%, #100a02 100%);
  border: 2px solid rgba(200,121,65,0.5);
  box-shadow:
    0 0 0 0 rgba(200,121,65,0.6),
    0 0 40px rgba(200,121,65,0.2),
    inset 0 0 60px rgba(200,121,65,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-ring 3s ease-in-out infinite;
  position: relative;
}
.about-circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(200,121,65,0.15);
  animation: pulse-ring 3s ease-in-out infinite 0.5s;
}
.about-circle::after {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(200,121,65,0.07);
  animation: pulse-ring 3s ease-in-out infinite 1s;
}
.about-circle svg {
  width: 90px !important;
  height: 90px !important;
  max-width: 90px !important;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 16px rgba(200,121,65,0.6));
}

.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--white) 0%, var(--accent) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(200,121,65,0.25));
}
.about-text p {
  color: var(--text-dim);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── Benefits ──────────────────────────────────────────────── */
.benefits-section {
  background: var(--surface);
  position: relative;
}
.benefits-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  box-shadow: 0 0 12px rgba(255,215,0,0.4);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 36px 26px 30px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}
.benefit-card:hover {
  border-color: rgba(200,121,65,0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 24px rgba(200,121,65,0.12);
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: radial-gradient(circle, rgba(200,121,65,0.15) 0%, rgba(200,121,65,0.04) 70%);
  border: 1px solid rgba(200,121,65,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(200,121,65,0.15), inset 0 0 20px rgba(200,121,65,0.05);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.benefit-card:hover .benefit-icon {
  box-shadow: 0 0 32px rgba(200,121,65,0.4), inset 0 0 20px rgba(200,121,65,0.1);
  border-color: rgba(200,121,65,0.6);
}
.benefit-icon svg {
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
  filter: drop-shadow(0 0 6px rgba(200,121,65,0.5));
}

.benefit-card h3 {
  font-size: 0.9rem;
  font-family: var(--font-head);
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: 0.5px;
}
.benefit-card p {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-section { background: var(--primary); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open {
  border-color: rgba(200,121,65,0.35);
  box-shadow: 0 0 20px rgba(200,121,65,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.3px;
}
.faq-question:hover {
  color: var(--accent);
  background: rgba(200,121,65,0.04);
}
.faq-item.open .faq-question {
  color: var(--accent);
}

.faq-chevron {
  flex-shrink: 0;
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  min-width: 18px;
  min-height: 18px;
  transition: transform 0.35s ease;
  color: var(--accent);
  opacity: 0.7;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 22px;
  border-top: 0px solid transparent;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 0;
  border-top: 1px solid var(--border);
}
.faq-answer p {
  font-size: 0.87rem;
  color: var(--text-dim);
  padding: 16px 0;
  line-height: 1.75;
}

/* ── Gallery ───────────────────────────────────────────────── */
.gallery-section { background: var(--surface); }

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.gallery-item {
  flex: 1 1 calc(25% - 14px);
  min-width: 200px;
  max-width: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--card);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,121,65,0.15), rgba(232,184,75,0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-item:hover {
  transform: scale(1.05);
  border-color: rgba(200,121,65,0.5);
  box-shadow: 0 8px 32px rgba(200,121,65,0.2), 0 4px 12px rgba(0,0,0,0.5);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  padding: 56px 0 28px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--accent) 25%,
    var(--gold) 50%,
    var(--accent) 75%,
    transparent 100%
  );
  box-shadow: 0 0 16px rgba(200,121,65,0.4);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: center;
  margin-bottom: 36px;
}
.footer-nav a {
  font-size: 0.78rem;
  font-family: var(--font-head);
  color: var(--text-dim);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--accent); }

.footer-disclaimer {
  background: rgba(30,22,10,0.7);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin-bottom: 32px;
  text-align: center;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.2);
}
.footer-disclaimer strong {
  display: block;
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  text-shadow: 0 0 10px rgba(255,215,0,0.4);
}
.footer-disclaimer p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-logos a {
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity var(--transition), filter var(--transition);
}
.footer-logos a:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.footer-logos img {
  height: 34px;
  width: auto;
  display: block;
}

.footer-copy {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-dim);
  opacity: 0.7;
}

/* ── Cookie Consent ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(20,14,6,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 2px solid var(--accent);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.5), 0 -1px 0 rgba(200,121,65,0.2);
}
.cookie-banner.hidden { display: none; }

.cookie-text {
  font-size: 0.84rem;
  color: var(--text);
  flex: 1;
  min-width: 220px;
  line-height: 1.6;
}
.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(200,121,65,0.4);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 0 16px rgba(200,121,65,0.4);
}
.cookie-accept:hover {
  background: var(--gold);
  box-shadow: 0 0 24px rgba(255,215,0,0.5);
  transform: translateY(-1px);
}

.cookie-decline {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.78rem;
  padding: 11px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-decline:hover {
  border-color: var(--text-dim);
  color: var(--text);
}

/* ── Page Hero (sub-pages) ─────────────────────────────────── */
.page-hero {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(200,121,65,0.12) 0%, transparent 60%),
    linear-gradient(160deg, #0d0a06 0%, #1e160a 40%, #0d0a06 100%);
  padding: 72px 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,121,65,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,121,65,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  background: linear-gradient(90deg, var(--white), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 16px rgba(200,121,65,0.3));
  position: relative;
  z-index: 1;
}
.page-hero p {
  color: var(--text-dim);
  margin-top: 14px;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

/* ── Game Page ─────────────────────────────────────────────── */
.game-iframe-wrap {
  background: #000;
  border-bottom: 2px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}
.game-iframe-wrap iframe { display: block; }

.game-info { padding: 56px 0; }

.game-info-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.game-info-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 24px rgba(200,121,65,0.08);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.game-info-thumb:hover {
  border-color: rgba(200,121,65,0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 32px rgba(200,121,65,0.2);
}

.game-info-content h2 {
  font-size: 1.9rem;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--white) 0%, var(--accent) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(200,121,65,0.25));
}
.game-info-content p {
  color: var(--text-dim);
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.game-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.game-tag {
  background: rgba(200,121,65,0.08);
  border: 1px solid rgba(200,121,65,0.4);
  color: var(--accent);
  font-size: 0.68rem;
  font-family: var(--font-head);
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(200,121,65,0.4);
  transition: all var(--transition);
}
.game-tag:hover {
  background: rgba(200,121,65,0.15);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(200,121,65,0.3);
}
.game-tag.gold {
  background: rgba(255,215,0,0.08);
  border-color: rgba(255,215,0,0.45);
  color: var(--gold);
  text-shadow: 0 0 8px rgba(255,215,0,0.4);
}

/* ── Legal pages ───────────────────────────────────────────── */
.legal-content { padding: 64px 0; }
.legal-content h2 {
  font-size: 1.35rem;
  margin: 36px 0 14px;
  color: var(--accent);
  text-shadow: 0 0 12px rgba(200,121,65,0.3);
}
.legal-content h3 {
  font-size: 1.05rem;
  margin: 26px 0 10px;
  color: var(--white);
}
.legal-content p {
  color: var(--text-dim);
  margin-bottom: 16px;
  font-size: 0.92rem;
  line-height: 1.8;
}
.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}
.legal-content ul li {
  color: var(--text-dim);
  font-size: 0.92rem;
  padding: 7px 0 7px 24px;
  position: relative;
  line-height: 1.7;
}
.legal-content ul li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--accent);
  text-shadow: 0 0 6px rgba(200,121,65,0.5);
}

.legal-last-updated {
  display: inline-block;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 36px;
  font-family: var(--font-head);
  letter-spacing: 0.5px;
}

/* ── Contact form ──────────────────────────────────────────── */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-family: var(--font-head);
  color: var(--text-dim);
  margin-bottom: 8px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 18px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
  opacity: 0.6;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow), 0 0 16px rgba(200,121,65,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.7;
}
.form-group select option {
  background: var(--card);
  color: var(--text);
}

/* ── Responsible play ──────────────────────────────────────── */
.rp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin: 36px 0;
}
.rp-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.rp-card:hover {
  border-color: rgba(200,121,65,0.3);
  box-shadow: 0 0 20px rgba(200,121,65,0.08);
}
.rp-card h3 {
  font-size: 0.88rem;
  font-family: var(--font-head);
  color: var(--accent);
  margin-bottom: 12px;
  text-shadow: 0 0 8px rgba(200,121,65,0.3);
}
.rp-card p,
.rp-card li {
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.rp-card ul {
  list-style: disc;
  padding-left: 18px;
}
.rp-card li { margin-bottom: 4px; }

.rp-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.rp-link-btn {
  background: rgba(200,121,65,0.06);
  border: 1px solid rgba(200,121,65,0.4);
  color: var(--accent);
  padding: 11px 22px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  display: inline-block;
}
.rp-link-btn:hover {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 0 20px rgba(200,121,65,0.4);
  transform: translateY(-2px);
}

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  font-size: 0.78rem;
  color: var(--text-dim);
  padding: 14px 0;
  font-family: var(--font-head);
  letter-spacing: 0.3px;
}
.breadcrumb a {
  color: var(--accent);
  transition: color var(--transition), text-shadow var(--transition);
}
.breadcrumb a:hover {
  text-shadow: 0 0 8px rgba(200,121,65,0.5);
}
.breadcrumb span {
  margin: 0 10px;
  color: var(--border);
}

/* ── SVG Hard Constraints ──────────────────────────────────── */
.site-logo svg {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  flex-shrink: 0;
}
.faq-chevron {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
}
.benefit-icon svg {
  width: 30px !important;
  height: 30px !important;
  max-width: 30px !important;
}
.about-circle svg {
  width: 90px !important;
  height: 90px !important;
  max-width: 90px !important;
}

/* ── Scrollbar styling ─────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary); }
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(200,121,65,0.4); }

/* ── Selection ─────────────────────────────────────────────── */
::selection {
  background: rgba(200,121,65,0.25);
  color: var(--white);
}

/* ── Responsive: 900px ─────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .game-info-grid { grid-template-columns: 1fr; }
  .game-info-thumb { max-width: 340px; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}

/* ── Responsive: 768px ─────────────────────────────────────── */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }
  .hero { min-height: 480px; }
  .hero-title { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .games-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .game-card-thumb { height: 180px; }
  .footer-logos { flex-wrap: wrap; gap: 20px; }
  .gallery-grid { gap: 10px; }
  .gallery-item { flex: 1 1 calc(50% - 10px); }
  .benefits-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}

/* ── Responsive: 480px ─────────────────────────────────────── */
@media (max-width: 480px) {
  .hero { min-height: 420px; }
  .hero-title { font-size: 1.75rem; }
  .hero-tagline { font-size: 0.95rem; }
  .hero-badges { flex-direction: column; align-items: center; }
  .games-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .gallery-item { flex: 1 1 100%; max-width: 100%; }
  .cookie-banner { flex-direction: column; gap: 16px; }
  .cookie-actions { width: 100%; justify-content: stretch; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
  .rp-cards { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .hero-content { padding: 0 16px; }
  .hero-eyebrow { font-size: 0.62rem; letter-spacing: 2px; }
  .footer-disclaimer { padding: 18px 16px; }
}
