/* ═══════════════════════════════════════
   GAME PAGE — game.css
   Supplemental styles for /game/index.html
   Inherits variables and base from style.css
═══════════════════════════════════════ */

/* ── Shared section helpers ── */
.gp-lead {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 760px;
  margin-bottom: 48px;
}

/* ═══════════════════════════════════════
   1. HERO BANNER
═══════════════════════════════════════ */
#game-hero {
  position: relative;
  width: 100%;
  min-height: 540px;
  overflow: hidden;
  margin-top: 0;
}

.game-hero-wrap {
  position: relative;
  width: 100%;
  min-height: 540px;
}

.game-hero-bg {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.game-hero-overlay {
  position: relative;
  z-index: 2;
  min-height: 540px;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(0,0,0,0.88) 45%, rgba(0,0,0,0.3) 100%);
  padding: 100px 220px;
}

.game-hero-content {
  max-width: 640px;
}

.game-hero-label {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.game-hero-content h1 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 20px;
}

.game-hero-content h1 span { color: var(--yellow); }

.game-hero-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 12px;
}

.btn-hero-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 13px 36px;
  background: #25D366;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-hero-play:hover { opacity: 0.88; transform: translateY(-2px); }

/* ═══════════════════════════════════════
   2. GAME LIST — CATALOG
═══════════════════════════════════════ */
#game-list { background: #0d0d0d; }

.catalog-intro {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
}

/* ── Filter Tabs ── */
.game-filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.game-filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}
.game-filter-tab span {
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,0.08);
  padding: 1px 7px;
  border-radius: 10px;
  transition: background 0.2s;
}
.game-filter-tab:hover {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.game-filter-tab.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}
.game-filter-tab.active span {
  background: rgba(0,0,0,0.15);
}

/* ── Catalog Grid ── */
.game-catalog-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.catalog-card.hidden { display: none; }

/* ── Catalog Card ── */
.catalog-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #1a1a1a;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}
.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}

.catalog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.catalog-card:hover img { transform: scale(1.07); }

/* Always-visible name at bottom */
.catalog-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 28px 10px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
  pointer-events: none;
}
.catalog-title {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  display: block;
}

/* Hover overlay — play button */
.catalog-hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.catalog-card:hover .catalog-hover { opacity: 1; }

.catalog-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 8px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.catalog-play-btn:hover { opacity: 0.88; }

/* Category badge — top right */
.catalog-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 4;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
}
.catalog-badge.slot   { color: #f3c600; border-color: rgba(243,198,0,0.35); }
.catalog-badge.crash  { color: #ff7675; border-color: rgba(255,118,117,0.35); }
.catalog-badge.egames { color: #74b9ff; border-color: rgba(116,185,255,0.35); }
.catalog-badge.moon   { color: #a29bfe; border-color: rgba(162,155,254,0.35); }

/* ═══════════════════════════════════════
   3. PLATFORM OVERVIEW
═══════════════════════════════════════ */
#platform-overview {
  background: #000;
  padding: 80px 220px;
}

.platform-inner > h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 48px;
  position: relative;
}
.platform-inner > h2 span { color: var(--yellow); }
.platform-inner > h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-top: 10px;
}

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

.platform-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 16px;
}

.platform-features h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.feat-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 16px 20px;
  transition: border-color 0.2s, background 0.2s;
}
.feat-card:hover {
  border-color: rgba(243,198,0,0.3);
  background: rgba(243,198,0,0.04);
}

.feat-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(243,198,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feat-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--yellow);
}

.feat-card-text {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  line-height: 1.4;
}

/* ═══════════════════════════════════════
   4. SLOT GAMES EXPERIENCE
═══════════════════════════════════════ */
#slot-experience { background: #0a0a0a; }

.slot-intro {
  max-width: 820px;
  margin-bottom: 52px;
}
.slot-intro p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 16px;
}

.slot-feat-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.slot-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.slot-feat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

.slot-footnote {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-top: 8px !important;
}

/* Two H3 cards */
.slot-h3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.slot-h3-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}
.slot-h3-card:hover { border-color: rgba(243,198,0,0.2); }

.slot-h3-num {
  font-size: 56px;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  pointer-events: none;
}

.slot-h3-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 14px;
  line-height: 1.35;
}

.slot-h3-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}

.slot-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0;
}

.slot-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.slot-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
  margin-top: 6px;
}
.slot-step-dot.yellow { background: var(--yellow); }

/* ═══════════════════════════════════════
   5. BEYOND SLOTS
═══════════════════════════════════════ */
#beyond-slots {
  background: #060606;
  padding: 80px 220px;
}

.beyond-inner > h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}
.beyond-inner > h2 span { color: var(--yellow); }
.beyond-inner > h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-top: 10px;
}

.beyond-lead {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 680px;
  margin: 20px 0 44px;
}

.beyond-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 36px;
}

.beyond-divider {
  display: flex;
  justify-content: center;
  padding-top: 44px;
}
.beyond-divider::before {
  content: '';
  display: block;
  width: 1px;
  height: 140px;
  background: rgba(255,255,255,0.08);
}

.beyond-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.beyond-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.beyond-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.beyond-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

.beyond-list.secondary li::before {
  background: rgba(255,255,255,0.3);
}

.beyond-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
}

/* ═══════════════════════════════════════
   6. ACCESS GAMING
═══════════════════════════════════════ */
#access-gaming { background: #000; }

.access-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.access-step {
  flex: 1;
  min-width: 160px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s;
}
.access-step:hover { border-color: rgba(243,198,0,0.25); }

.access-step-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 12px;
}

.access-step-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  line-height: 1.5;
}

.access-arrow {
  padding: 0 16px;
  flex-shrink: 0;
}
.access-arrow svg {
  width: 22px;
  height: 22px;
  stroke: rgba(243,198,0,0.4);
}

.access-benefits {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.access-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  padding: 10px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
}
.access-benefit svg { stroke: var(--yellow); flex-shrink: 0; }

/* ═══════════════════════════════════════
   7. MULTI-DEVICE
═══════════════════════════════════════ */
#multi-device {
  background: #0d0d0d;
  padding: 80px 220px;
}

.device-inner > h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}
.device-inner > h2 span { color: var(--yellow); }
.device-inner > h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-top: 10px;
}

.device-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0 36px;
}

.device-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.device-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}

.device-card.featured {
  border-color: var(--yellow);
  background: rgba(243,198,0,0.05);
}
.device-card.featured:hover { border-color: var(--yellow); }

.device-badge-featured {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
}

.device-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.device-card.featured .device-icon {
  background: rgba(243,198,0,0.12);
}
.device-icon svg {
  width: 32px;
  height: 32px;
  stroke: rgba(255,255,255,0.7);
}
.device-card.featured .device-icon svg { stroke: var(--yellow); }

.device-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.device-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.device-tag {
  display: inline-block;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.device-card.featured .device-tag {
  background: rgba(243,198,0,0.12);
  border-color: rgba(243,198,0,0.25);
  color: var(--yellow);
}

.device-note {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   8. WHY JOKER123
═══════════════════════════════════════ */
#why-joker { background: #060606; }

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover {
  border-color: rgba(243,198,0,0.2);
  transform: translateY(-4px);
}

.why-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.why-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(243,198,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-card-icon svg { width: 20px; height: 20px; stroke: var(--yellow); }

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
}

.why-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

.why-note {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   9. GET STARTED
═══════════════════════════════════════ */
#get-started {
  background: #000;
  padding: 80px 220px;
}

.getstart-inner > h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}
.getstart-inner > h2 span { color: var(--yellow); }
.getstart-inner > h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-top: 10px;
}

.getstart-inner > p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin: 20px 0 52px;
  max-width: 600px;
}

.getstart-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.getstart-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.getstart-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.getstart-label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  line-height: 1.5;
  max-width: 130px;
}

.getstart-line {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow) 0%, rgba(243,198,0,0.2) 100%);
  margin-bottom: 44px;
}

/* ═══════════════════════════════════════
   10. STABLE GAMING
═══════════════════════════════════════ */
#stable-gaming { background: #0a0a0a; }

.stable-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stable-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}
.stable-card:hover { border-color: rgba(243,198,0,0.2); }

.stable-card-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  border-radius: 14px 14px 0 0;
}

.stable-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(243,198,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.stable-icon svg { width: 22px; height: 22px; stroke: var(--yellow); }

.stable-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.stable-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ═══════════════════════════════════════
   11. FAQ
═══════════════════════════════════════ */
#faq {
  background: #050505;
  padding: 80px 220px;
}

.faq-inner > h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 48px;
}
.faq-inner > h2 span { color: var(--yellow); }
.faq-inner > h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin-top: 10px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 860px;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item:hover { border-color: rgba(255,255,255,0.15); }
.faq-item.open { border-color: rgba(243,198,0,0.25); }

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  user-select: none;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--yellow);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
}

/* ═══════════════════════════════════════
   12. FINAL CTA
═══════════════════════════════════════ */
#game-cta {
  background: linear-gradient(135deg, #0d0d00 0%, #1a1400 50%, #0a0900 100%);
  border-top: 3px solid var(--yellow);
  padding: 80px 220px;
}

.game-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.game-cta-text {
  flex: 1;
}

.game-cta-text h2 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 16px;
}
.game-cta-text h2 span { color: var(--yellow); }

.game-cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 540px;
}

.game-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 44px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-cta-primary:hover { opacity: 0.88; transform: translateY(-2px); }

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 44px;
  border: 2px solid #25D366;
  border-radius: 8px;
  background: transparent;
  color: #25D366;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-cta-whatsapp:hover { background: #25D366; color: #fff; }
.btn-cta-whatsapp svg { fill: currentColor; flex-shrink: 0; }

/* ═══════════════════════════════════════
   RESPONSIVE — 1100px
═══════════════════════════════════════ */
/* ── Show More Button ── */
.catalog-showmore-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.catalog-showmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 40px;
  border: 2px solid var(--yellow);
  border-radius: 8px;
  background: transparent;
  color: var(--yellow);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.catalog-showmore-btn:hover { background: var(--yellow); color: var(--black); }
.catalog-showmore-btn svg { transition: transform 0.2s; }
.catalog-showmore-btn:hover svg { transform: translateY(2px); }
.catalog-showless-btn:hover svg { transform: translateY(-2px); }

@media (max-width: 1400px) {
  .game-catalog-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1100px) {
  .game-hero-overlay { padding: 100px 40px; }
  #platform-overview { padding: 80px 40px; }
  .platform-grid { grid-template-columns: 1fr; gap: 40px; }
  #beyond-slots { padding: 80px 40px; }
  #multi-device { padding: 80px 40px; }
  .device-cards { grid-template-columns: 1fr; gap: 16px; }
  .device-card.featured .device-badge-featured { display: none; }
  #get-started { padding: 80px 40px; }
  #faq { padding: 80px 40px; }
  #game-cta { padding: 80px 40px; }
  .game-cta-inner { flex-direction: column; gap: 40px; }
  .game-cta-actions { flex-direction: row; }
  .slot-h3-grid { grid-template-columns: 1fr; }
  .why-cards { grid-template-columns: 1fr; gap: 16px; }
  .stable-cards { grid-template-columns: 1fr; gap: 16px; }
  .game-catalog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hero */
  #game-hero { min-height: 420px; }
  .game-hero-wrap { min-height: 420px; }
  .game-hero-bg { min-height: 420px; }
  .game-hero-overlay {
    padding: 80px 24px 40px;
    min-height: 420px;
    background: rgba(0,0,0,0.8);
  }
  .game-hero-content h1 { font-size: 22px; }
  .game-hero-content p { font-size: 13px; }

  /* Shared: elements inside .section that need side padding */
  .gp-lead { padding: 0 24px; }

  /* Catalog */
  .catalog-intro { padding: 0 24px; }
  .game-filter-tabs { padding: 0 24px; }
  .game-catalog-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 0 24px; }
  .catalog-showmore-wrap { padding: 0 24px; }

  /* Platform */
  #platform-overview { padding: 60px 24px; }
  .platform-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Slot */
  .slot-intro { padding: 0 24px; }
  .slot-feat-row { flex-direction: column; gap: 12px; }
  .slot-h3-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 24px; }
  .slot-h3-card { padding: 24px 20px; }

  /* Beyond */
  #beyond-slots { padding: 60px 24px; }
  .beyond-grid { grid-template-columns: 1fr; }
  .beyond-divider { display: none; }

  /* Access */
  #access-gaming.section { padding: 60px 24px; }
  .access-steps { flex-direction: column; gap: 12px; }
  .access-arrow { transform: rotate(90deg); padding: 4px 0; }
  .access-step { width: 100%; }
  .access-benefits { flex-direction: column; gap: 10px; }

  /* Device */
  #multi-device { padding: 60px 24px; }
  .device-cards { grid-template-columns: 1fr; }

  /* Why */
  .why-cards { grid-template-columns: 1fr; padding: 0 24px; }

  /* Get Started */
  #get-started { padding: 60px 24px; }
  .getstart-steps { flex-direction: column; align-items: center; }
  .getstart-line {
    width: 2px;
    height: 40px;
    flex: 0 0 40px;
    background: linear-gradient(180deg, var(--yellow) 0%, rgba(243,198,0,0.2) 100%);
    margin-bottom: 0;
  }
  .getstart-step { width: 100%; flex-direction: row; gap: 20px; text-align: left; }
  .getstart-label { max-width: none; }

  /* Stable */
  .stable-cards { grid-template-columns: 1fr; padding: 0 24px; }

  /* FAQ */
  #faq { padding: 60px 24px; }

  /* CTA */
  #game-cta { padding: 60px 24px; }
  .game-cta-inner { flex-direction: column; gap: 32px; }
  .game-cta-actions { flex-direction: column; width: 100%; }
  .btn-cta-primary,
  .btn-cta-whatsapp { width: 100%; }
}
