/* ================================================
   Kreationware Website — Stylesheet
   Edit colors via the :root variables below.
   ================================================ */

:root {
  --bg:           #0a0a0a;
  --bg-2:         #111111;
  --bg-3:         #181818;
  --accent:       #c8852a;
  --accent-hover: #e09b3d;
  --text:         #e5e5e5;
  --text-muted:   #888888;
  --border:       #252525;
  --header-h:     68px;
  --secnav-h:     46px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Rajdhani', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.03em;
}

/* ── Header ─────────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 200;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.header-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo img {
  height: 36px;
  width: auto;
}

.logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active { color: var(--accent); }

/* ── Hamburger ───────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

/* ── Mobile nav ──────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  inset: auto 0 auto;
  background: rgba(10,10,10,0.98);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem;
  z-index: 199;
  flex-direction: column;
  gap: 0;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover      { color: var(--accent); }

/* ── Page body offset ────────────────────────── */
main { padding-top: var(--header-h); }

/* ── Hero ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.5) 0%,
    rgba(10,10,10,0.2) 40%,
    rgba(10,10,10,0.85) 100%
  );
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(200,133,42,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.2rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.8);
}

.hero-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.btn-group {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.75rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

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

/* ── Sections ────────────────────────────────── */
.section { padding: 5rem 2rem; }
.section.alt { background: var(--bg-2); }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.6rem;
}

.section-rule {
  width: 36px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}

/* ── Games grid (home) ───────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.game-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
  overflow: hidden;
}

.game-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.game-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.game-card:hover .game-card-thumb img { transform: scale(1.04); }

.game-card-thumb-placeholder {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.game-card-body { padding: 1.5rem; }

.game-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.game-card h3 {
  font-size: 1.55rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.15rem;
}

.game-card-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.9rem;
}

.game-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* ── CTA band ────────────────────────────────── */
.cta-band {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Game detail page ────────────────────────── */
.game-hero {
  position: relative;
  padding: 5rem 2rem 3rem;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.game-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.game-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.9) 80%, var(--bg) 100%);
}

.game-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.game-detail-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.game-desc { font-size: 0.975rem; color: var(--text-muted); line-height: 1.75; }

.features-heading {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 2.5rem 0 1rem;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.features-list li {
  display: flex;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.features-list li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Feature cards grid ──────────────────────── */
.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1rem;
}

.feature-card {
  padding: 1.1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-bottom: 1px solid var(--border);
}

.feature-card:first-child { border-top: 1px solid var(--border); }

.feature-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1.2;
}

.feature-card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Screenshot carousel ─────────────────────── */
.carousel {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  margin-top: 1rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  aspect-ratio: 16 / 9;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.75);
  border: 1px solid var(--border);
  color: var(--text);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s, border-color 0.2s;
  z-index: 2;
}

.carousel-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.carousel-btn.prev { left: 0.75rem; }
.carousel-btn.next { right: 0.75rem; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.carousel-dot.active { background: var(--accent); }

.game-sidebar {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: calc(var(--header-h) + var(--secnav-h) + 1.5rem);
}

.sidebar-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sidebar-info-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sidebar-info-value { font-size: 0.9rem; color: var(--text); }

.sidebar-divider {
  height: 1px;
  background: var(--border);
}

/* ── About logo hero ─────────────────────────── */
.about-logo-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 3rem 2rem 2.5rem;
}

.about-logo-img {
  max-height: 54vh;
  max-width: 50vw;
  width: auto;
  height: auto;
  display: block;
}

/* ── About page ──────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-body p {
  font-size: 0.975rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.pillar {
  padding: 1.1rem 1.5rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
}

.pillar h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 0.25rem;
}

.pillar p { font-size: 0.875rem; color: var(--text-muted); }

/* ── Contact page ────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group textarea { min-height: 140px; }

.form-success {
  font-size: 1.1rem;
  color: var(--accent);
  padding: 2rem 0;
}

.contact-aside h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1rem;
}

.contact-aside p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.social-link:hover { color: var(--accent); }

.social-link i { width: 16px; font-size: 1rem; }

/* ── Legal page ──────────────────────────────── */
.legal-body {
  max-width: 740px;
}

.legal-body h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 2rem 0 0.6rem;
}

.legal-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

/* ── Footer ──────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--accent); }

.footer-socials {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.footer-socials a {
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: color 0.2s;
}

.footer-socials a:hover { color: var(--accent); }

.footer-copy {
  font-size: 0.72rem;
  color: #444;
  letter-spacing: 0.06em;
}

/* ── Devlog ──────────────────────────────────── */
.devlog-list {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.devlog-entry {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.devlog-entry:first-child { border-top: 1px solid var(--border); }

.devlog-date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 0.25rem;
}

.devlog-title {
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.devlog-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.6rem;
}

.devlog-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.devlog-content ul li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}

.devlog-content ul li::before {
  content: '—';
  color: var(--accent);
  position: absolute;
  left: 0;
}

.devlog-content h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 1rem 0 0.4rem;
}

.devlog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 1rem;
  transition: gap 0.2s;
}

.devlog-link:hover { gap: 0.65rem; }

@media (max-width: 600px) {
  .devlog-entry {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* ── Section nav ─────────────────────────────── */
.section-nav {
  position: sticky;
  top: var(--header-h);
  height: var(--secnav-h);
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 190;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.section-nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.section-nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.section-nav-links::-webkit-scrollbar { display: none; }

.section-nav-link {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.28rem 0.65rem;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.section-nav-link:hover,
.section-nav-link.active {
  color: var(--accent);
  border-color: var(--accent);
}

.section-nav-music {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.82rem;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.section-nav-music:hover,
.section-nav-music.playing {
  color: var(--accent);
  border-color: var(--accent);
}

/* ── Lightbox ────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}

.lightbox.open { display: flex; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  user-select: none;
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(10,10,10,0.8);
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  z-index: 1001;
}

.lightbox-close:hover { background: var(--accent); border-color: var(--accent); }

.lightbox-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.8);
  border: 1px solid var(--border);
  color: var(--text);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s;
  z-index: 1001;
}

.lightbox-btn:hover { background: var(--accent); border-color: var(--accent); }
.lightbox-btn.prev  { left: 1rem; }
.lightbox-btn.next  { right: 1rem; }

.lightbox-counter {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* make carousel slides show pointer cursor */
.carousel-slide { cursor: zoom-in; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 960px) {
  .nav            { display: none; }
  .hamburger      { display: flex; }

  .game-detail-wrap,
  .contact-wrap   { grid-template-columns: 1fr; }

  .about-grid     { grid-template-columns: 1fr; gap: 2.5rem; }

  .game-sidebar   { position: static; }
}

@media (max-width: 600px) {
  .section  { padding: 3.5rem 1.25rem; }
  .hero     { padding: 3rem 1.25rem; }
  .game-hero { padding: 4rem 1.25rem 2rem; }
  .game-detail-wrap { padding: 2rem 1.25rem; }
}
