/* CACHE-PROOF */

:root{
  --gh-bg: #0b0f14;
  --gh-surface: #0f1620;
  --gh-card: #121c28;
  --gh-text: #e6edf3;
  --gh-muted: rgba(230,237,243,.72);

  /* GameHub neon accent */
  --gh-accent: #39ff14;
  --gh-accent-2: #2bd90f;

  --gh-border: rgba(255,255,255,.10);
  --gh-shadow: 0 10px 28px rgba(0,0,0,.45);
  --gh-radius: 14px;
}

body{
  background: var(--gh-bg);
  color: var(--gh-text);
}

/* Make links + accents match GameHub */
a, .text-primary, .link-primary{
  color: var(--gh-accent);
}
a:hover{
  color: var(--gh-accent-2);
}

/* Buttons */
.btn-primary{
  background: var(--gh-accent);
  border-color: var(--gh-accent);
  color: #071006;
  font-weight: 700;
}
.btn-primary:hover{
  background: var(--gh-accent-2);
  border-color: var(--gh-accent-2);
  color: #071006;
}

/* Cards / panels */
.card, .panel, .client-home-panels .panel{
  background: var(--gh-surface);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
  box-shadow: var(--gh-shadow);
}

/* Navbar */
.navbar, .top-nav, .main-nav{
  background: rgba(11,15,20,.92);
  border-bottom: 1px solid var(--gh-border);
  backdrop-filter: blur(10px);
}

/* Form controls */
.form-control, input, select, textarea{
  background: var(--gh-card) !important;
  border: 1px solid var(--gh-border) !important;
  color: var(--gh-text) !important;
}
.form-control:focus{
  border-color: var(--gh-accent) !important;
  box-shadow: 0 0 0 .2rem rgba(57,255,20,.18) !important;
}

/* Subtle separators */
hr, .border, .table, .list-group-item{
  border-color: var(--gh-border) !important;
}

/* =========================
   WHMCS body + page wrappers
   ========================= */

html, body {
  background: var(--gh-bg) !important;
  color: var(--gh-text);
}

/* Twenty-One / modern themes often wrap content in these */
#main-body,
#main-body .container,
.content-wrapper,
.main-content,
section#main-body {
  background: transparent !important;
}

/* Breadcrumb/page title areas sometimes have their own background */
.page-header,
.section-header,
.header-lined,
.breadcrumb,
.breadcrumb-container {
  background: transparent !important;
  border: 0 !important;
}

/* Headings were washed out in your screenshot */
h1, h2, h3, h4, h5, h6,
.page-header h1,
.header-lined h1,
.header-lined h2,
.section-header h2 {
  color: var(--gh-text) !important;
  opacity: 1 !important;
}

/* General text helpers WHMCS uses */
.text-muted,
.small,
.breadcrumb-item,
.breadcrumb a {
  color: var(--gh-muted) !important;
  opacity: 1 !important;
}

/* =========================
   Portal Home (clientarea) tiles/panels
   ========================= */

/* The white panels/tiles on Portal Home */
.client-home-panels .panel,
.client-home-panels .panel-body,
.client-home-panels .panel-footer,
.tiles .tile,
.tiles .tile .stat {
  background: var(--gh-surface) !important;
  border: 1px solid var(--gh-border) !important;
  border-radius: var(--gh-radius) !important;
  box-shadow: var(--gh-shadow) !important;
}

/* Tile/panel text and icons */
.client-home-panels .panel * ,
.tiles .tile * {
  color: var(--gh-text) !important;
}

/* Fix “ghosted” portal headings that were nearly invisible */
.client-home-panels h2,
.client-home-panels .panel-title,
.tiles .tile-title {
  color: var(--gh-text) !important;
  opacity: 1 !important;
}

/* Make the search bar match the theme */
#header .form-control,
.navbar .form-control,
#main-menu .form-control,
.knowledgebase-search .form-control {
  background: var(--gh-card) !important;
  border: 1px solid var(--gh-border) !important;
  color: var(--gh-text) !important;
}

/* Dropdowns/menus (Account, Store) */
.dropdown-menu {
  background: var(--gh-surface) !important;
  border: 1px solid var(--gh-border) !important;
}
.dropdown-menu a {
  color: var(--gh-text) !important;
}
.dropdown-menu a:hover {
  background: rgba(57,255,20,.08) !important;
}

/* ===== Force dark theme on actual WHMCS containers (not just body) ===== */

/* Covers Twenty-One/Six wrappers that often set the page background */
body,
.wrapper,
.main-body,
.content-wrapper,
.main-content,
#main-body,
section#main-body,
#main-body > .container,
#main-body .container,
.container-fluid,
.homepage,
.client-home-panels {
  background: var(--gh-bg) !important;
  color: var(--gh-text) !important;
}

/* Remove “light strip” sections */
.page-header,
.section-header,
.header-lined,
.breadcrumb,
.breadcrumb-container,
.well,
.alert,
.panel,
.card {
  background: transparent !important;
}

/* Fix washed-out headings on portal home (your screenshot) */
h1, h2, h3, h4, h5, h6,
.header-lined h1,
.header-lined h2,
.client-home-panels h2 {
  color: var(--gh-text) !important;
  opacity: 1 !important;
}

/* Force portal tiles/panels to be dark instead of white */
.client-home-panels .panel,
.client-home-panels .panel-body,
.client-home-panels .panel-footer,
.tiles .tile,
.tiles .tile .stat,
.home-kb-search,
.home-shortcuts {
  background: var(--gh-surface) !important;
  border: 1px solid var(--gh-border) !important;
  border-radius: var(--gh-radius) !important;
  box-shadow: var(--gh-shadow) !important;
}

/* Make sure text/icons inside those tiles are readable */
.client-home-panels .panel *,
.tiles .tile *,
.home-shortcuts * {
  color: var(--gh-text) !important;
}

/* Inputs/search box in header */
.navbar input,
.navbar .form-control,
#header .form-control {
  background: var(--gh-card) !important;
  border: 1px solid var(--gh-border) !important;
  color: var(--gh-text) !important;
}

/* =========================
   GameHub Navbar Link Styling
   ========================= */

/* Top-level nav links */
.navbar-nav > li > a,
.navbar-nav > li > a:visited,
.navbar-nav > li > a:focus,
.main-nav a,
.top-nav a {
  color: var(--gh-accent) !important;
  font-weight: 600;
  letter-spacing: .2px;
}

/* Hover state */
.navbar-nav > li > a:hover,
.main-nav a:hover,
.top-nav a:hover {
  color: var(--gh-accent-2) !important;
  text-shadow: 0 0 6px rgba(57,255,20,.35);
}

/* Active / current page */
.navbar-nav > .active > a,
.navbar-nav > .active > a:hover,
.navbar-nav > .open > a {
  color: var(--gh-accent) !important;
  border-bottom: 2px solid var(--gh-accent);
  background: transparent !important;
}

/* Dropdown caret color */
.navbar-nav .caret {
  border-top-color: var(--gh-accent) !important;
  border-bottom-color: var(--gh-accent) !important;
}

/* Dropdown menu items */
.dropdown-menu a {
  color: var(--gh-text) !important;
  font-weight: 500;
}

.dropdown-menu a:hover {
  color: var(--gh-accent) !important;
  background: rgba(57,255,20,.08) !important;
}

/* =========================
   FORCE GameHub neon navbar links (Twenty-One)
   ========================= */

/* Normal nav links */
.navbar .navbar-nav .nav-link,
.navbar .navbar-nav .nav-link:visited {
  color: var(--gh-accent) !important;
  font-weight: 600;
}

/* Hover */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus {
  color: var(--gh-accent-2) !important;
  text-shadow: 0 0 6px rgba(57,255,20,.35);
}

/* Active page */
.navbar .navbar-nav .nav-item.active > .nav-link,
.navbar .navbar-nav .nav-link.active {
  color: var(--gh-accent) !important;
  border-bottom: 2px solid var(--gh-accent);
  background: transparent !important;
}

/* Dropdown toggle links (Store, Account) */
.navbar .dropdown-toggle {
  color: var(--gh-accent) !important;
}

/* Fix caret / arrow */
.navbar .dropdown-toggle::after {
  border-top-color: var(--gh-accent) !important;
}

/* =========================
   Remove the gap under the header/nav
   ========================= */

/* Navbar sometimes has bottom margin */
.navbar {
  margin-bottom: 0 !important;
}

/* Twenty-One commonly adds spacing here */
#main-body,
section#main-body,
.main-content,
.content-wrapper {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Containers sometimes add padding that looks like a gap */
#main-body > .container,
section#main-body > .container,
.content-wrapper > .container {
  padding-top: 0 !important;
}

/* Some pages use a page-header block with top padding */
.page-header,
.header-lined,
.section-header {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.wrapper {
  padding-top: 0 !important;
}

/* =========================
   Remove the empty grey strip under the navbar
   (WHMCS breadcrumb/sub-header area)
   ========================= */

/* Make breadcrumb/sub-header areas transparent by default */
.breadcrumb,
.breadcrumb-container,
.breadcrumb-wrapper,
#breadcrumb,
#breadcrumbs,
.sub-header,
.secondary-nav,
.page-header {
  background: transparent !important;
}

/* If the breadcrumb container is empty, collapse it completely */
.breadcrumb:empty,
.breadcrumb-container:empty,
.breadcrumb-wrapper:empty,
#breadcrumb:empty,
#breadcrumbs:empty,
.sub-header:empty,
.secondary-nav:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  border: 0 !important;
}

/* Some themes add padding even when “empty” — force it off */
.breadcrumb,
.breadcrumb-container,
.breadcrumb-wrapper,
.sub-header,
.secondary-nav {
  margin: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border: 0 !important;
}

/* Ensure the content starts flush */
#main-body,
section#main-body,
.content-wrapper,
.main-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* =========================
   Collapse the remaining spacer bar under navbar
   ========================= */

/* Nuke vertical spacing on common sub-header/breadcrumb wrappers */
.breadcrumb,
.breadcrumb-container,
.breadcrumb-wrapper,
#breadcrumb,
#breadcrumbs,
.sub-header,
.secondary-nav,
.header-lined,
.page-header,
.page-title,
.page-title-bar {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  min-height: 0 !important;
}

/* Some themes put the gap on the first container/row inside main-body */
#main-body > .container:first-child,
section#main-body > .container:first-child,
.content-wrapper > .container:first-child,
#main-body .container:first-child .row:first-child,
section#main-body .container:first-child .row:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* If there's a “system” message area reserving space, collapse when empty */
.message-container,
#main-body .alert-container,
#main-body .alerts,
#main-body .system-alerts {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  background: transparent !important;
}

/* Kill any top padding on main content wrapper that can appear as a strip */
#main-body,
section#main-body,
.content-wrapper,
.main-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* =========================
   WHMCS master breadcrumb bar (the gray strip)
   ========================= */

/* Option A: Keep breadcrumbs, remove the strip spacing */
nav.master-breadcrumb {
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  min-height: 0 !important;
}

/* Breadcrumb inner spacing (often the real culprit) */
nav.master-breadcrumb .breadcrumb {
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Make breadcrumb links readable on dark */
nav.master-breadcrumb .breadcrumb a {
  color: var(--gh-muted) !important;
}
nav.master-breadcrumb .breadcrumb .active {
  color: var(--gh-text) !important;
}

/* =========================
   GameHub Home Layout
   ========================= */

.gh-home { padding: 24px 0; }

.gh-hero {
  padding: 44px 0 28px 0;
  background: radial-gradient(circle at 20% 10%, rgba(57,255,20,.10), transparent 50%),
              radial-gradient(circle at 80% 30%, rgba(57,255,20,.06), transparent 55%);
}

.gh-hero-inner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 18px;
}

.gh-hero-title {
  font-size: 2.4rem;
  font-weight: 900;
  margin: 0 0 10px 0;
}

.gh-accent { color: var(--gh-accent); }

.gh-hero-subtitle {
  color: var(--gh-muted);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 0 18px 0;
}

.gh-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }

.btn-outline-light {
  border: 1px solid var(--gh-border) !important;
  color: var(--gh-text) !important;
  background: transparent !important;
}
.btn-outline-light:hover {
  border-color: var(--gh-accent) !important;
  color: var(--gh-accent) !important;
}

.gh-hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.gh-badge {
  padding: 8px 12px;
  border: 1px solid var(--gh-border);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  color: var(--gh-muted);
  font-weight: 600;
  font-size: .92rem;
}

.gh-section {
  max-width: 1050px;
  margin: 0 auto;
  padding: 26px 18px;
}

.gh-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.gh-section h2 {
  margin: 0;
  font-weight: 900;
}

.gh-link { color: var(--gh-accent) !important; font-weight: 700; }
.gh-link:hover { color: var(--gh-accent-2) !important; }

.gh-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 1100px) { .gh-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .gh-grid { grid-template-columns: 1fr; } }

.gh-card {
  display: block;
  padding: 16px;
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
  background: rgba(255,255,255,.03);
  box-shadow: var(--gh-shadow);
  text-decoration: none !important;
  transition: transform .12s ease, border-color .12s ease;
}
.gh-card:hover {
  transform: translateY(-2px);
  border-color: rgba(57,255,20,.35);
}

.gh-card-title { font-size: 1.05rem; font-weight: 900; color: var(--gh-text); margin-bottom: 6px; }
.gh-card-sub   { color: var(--gh-muted); margin-bottom: 10px; }
.gh-card-cta   { color: var(--gh-accent); font-weight: 800; }

.gh-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 900px) { .gh-steps { grid-template-columns: 1fr; } }

.gh-step {
  padding: 16px;
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
  background: rgba(255,255,255,.03);
}

.gh-step-num {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(57,255,20,.12);
  color: var(--gh-accent);
  font-weight: 900;
  margin-bottom: 10px;
}

.gh-step-title { font-weight: 900; margin-bottom: 4px; }
.gh-step-text  { color: var(--gh-muted); }

.gh-grid-small { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .gh-grid-small { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .gh-grid-small { grid-template-columns: 1fr; } }

.gh-mini {
  display: block;
  padding: 14px;
  text-align: center;
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
  background: rgba(255,255,255,.03);
  text-decoration: none !important;
  color: var(--gh-text) !important;
  font-weight: 800;
}
.gh-mini:hover { border-color: rgba(57,255,20,.35); color: var(--gh-accent) !important; }

/* =========================
   GameHub homepage classes (ported)
   ========================= */

.gh-home { padding-bottom: 30px; }

.gh-hero {
  background: radial-gradient(circle at 20% 10%, rgba(57,255,20,.10), transparent 55%),
              radial-gradient(circle at 80% 30%, rgba(57,255,20,.06), transparent 60%);
}

.text-gh-muted { color: var(--gh-muted) !important; }
.text-gh-soft  { color: rgba(230,237,243,.60) !important; }

.gh-store-card {
  background: rgba(255,255,255,.03) !important;
  border: 1px solid var(--gh-border) !important;
  border-radius: var(--gh-radius) !important;
  box-shadow: var(--gh-shadow) !important;
}

.gh-hr {
  border-color: var(--gh-border) !important;
  opacity: 1 !important;
}

.btn-gh-store {
  background: var(--gh-accent) !important;
  border-color: var(--gh-accent) !important;
  color: #071006 !important;
  font-weight: 800 !important;
}

.btn-gh-store:hover,
.btn-gh-store:focus {
  background: var(--gh-accent-2) !important;
  border-color: var(--gh-accent-2) !important;
  color: #071006 !important;
}

/* =========================
   WHMCS Store (cart.php?gid=) cards: force dark + readable
   ========================= */

/* Most Twenty-One product group “cards” */
#order-standard_cart .products .product,
#order-standard_cart .products .product .product-body,
#order-standard_cart .products .product .product-header,
#order-standard_cart .products .product .product-desc,
#order-standard_cart .products .product .product-pricing,
#order-standard_cart .products .product .product-footer {
  background: var(--gh-surface) !important;
  border: 1px solid var(--gh-border) !important;
  color: var(--gh-text) !important;
}

/* Card title + description */
#order-standard_cart .products .product .product-name,
#order-standard_cart .products .product h3,
#order-standard_cart .products .product h4,
#order-standard_cart .products .product p,
#order-standard_cart .products .product span,
#order-standard_cart .products .product small {
  color: var(--gh-text) !important;
}

/* Muted text inside cards */
#order-standard_cart .products .product .text-muted,
#order-standard_cart .products .product .small {
  color: var(--gh-muted) !important;
  opacity: 1 !important;
}

/* Price styling */
#order-standard_cart .products .product .price,
#order-standard_cart .products .product .pricing,
#order-standard_cart .products .product .product-price {
  color: var(--gh-accent) !important;
  font-weight: 900 !important;
}

/* Buttons in product cards */
#order-standard_cart .products .product .btn,
#order-standard_cart .products .product .btn-primary {
  background: var(--gh-accent) !important;
  border-color: var(--gh-accent) !important;
  color: #071006 !important;
  font-weight: 800 !important;
}
#order-standard_cart .products .product .btn:hover,
#order-standard_cart .products .product .btn-primary:hover {
  background: var(--gh-accent-2) !important;
  border-color: var(--gh-accent-2) !important;
  color: #071006 !important;
}

/* Any “featured” highlight styles that force light backgrounds */
#order-standard_cart .products .product.featured,
#order-standard_cart .products .product.featured .product-header,
#order-standard_cart .products .product.featured .product-body {
  background: var(--gh-surface) !important;
  border-color: rgba(57,255,20,.35) !important;
}

/* Sometimes WHMCS uses Bootstrap .card on cart pages */
#order-standard_cart .card,
#order-standard_cart .card-header,
#order-standard_cart .card-body,
#order-standard_cart .card-footer {
  background: var(--gh-surface) !important;
  border: 1px solid var(--gh-border) !important;
  color: var(--gh-text) !important;
}

/* =========================
   Standard Cart product card header strip (light mode fix)
   ========================= */

#order-standard_cart .products .product .product-header,
#order-standard_cart .products .product .header,
#order-standard_cart .products .product .product-header * {
  background: var(--gh-surface) !important;
  color: var(--gh-text) !important;
  border-bottom: 1px solid var(--gh-border) !important;
}

/* Sometimes the header uses a pseudo background on the title area */
#order-standard_cart .products .product .product-name,
#order-standard_cart .products .product .product-header h3,
#order-standard_cart .products .product .product-header h4 {
  color: var(--gh-text) !important;
}

/* =========================
   Standard Cart left sidebar (categories/cart nav)
   ========================= */

/* The sidebar container */
#order-standard_cart .sidebar,
#order-standard_cart .cart-sidebar,
#order-standard_cart .order-summary,
#order-standard_cart .panel-sidebar,
#order-standard_cart .list-group {
  background: var(--gh-surface) !important;
  border: 1px solid var(--gh-border) !important;
  border-radius: var(--gh-radius) !important;
  overflow: hidden;
}

/* Each item */
#order-standard_cart .list-group-item {
  background: transparent !important;
  border-color: var(--gh-border) !important;
  color: var(--gh-text) !important;
}

/* Links inside the sidebar */
#order-standard_cart .list-group-item a,
#order-standard_cart .list-group-item a:visited {
  color: var(--gh-accent) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

/* Hover */
#order-standard_cart .list-group-item a:hover {
  color: var(--gh-accent-2) !important;
}

/* Active/selected item (the “black/green combo” feel) */
#order-standard_cart .list-group-item.active,
#order-standard_cart .list-group-item.active:focus,
#order-standard_cart .list-group-item.active:hover {
  background: rgba(57,255,20,.10) !important;
  border-color: rgba(57,255,20,.35) !important;
  color: var(--gh-text) !important;
}

#order-standard_cart .list-group-item.active a {
  color: var(--gh-accent) !important;
}

/* Any badges/counts */
#order-standard_cart .list-group-item .badge,
#order-standard_cart .list-group-item .label {
  background: rgba(57,255,20,.16) !important;
  color: var(--gh-accent) !important;
  border: 1px solid rgba(57,255,20,.25) !important;
}

#order-standard_cart .bg-light { background: var(--gh-surface) !important; }
#order-standard_cart .text-dark { color: var(--gh-text) !important; }
/* =========================
   Standard Cart product cards - header strip uses <header><span>
   ========================= */

#order-standard_cart .products .product header,
#order-standard_cart .products .product header span {
  background: var(--gh-surface) !important;
  color: var(--gh-text) !important;
  border-bottom: 1px solid var(--gh-border) !important;
}

/* Some builds use <header> but the bg is applied to the span only */
#order-standard_cart .products .product header span {
  display: block;              /* ensures bg fills the strip */
  width: 100%;
}

/* Ensure the header title text doesn't get forced dark/gray */
#order-standard_cart .products .product header *,
#order-standard_cart .products .product header span * {
  color: var(--gh-text) !important;
}

/* =========================
   GameHub About Page Styling
   ========================= */

.gh-about {
  max-width: 980px;
}

/* Typography */
.gh-about h1, .gh-about h2, .gh-about h3, .gh-about h4 {
  color: var(--gh-text) !important;
  font-weight: 900;
  letter-spacing: .2px;
}

.gh-about p,
.gh-about li {
  color: rgba(230,237,243,.82) !important;
  line-height: 1.65;
  font-size: 1.03rem;
}

.gh-about .lead {
  color: var(--gh-muted) !important;
  font-size: 1.15rem;
}

/* Links */
.gh-about a {
  color: var(--gh-accent) !important;
  font-weight: 700;
}
.gh-about a:hover {
  color: var(--gh-accent-2) !important;
}

/* Section spacing */
.gh-about hr {
  border-color: var(--gh-border) !important;
  opacity: 1 !important;
  margin: 28px 0;
}

/* “Card” look for any boxes/sections */
.gh-about .card,
.gh-about .gh-store-card,
.gh-about .gh-card,
.gh-about .panel {
  background: rgba(255,255,255,.03) !important;
  border: 1px solid var(--gh-border) !important;
  border-radius: var(--gh-radius) !important;
  box-shadow: var(--gh-shadow) !important;
}

/* Lists */
.gh-about ul {
  padding-left: 1.15rem;
}
.gh-about li {
  margin: .35rem 0;
}

/* Optional: highlight boxes */
.gh-about .gh-callout {
  padding: 16px 18px;
  border: 1px solid rgba(57,255,20,.25);
  border-radius: var(--gh-radius);
  background: rgba(57,255,20,.06);
}
.text-gh-muted { color: var(--gh-muted) !important; }
.text-gh-soft  { color: rgba(230,237,243,.60) !important; }

/* =========================
   GameHub About Page (gh-about) styles
   ========================= */

.gh-about { max-width: 1050px; }

/* HERO */
.gh-about .hero {
  padding: 42px 0 24px;
  margin-bottom: 10px;
  background:
    radial-gradient(circle at 20% 10%, rgba(57,255,20,.10), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(57,255,20,.06), transparent 60%);
  border-radius: var(--gh-radius);
}

.gh-about .hero-content { max-width: 980px; }

.gh-about .hero-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin: 0 0 10px 0;
  color: var(--gh-text) !important;
}

.gh-about .hero-subtitle {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--gh-muted) !important;
}

/* SECTION BASE */
.gh-about .about-section {
  padding: 22px 0;
}

.gh-about .about-heading {
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 0 12px 0;
  color: var(--gh-text) !important;
  letter-spacing: .2px;
}

.gh-about .about-text,
.gh-about .about-list li {
  font-size: 1.03rem;
  line-height: 1.65;
  color: rgba(230,237,243,.82) !important;
}

/* TWO COLUMN */
.gh-about .about-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 900px) {
  .gh-about .about-two-column { grid-template-columns: 1fr; }
}

.gh-about .about-column {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
  padding: 16px;
  box-shadow: var(--gh-shadow);
}

/* PILLARS */
.gh-about .about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 900px) {
  .gh-about .about-pillars-grid { grid-template-columns: 1fr; }
}

.gh-about .about-pillar {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
  padding: 16px;
  box-shadow: var(--gh-shadow);
}

.gh-about .about-pillar-title {
  margin: 0 0 8px 0;
  font-weight: 900;
  color: var(--gh-text) !important;
}

/* LISTS */
.gh-about .about-list {
  padding-left: 1.15rem;
  margin: 0;
}
.gh-about .about-list li { margin: .35rem 0; }

/* CTA */
.gh-about .about-cta {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(57,255,20,.25);
  border-radius: var(--gh-radius);
  padding: 18px;
  box-shadow: var(--gh-shadow);
}

.gh-about .about-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Button sizing */
.gh-about .btn-large {
  padding: 12px 18px;
  font-weight: 900;
}

/* Muted link */
.gh-about .about-link-muted {
  color: var(--gh-muted) !important;
  font-weight: 700;
  text-decoration: none !important;
}
.gh-about .about-link-muted:hover {
  color: var(--gh-accent) !important;
}
/* =========================
   About page: neon headers
   ========================= */

.gh-about .hero-title,
.gh-about .about-heading,
.gh-about .about-pillar-title {
  color: var(--gh-accent) !important;
}

/* =========================
   About page CTA button contrast
   ========================= */

.gh-about .btn-primary,
.gh-about .btn-gh-store {
  background: var(--gh-accent) !important;
  border-color: var(--gh-accent) !important;
  color: #071006 !important; /* dark text for contrast */
  font-weight: 900 !important;
}

.gh-about .btn-primary:hover,
.gh-about .btn-gh-store:hover {
  background: var(--gh-accent-2) !important;
  border-color: var(--gh-accent-2) !important;
  color: #071006 !important;
}


/* =========================
   Games page (old store vibe)
   ========================= */

.gh-games-hero {
  padding: 18px 18px 16px;
  border: 1px solid var(--gh-border);
  border-radius: var(--gh-radius);
  background:
    radial-gradient(circle at 20% 10%, rgba(57,255,20,.10), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(57,255,20,.06), transparent 60%);
}

.gh-games-title {
  font-weight: 900;
  color: var(--gh-accent) !important;
  letter-spacing: .2px;
}

.gh-games-subtitle { color: var(--gh-muted) !important; }

.gh-games-controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.gh-games-search {
  background: var(--gh-card) !important;
  border: 1px solid var(--gh-border) !important;
  color: var(--gh-text) !important;
}

.gh-games-chips { display: flex; gap: 8px; flex-wrap: wrap; }

.gh-chip {
  border: 1px solid var(--gh-border);
  background: rgba(255,255,255,.03);
  color: var(--gh-text);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 800;
}
.gh-chip:hover { border-color: rgba(57,255,20,.35); color: var(--gh-accent); }
.gh-chip.is-active {
  background: rgba(57,255,20,.10);
  border-color: rgba(57,255,20,.40);
  color: var(--gh-accent);
}

.gh-games-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

@media (max-width: 1100px) { .gh-games-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .gh-games-grid { grid-template-columns: 1fr; } }

.gh-game-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none !important;
  padding: 14px;
  border-radius: var(--gh-radius);
  border: 1px solid var(--gh-border);
  background: rgba(255,255,255,.03);
  box-shadow: var(--gh-shadow);
  transition: transform .12s ease, border-color .12s ease;
}
.gh-game-card:hover {
  transform: translateY(-2px);
  border-color: rgba(57,255,20,.35);
}

.gh-game-card-top { display: grid; gap: 6px; }
.gh-game-name {
  font-weight: 900;
  color: var(--gh-text) !important;
  font-size: 1.05rem;
}
.gh-game-genre { color: var(--gh-muted) !important; font-weight: 700; }

.gh-game-cta {
  margin-top: 12px;
  color: var(--gh-accent) !important;
  font-weight: 900;
}


