/*
Theme Name: Kadence Child
Template: kadence
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=DM+Sans:wght@400;500;600&display=swap');

/* ── GLOBAL RESETS ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif !important;
  background: #120d2e !important;
  color: #e8e4ff !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Kill Kadence's default white/light backgrounds */
.site, .site-content, .content-area, .wp-site-blocks,
.kadence-blocks-section, #page, #content { background: transparent !important; }

/* ── NAV ── */
.sp-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px; background: rgba(18,13,46,0.98);
  border-bottom: 1px solid rgba(0,229,214,0.1);
  position: sticky; top: 0; z-index: 100;
}
.sp-logo {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 28px; letter-spacing: 2px; text-transform: uppercase;
  color: #00e5d6 !important; text-decoration: none !important;
}
.sp-logo span { color: #fff; }
.sp-nav-links {
  display: flex; gap: 24px; list-style: none; align-items: center; margin: 0; padding: 0;
}
.sp-nav-links a {
  color: rgba(232,228,255,0.55) !important; text-decoration: none !important;
  font-size: 13px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase;
  transition: color 0.2s;
}
.sp-nav-links a:hover { color: #00e5d6 !important; }
.sp-nav-cta {
  background: #00c853 !important; color: #071a0e !important;
  padding: 8px 20px; border-radius: 4px; font-weight: 700 !important;
}
.sp-nav-cta:hover { background: #00e060 !important; }
.sp-nav-toggle {
  display: none; background: none; border: none;
  color: #e8e4ff; font-size: 24px; cursor: pointer;
}

/* Game bar */
.sp-game-bar {
  background: #c0392b; display: flex; align-items: center;
  padding: 0 48px; border-bottom: 1px solid rgba(0,0,0,0.2);
  flex-wrap: wrap;
}
.sp-game-bar a {
  color: #fff !important; text-decoration: none !important;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  padding: 10px 20px; display: block; white-space: nowrap;
  transition: background 0.15s;
}
.sp-game-bar a:hover { background: rgba(0,0,0,0.15); }
.sp-game-bar a:last-child { margin-left: auto; background: rgba(0,0,0,0.15); }
.sp-game-bar a:last-child:hover { background: rgba(0,0,0,0.3); }

/* ── CATEGORY HERO ── */
.sp-cat-hero {
  background: linear-gradient(135deg, #0a0720 0%, #120d2e 100%);
  border-bottom: 1px solid rgba(0,229,214,0.08);
  padding: 56px 48px 48px;
  position: relative; overflow: hidden;
}
.sp-cat-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,229,214,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,229,214,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
}
.sp-cat-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.sp-cat-breadcrumb {
  font-size: 12px; color: rgba(232,228,255,0.3);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.sp-cat-breadcrumb a { color: #00e5d6 !important; text-decoration: none !important; }
.sp-cat-breadcrumb a:hover { color: #fff !important; }
.sp-cat-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 56px; text-transform: uppercase; color: #fff;
  line-height: 1; margin: 0 0 12px; letter-spacing: -1px;
}
.sp-cat-desc { font-size: 16px; color: rgba(232,228,255,0.45); line-height: 1.7; }
.sp-cat-count {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: #00e5d6; background: rgba(0,229,214,0.08);
  border: 1px solid rgba(0,229,214,0.2); border-radius: 2px;
  padding: 4px 12px; margin-top: 16px;
}

/* ── ARCHIVE GRID ── */
.sp-archive { padding: 48px 48px 64px; background: #120d2e; min-height: 60vh; }
.sp-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.sp-post-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(167,139,250,0.08);
  border-radius: 8px; overflow: hidden; text-decoration: none !important;
  display: block; transition: border-color 0.2s, transform 0.2s;
}
.sp-post-card:hover { border-color: rgba(0,229,214,0.25); transform: translateY(-3px); }
.sp-post-card-img {
  height: 200px; overflow: hidden; background: #0d0920;
  position: relative;
}
.sp-post-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease; display: block;
}
.sp-post-card:hover .sp-post-card-img img { transform: scale(1.04); }
.sp-post-card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0d0920, #1a1040);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: rgba(232,228,255,0.1);
}
.sp-post-card-body { padding: 20px; }
.sp-post-card-cats {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px;
}
.sp-post-card-cat {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #00e5d6 !important;
  text-decoration: none !important;
}
.sp-post-card-cat:hover { color: #fff !important; }
.sp-post-card-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: 20px; text-transform: uppercase; color: #fff !important;
  line-height: 1.25; margin-bottom: 10px; text-decoration: none !important;
}
.sp-post-card-excerpt { font-size: 14px; color: rgba(232,228,255,0.35); line-height: 1.65; }
.sp-post-card-meta {
  display: flex; align-items: center; gap: 12px;
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px; color: rgba(232,228,255,0.25);
}

/* ── PAGINATION ── */
.sp-pagination {
  display: flex; justify-content: center; gap: 8px; padding: 0 0 48px;
}
.sp-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(232,228,255,0.5) !important; text-decoration: none !important;
  transition: all 0.15s;
}
.sp-pagination .page-numbers:hover,
.sp-pagination .page-numbers.current {
  background: rgba(0,229,214,0.1); border-color: rgba(0,229,214,0.3);
  color: #00e5d6 !important;
}
.sp-pagination .page-numbers.dots { border: none; background: none; }

/* ── SINGLE POST HERO ── */
.sp-single-hero {
  position: relative; min-height: 460px;
  display: flex; align-items: flex-end; overflow: hidden;
  background: #0a0618;
}
.sp-single-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.3;
}
.sp-single-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,13,46,1) 0%, rgba(18,13,46,0.7) 50%, rgba(18,13,46,0.3) 100%);
}
.sp-single-hero-content {
  position: relative; z-index: 2; padding: 48px;
  max-width: 860px; width: 100%;
}
.sp-single-breadcrumb {
  font-size: 12px; color: rgba(232,228,255,0.3);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.sp-single-breadcrumb a { color: #00e5d6 !important; text-decoration: none !important; }
.sp-single-cats { display: flex; gap: 8px; margin-bottom: 16px; }
.sp-single-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #00e5d6 !important;
  text-decoration: none !important; background: rgba(0,229,214,0.08);
  border: 1px solid rgba(0,229,214,0.2); padding: 4px 12px; border-radius: 2px;
}
.sp-single-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 52px; text-transform: uppercase; color: #fff;
  line-height: 1.0; letter-spacing: -1px; margin: 0 0 20px;
}
.sp-single-meta {
  display: flex; align-items: center; gap: 20px;
  font-size: 13px; color: rgba(232,228,255,0.3);
}
.sp-single-meta-sep { opacity: 0.3; }

/* ── SINGLE POST BODY ── */
.sp-single-body { background: #120d2e; padding: 56px 48px; }
.sp-single-body-inner { max-width: 780px; margin: 0 auto; }

/* Article content typography */
.sp-entry-content { font-size: 17px; line-height: 1.8; color: rgba(232,228,255,0.75); }
.sp-entry-content h1, .sp-entry-content h2, .sp-entry-content h3,
.sp-entry-content h4, .sp-entry-content h5, .sp-entry-content h6 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  text-transform: uppercase; color: #fff; line-height: 1.1;
  margin: 2em 0 0.6em; letter-spacing: -0.5px;
}
.sp-entry-content h2 { font-size: 38px; }
.sp-entry-content h3 { font-size: 28px; }
.sp-entry-content h4 { font-size: 22px; }
.sp-entry-content p { margin: 0 0 1.4em; }
.sp-entry-content a { color: #00e5d6 !important; text-decoration: underline; text-underline-offset: 3px; }
.sp-entry-content a:hover { color: #fff !important; }
.sp-entry-content strong { color: #fff; font-weight: 600; }
.sp-entry-content em { color: rgba(232,228,255,0.85); }
.sp-entry-content ul, .sp-entry-content ol {
  margin: 0 0 1.4em 1.5em; padding: 0;
}
.sp-entry-content li { margin-bottom: 0.4em; }
.sp-entry-content blockquote {
  border-left: 3px solid #00e5d6; margin: 2em 0;
  padding: 16px 24px; background: rgba(0,229,214,0.04);
  border-radius: 0 4px 4px 0; font-size: 18px; font-style: italic;
  color: rgba(232,228,255,0.6);
}
.sp-entry-content blockquote p { margin: 0; }
.sp-entry-content img {
  max-width: 100%; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
}
.sp-entry-content figure { margin: 2em 0; }
.sp-entry-content figcaption {
  font-size: 13px; color: rgba(232,228,255,0.3);
  text-align: center; margin-top: 8px;
}
.sp-entry-content table {
  width: 100%; border-collapse: collapse; margin: 2em 0;
  font-size: 15px;
}
.sp-entry-content table th {
  background: rgba(0,229,214,0.08); color: #00e5d6;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid rgba(0,229,214,0.2);
}
.sp-entry-content table td {
  padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(232,228,255,0.65);
}
.sp-entry-content table tr:hover td { background: rgba(255,255,255,0.02); }
.sp-entry-content code {
  background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px; padding: 2px 6px; font-size: 14px; color: #00c853;
}
.sp-entry-content pre {
  background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: 20px; overflow-x: auto; margin: 2em 0;
}
.sp-entry-content hr {
  border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 2.5em 0;
}

/* Post tags */
.sp-single-tags { margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); }
.sp-single-tags-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(232,228,255,0.3); margin-bottom: 12px;
}
.sp-single-tags-list { display: flex; gap: 8px; flex-wrap: wrap; }
.sp-single-tag {
  font-size: 12px; color: rgba(232,228,255,0.4) !important;
  text-decoration: none !important; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 3px;
  padding: 5px 12px; transition: all 0.15s;
}
.sp-single-tag:hover { color: #00e5d6 !important; border-color: rgba(0,229,214,0.3); }

/* Related posts */
.sp-related { background: #0a0720; padding: 56px 48px; border-top: 1px solid rgba(0,229,214,0.08); }
.sp-related-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 32px; text-transform: uppercase; color: #fff; margin-bottom: 24px;
}
.sp-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* ── FOOTER ── */
.sp-footer {
  background: #060412; border-top: 1px solid rgba(167,139,250,0.06);
  padding: 28px 48px;
}
.sp-footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.sp-footer-logo {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 20px; letter-spacing: 2px; color: #00e5d6; text-transform: uppercase;
}
.sp-footer-logo span { color: rgba(232,228,255,0.25); }
.sp-footer-links { display: flex; gap: 20px; list-style: none; margin: 0; padding: 0; }
.sp-footer-links a {
  font-size: 11px; color: rgba(232,228,255,0.2) !important;
  text-decoration: none !important; text-transform: uppercase; letter-spacing: 0.5px;
  transition: color 0.2s;
}
.sp-footer-links a:hover { color: rgba(232,228,255,0.5) !important; }
.sp-footer-legal { font-size: 11px; color: rgba(232,228,255,0.15); }
.sp-footer-legal a { color: inherit !important; }

/* ── CHECKOUT MODAL ── */
.sp-modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,6,24,0.92); z-index: 9999;
  align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.sp-modal-overlay.open { display: flex; }
.sp-modal {
  background: #0d0920; border: 1px solid rgba(0,229,214,0.2);
  border-radius: 12px; width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto; position: relative; padding: 32px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}
.sp-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.06); border: none;
  color: rgba(232,228,255,0.5); font-size: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.sp-modal-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.sp-modal-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 28px; text-transform: uppercase; color: #fff; margin-bottom: 4px;
}
.sp-modal-sub { font-size: 14px; color: rgba(232,228,255,0.4); margin-bottom: 16px; }
.sp-modal-perks {
  display: flex; flex-direction: column; gap: 7px;
  padding: 16px; background: rgba(0,200,83,0.05);
  border: 1px solid rgba(0,200,83,0.12); border-radius: 6px; margin-bottom: 20px;
}
.sp-modal-perk { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(232,228,255,0.5); }
.sp-perk-dot { width: 5px; height: 5px; background: #00c853; border-radius: 50%; flex-shrink: 0; }
.sp-modal-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 0 0 16px; }
.sp-checkout-loading {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 40px 20px; gap: 16px;
}
.sp-checkout-spinner {
  width: 36px; height: 36px; border: 3px solid rgba(0,229,214,0.15);
  border-top-color: #00e5d6; border-radius: 50%;
  animation: sp-spin 0.8s linear infinite;
}
@keyframes sp-spin { to { transform: rotate(360deg); } }
.sp-checkout-loading-text { font-size: 14px; color: rgba(232,228,255,0.35); }
.sp-checkout-error {
  background: rgba(255,80,50,0.08); border: 1px solid rgba(255,80,50,0.2);
  border-radius: 6px; padding: 14px 16px; font-size: 14px;
  color: #ff8c5a; display: none; margin-bottom: 16px;
}
.sp-modal-fine { font-size: 11px; color: rgba(232,228,255,0.2); text-align: center; margin-top: 16px; }

/* ── NO SIDEBAR / KADENCE OVERRIDES ── */
.kadence-sidebar, .widget-area, .sidebar { display: none !important; }
.content-area, .site-main { max-width: 100% !important; width: 100% !important; float: none !important; }
.entry-header, .entry-footer { display: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .sp-archive-grid, .sp-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .sp-nav { padding: 14px 20px; }
  .sp-nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(18,13,46,0.98); padding: 16px 20px; gap: 12px; border-bottom: 1px solid rgba(0,229,214,0.1); }
  .sp-nav-links.open { display: flex; }
  .sp-nav-toggle { display: block; }
  .sp-game-bar { padding: 0 20px; overflow-x: auto; }
  .sp-game-bar a:last-child { margin-left: 0; }
  .sp-cat-hero, .sp-archive, .sp-single-body, .sp-related { padding-left: 20px; padding-right: 20px; }
  .sp-single-hero-content { padding: 32px 20px; }
  .sp-single-title { font-size: 36px; }
  .sp-cat-title { font-size: 36px; }
  .sp-archive-grid, .sp-related-grid { grid-template-columns: 1fr; }
  .sp-footer { padding: 24px 20px; }
  .sp-footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── KADENCE VARIABLE OVERRIDES (global — applies on all page types) ── */
:root {
  --global-palette1: #00e5d6;
  --global-palette2: #00c853;
  --global-palette3: #ffffff;
  --global-palette4: rgba(232,228,255,0.7);
  --global-palette5: rgba(232,228,255,0.5);
  --global-palette6: rgba(232,228,255,0.35);
  --global-palette7: rgba(232,228,255,0.15);
  --global-palette8: #120d2e;
  --global-palette9: #120d2e;
  --global-palette9rgb: 18, 13, 46;
}

/* Hide Kadence header and footer everywhere */
#masthead, .site-header, .kadence-header,
.site-top-header-wrap, .site-main-header-wrap,
.site-bottom-header-wrap { display: none !important; }
.site-footer, #colophon,
.site-bottom-footer-wrap { display: none !important; }

/* ── GAME BAR DROPDOWNS ── */
.sp-game-bar { overflow: visible !important; }
.sp-game-bar-inner {
  display: flex; align-items: center; justify-content: center;
  overflow-x: auto; overflow-y: visible; scrollbar-width: none;
}
.sp-game-bar-inner::-webkit-scrollbar { display: none; }
.sp-game-bar-item { position: relative; }
.sp-game-bar-item > a {
  color: #fff !important; text-decoration: none !important;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  padding: 10px 18px; display: flex; align-items: center; gap: 5px;
  white-space: nowrap; transition: background 0.15s;
}
.sp-game-bar-item > a:hover,
.sp-game-bar-item:hover > a { background: rgba(0,0,0,.2) !important; }
.sp-game-bar-item.has-dropdown > a::after {
  content: ''; display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid rgba(255,255,255,0.7); margin-left: 4px;
  transition: transform 0.2s;
}
.sp-game-bar-item.has-dropdown:hover > a::after { transform: rotate(180deg); }
.sp-game-bar-dropdown {
  display: none;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  min-width: 220px; z-index: 9999;
  background: #1a0a0a;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid #c0392b;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  padding: 6px 0;
}
.sp-game-bar-item:hover .sp-game-bar-dropdown { display: block; }
.sp-game-bar-dropdown a {
  display: block !important;
  color: rgba(255,255,255,0.75) !important; text-decoration: none !important;
  font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 9px 18px !important; white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.sp-game-bar-dropdown a:hover {
  background: rgba(255,255,255,0.07) !important; color: #fff !important;
}
.sp-dropdown-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 4px 0; }
.sp-game-bar-all {
  margin-left: 12px; padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.sp-game-bar-all a { color: rgba(255,255,255,0.65) !important; font-size: 12px !important; }
.sp-game-bar-all a:hover { color: #fff !important; }
@media(max-width:768px) {
  .sp-game-bar-inner { justify-content: flex-start; padding: 0 16px; }
  .sp-game-bar-dropdown { left: 0; transform: none; }
  .sp-game-bar-all { margin-left: 0; border-left: none; padding-left: 0; }
}

/* ── GAME BAR FINAL OVERRIDES ─────────────────────────────────────────────
   Override original .sp-game-bar rules which conflict with the new
   .sp-game-bar-inner centred layout and dropdown structure
   ──────────────────────────────────────────────────────────────────────── */
.sp-game-bar {
  display: block !important;
  padding: 0 !important;
  overflow: visible !important;
  flex-wrap: unset !important;
}
/* Kill the old rule that pushed the last link right */
.sp-game-bar a:last-child { margin-left: 0 !important; background: transparent !important; }
.sp-game-bar-all a:hover  { background: transparent !important; }

.sp-game-bar-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow-x: auto;
  overflow-y: visible;
  padding: 0 !important;
  flex-wrap: nowrap !important;
}

/* Dropdowns — !important to beat any conflicting display:none */
.sp-game-bar-item:hover .sp-game-bar-dropdown,
.sp-game-bar-item:focus-within .sp-game-bar-dropdown {
  display: block !important;
}

/* Ensure items have position:relative for absolute dropdown positioning */
.sp-game-bar-item {
  position: relative !important;
  display: block !important;
  flex-shrink: 0;
}

/* All Games separator */
.sp-game-bar-all {
  margin-left: 12px !important;
  padding-left: 12px !important;
  border-left: 1px solid rgba(255,255,255,0.15) !important;
}

/* Hide old-structure game bar (direct <a> children = no .sp-game-bar-inner wrapper) */
.sp-game-bar:not(:has(.sp-game-bar-inner)) { display: none !important; }
/* Hide any game bar that precedes another game bar (duplicate) */
.sp-game-bar:has(~ .sp-game-bar) { display: none !important; }
