/* GameHub CMS — base layout (colors from cs2-theme.css) */
:root {
    --gh-navy: #090b10;
    --gh-navy-mid: #0d1117;
    --gh-navy-light: #151b24;
    --gh-gold: #22d3ee;
    --gh-gold-hover: #06b6d4;
    --gh-gold-light: #67e8f9;
    --gh-amber-glow: rgba(34, 211, 238, .25);
    --gh-text: #e8edf5;
    --gh-text-muted: #94a3b8;
    --gh-border: rgba(148, 163, 184, .2);
    --gh-card: #111827;
    --gh-success: #22c55e;
    --gh-danger: #ef4444;
    --gh-radius: 8px;
    --gh-shadow: 0 4px 24px rgba(0, 0, 0, .35);
    --gh-font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--gh-font);
    font-size: 14px;
    color: var(--gh-text);
    background: var(--gh-navy);
    line-height: 1.5;
}
.gh-skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 200;
    padding: 10px 16px; background: var(--gh-gold); color: var(--gh-navy); font-weight: 700;
    border-radius: var(--gh-radius); text-decoration: none;
}
.gh-skip-link:focus { left: 12px; top: 12px; }
.gh-main { display: block; min-height: 40vh; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gh-gold-light); text-decoration: none; }
a:hover { color: var(--gh-gold); }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

.gh-top-bar { position: sticky; top: 0; z-index: 110; }

/* Header shell */
.gh-header {
    background: var(--gh-navy-mid);
    border-bottom: 1px solid var(--gh-border);
}
.gh-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(12px, 3vw, 20px);
    display: flex;
    align-items: center;
    min-height: 56px;
    gap: 10px;
    flex-wrap: nowrap;
}
.gh-header-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}
.gh-nav { display: none; gap: 2px; flex-shrink: 1; min-width: 0; }
.gh-nav a {
    color: var(--gh-text-muted);
    padding: 8px 10px;
    border-radius: var(--gh-radius);
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
    transition: color .15s, background .15s;
}
.gh-nav a:hover, .gh-nav a.active { color: var(--gh-gold); background: rgba(245, 158, 11, .1); text-decoration: none; }
.gh-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    flex-wrap: nowrap;
}
.gh-btn-hide-md { display: none; }
.gh-btn-outline {
    border: 1px solid var(--gh-border); background: transparent; color: var(--gh-text);
    padding: 7px 12px; border-radius: var(--gh-radius); font-weight: 500; text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; font-size: 13px;
}
.gh-btn-outline:hover { border-color: var(--gh-gold); color: var(--gh-gold); text-decoration: none; }
.gh-btn-gold {
    background: linear-gradient(135deg, var(--gh-gold), var(--gh-gold-hover));
    color: var(--gh-navy); border: none; padding: 11px 20px; border-radius: var(--gh-radius);
    font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex;
    align-items: center; justify-content: center; gap: 8px; transition: transform .15s, box-shadow .15s;
}
.gh-btn-gold:hover { transform: translateY(-1px); box-shadow: 0 4px 16px var(--gh-amber-glow); color: var(--gh-navy); text-decoration: none; }
.gh-btn-ghost {
    display: block; text-align: center; margin-top: 8px; padding: 8px;
    color: var(--gh-text-muted); font-size: 13px; text-decoration: none;
}
.gh-btn-ghost:hover { color: var(--gh-gold); }
.gh-btn-block { width: 100%; }
.gh-btn-outline-dark {
    border: 1px solid var(--gh-border); color: var(--gh-text); padding: 10px 16px;
    border-radius: var(--gh-radius); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; font-weight: 600;
}
.gh-btn-outline-dark:hover { border-color: var(--gh-gold); color: var(--gh-gold); text-decoration: none; }
.gh-btn-outline-gold {
    border: 1px solid var(--gh-gold); color: var(--gh-gold); padding: 11px 20px;
    border-radius: var(--gh-radius); text-decoration: none; font-weight: 600;
}
.gh-btn-outline-gold:hover { background: rgba(245, 158, 11, .1); text-decoration: none; }

/* Lang dropdown */
.gh-lang-dropdown { position: relative; }
.gh-lang-dropdown-btn {
    display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px;
    border: 1px solid var(--gh-border); border-radius: var(--gh-radius);
    background: var(--gh-navy-light); color: var(--gh-text); font-size: 13px; font-weight: 600; cursor: pointer;
}
.gh-lang-dropdown-menu {
    position: absolute; top: calc(100% + 6px); right: 0; min-width: 168px;
    list-style: none; margin: 0; padding: 6px; background: var(--gh-card);
    border: 1px solid var(--gh-border); border-radius: var(--gh-radius); box-shadow: var(--gh-shadow); z-index: 200;
}
.gh-lang-dropdown-menu[hidden] { display: none !important; }
.gh-lang-dropdown-menu a {
    display: flex; align-items: center; gap: 8px; padding: 8px 10px;
    color: var(--gh-text); border-radius: 6px; text-decoration: none;
}
.gh-lang-dropdown-menu a:hover, .gh-lang-dropdown-menu a.active { background: rgba(245, 158, 11, .12); color: var(--gh-gold); }
.gh-lang-dropdown.is-open .gh-lang-dropdown-btn i { transform: rotate(180deg); }

/* Mobile menu */
.gh-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--gh-border);
    color: var(--gh-text);
    width: 44px;
    height: 44px;
    border-radius: var(--gh-radius);
    cursor: pointer;
    flex-shrink: 0;
}
.gh-menu-icon-close { display: none; }
.gh-header.nav-open .gh-menu-icon-open { display: none; }
.gh-header.nav-open .gh-menu-icon-close { display: inline; }
.gh-header-panel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100dvh;
    background: var(--gh-navy-mid);
    border-left: 1px solid var(--gh-border);
    padding: 16px;
    flex-direction: column;
    gap: 16px;
    z-index: 120;
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0, 0, 0, .35);
}
.gh-header.nav-open .gh-header-panel,
.gh-header-v2.nav-open .gh-header-panel { display: flex; }
.gh-header.nav-open .gh-header-panel .gh-header-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}
.gh-header.nav-open .gh-header-panel .gh-header-actions .gh-btn-outline,
.gh-header.nav-open .gh-header-panel .gh-header-actions .gh-btn-gold {
    width: 100%;
    justify-content: center;
}
.gh-header.nav-open .gh-header-panel .gh-btn-hide-md { display: inline-flex; }
.gh-panel-head { display: flex; justify-content: space-between; align-items: center; }
.gh-panel-title { font-weight: 700; color: var(--gh-gold); }
.gh-menu-close { background: none; border: none; color: var(--gh-text); font-size: 20px; cursor: pointer; }
.gh-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 105; opacity: 0; transition: opacity .2s;
}
.gh-overlay.is-open { opacity: 1; }
body.gh-nav-open { overflow: hidden; }

/* Hero */
.gh-hero {
    position: relative; padding: 48px 16px 56px; overflow: hidden;
    background: linear-gradient(160deg, var(--gh-navy) 0%, var(--gh-navy-light) 50%, var(--gh-navy-mid) 100%);
}
.gh-hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 20%, var(--gh-amber-glow) 0%, transparent 55%);
    pointer-events: none;
}
.gh-hero-compact { padding: 28px 16px 32px; }
.gh-hero-inner { position: relative; max-width: 900px; margin: 0 auto; text-align: center; }
.gh-hero h1 { margin: 12px 0 10px; font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -.02em; }
.gh-hero p { margin: 0 0 24px; color: var(--gh-text-muted); font-size: 1.05rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.gh-demo-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px;
    background: rgba(245, 158, 11, .15); border: 1px solid rgba(245, 158, 11, .35);
    border-radius: 999px; color: var(--gh-gold-light); font-size: 12px; font-weight: 600;
}

/* Search form */
.gh-search {
    display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-end;
    background: var(--gh-card); border: 1px solid var(--gh-border); border-radius: 12px;
    padding: 16px; box-shadow: var(--gh-shadow); text-align: left;
}
.gh-search-field { flex: 1 1 140px; min-width: 120px; }
.gh-search-field label { display: block; font-size: 11px; font-weight: 600; color: var(--gh-text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.gh-search-field input, .gh-search-field select {
    width: 100%; padding: 10px 12px; border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius); background: var(--gh-navy-light); color: var(--gh-text);
}
.gh-search-field input:focus, .gh-search-field select:focus { outline: none; border-color: var(--gh-gold); box-shadow: 0 0 0 3px var(--gh-amber-glow); }
.gh-search-btn-wrap { flex: 0 0 auto; }
.gh-search-btn {
    background: linear-gradient(135deg, var(--gh-gold), var(--gh-gold-hover));
    color: var(--gh-navy); border: none; padding: 11px 22px; border-radius: var(--gh-radius);
    font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}

/* Container & sections */
.gh-container { max-width: 1200px; margin: 0 auto; padding: 32px 16px; }
.gh-section-tight { padding-top: 0; }
.gh-section-last { padding-bottom: 48px; }
.gh-section-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.gh-section-title { margin: 0 0 4px; font-size: 1.35rem; font-weight: 700; color: var(--gh-text); }
.gh-section-sub { margin: 0; color: var(--gh-text-muted); font-size: 13px; }
.gh-link-more { color: var(--gh-gold); font-weight: 600; font-size: 13px; }

/* About section */
.gh-about-script { background: var(--gh-navy-mid); border-top: 1px solid var(--gh-border); border-bottom: 1px solid var(--gh-border); }
.gh-about-script-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding: 48px 16px; }
.gh-about-script h2 { margin: 0 0 12px; font-size: 1.5rem; }
.gh-about-script p { color: var(--gh-text-muted); line-height: 1.65; }
.gh-about-use-label { font-size: 12px; font-weight: 600; color: var(--gh-gold); margin: 16px 0 8px; text-transform: uppercase; }
.gh-about-usecases {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
}
.gh-about-usecase {
    padding: 6px 12px; background: var(--gh-navy-light); border: 1px solid var(--gh-border);
    border-radius: 999px; font-size: 12px; color: var(--gh-text-muted);
}
.gh-about-usecase-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 40px;
    padding: 8px 14px;
    text-decoration: none;
    color: var(--gh-text);
    font-weight: 600;
    transition: border-color .2s, background .2s, color .2s, transform .2s;
}
.gh-about-usecase-link i { font-size: 11px; color: var(--gh-gold); flex-shrink: 0; }
.gh-about-usecase-link:hover {
    border-color: var(--gh-gold);
    background: rgba(245, 158, 11, .12);
    color: var(--gh-gold-light);
    transform: translateY(-1px);
    text-decoration: none;
}
.gh-about-use-more { margin: 0 0 16px; font-size: 13px; }
.gh-about-use-more a { color: var(--gh-gold); font-weight: 600; text-decoration: none; }
.gh-about-use-more a:hover { text-decoration: underline; }
.gh-about-features { list-style: none; padding: 0; margin: 16px 0; }
.gh-about-features li { padding: 6px 0; color: var(--gh-text-muted); }
.gh-about-features i { color: var(--gh-gold); margin-right: 8px; }
.gh-about-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 12px; }
.gh-about-creds { font-size: 12px; color: var(--gh-text-muted); }
.gh-about-creds i { color: var(--gh-gold); }
.gh-about-mock {
    background: var(--gh-card); border: 1px solid var(--gh-border); border-radius: 12px; overflow: hidden; box-shadow: var(--gh-shadow);
}
.gh-mock-header { display: flex; gap: 6px; padding: 12px; background: var(--gh-navy-light); }
.gh-mock-header span { width: 10px; height: 10px; border-radius: 50%; background: var(--gh-border); }
.gh-mock-body { padding: 16px; display: grid; gap: 12px; }
.gh-mock-lot { height: 72px; border-radius: 8px; background: linear-gradient(90deg, var(--gh-navy-light), rgba(245,158,11,.15)); }

/* Lot grid & cards */
.gh-server-grid { display: grid; gap: 20px; }
.gh-server-grid-list { gap: 14px; grid-template-columns: 1fr; }
.gh-server-card {
    background: var(--gh-card); border: 1px solid var(--gh-border); border-radius: 12px;
    overflow: hidden; display: flex; flex-direction: column; transition: border-color .2s, box-shadow .2s;
}
.gh-server-card:hover { border-color: rgba(245, 158, 11, .4); box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.gh-server-card--list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "img" "body" "bid";
}
.gh-server-card--list .gh-server-img { grid-area: img; }
.gh-server-card--list .gh-server-body { grid-area: body; }
.gh-server-card--list .gh-server-side { grid-area: bid; }
.gh-server-img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--gh-navy-light); }
.gh-server-img img { width: 100%; height: 100%; object-fit: cover; }
.gh-live-badge {
    position: absolute; top: 10px; left: 10px; padding: 4px 10px;
    background: rgba(34, 197, 94, .9); color: #fff; font-size: 11px; font-weight: 700;
    border-radius: 999px; display: flex; align-items: center; gap: 5px;
}
.gh-live-badge i { font-size: 6px; }
.gh-featured-badge {
    position: absolute; top: 10px; right: 10px; width: 28px; height: 28px;
    background: var(--gh-gold); color: var(--gh-navy); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.gh-server-body { padding: 14px 16px; flex: 1; }
.gh-server-meta { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.gh-cat-tag {
    font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
    color: var(--gh-gold); background: rgba(245, 158, 11, .12); padding: 3px 8px; border-radius: 4px;
}
.gh-countdown { font-size: 12px; color: var(--gh-gold-light); font-weight: 600; }
.gh-ended-tag { font-size: 12px; color: var(--gh-text-muted); }
.gh-server-body h3 { margin: 0 0 6px; font-size: 1rem; line-height: 1.35; }
.gh-server-body h3 a { color: var(--gh-text); text-decoration: none; }
.gh-server-body h3 a:hover { color: var(--gh-gold); }
.gh-location { font-size: 12px; color: var(--gh-text-muted); }
.gh-location i { color: var(--gh-gold); margin-right: 4px; }
.gh-desc-snippet { margin: 8px 0 0; font-size: 13px; color: var(--gh-text-muted); line-height: 1.45; }
.gh-server-side { padding: 14px 16px; border-top: 1px solid var(--gh-border); background: var(--gh-navy-mid); }
.gh-players-block { text-align: center; }
.gh-players-label { font-size: 11px; color: var(--gh-text-muted); text-transform: uppercase; letter-spacing: .04em; }
.gh-players-price { font-size: 1.35rem; font-weight: 800; color: var(--gh-gold); margin: 4px 0; }
.gh-players-price-lg { font-size: 1.75rem; font-weight: 800; color: var(--gh-gold); }
.gh-players-note { font-size: 12px; color: var(--gh-text-muted); margin-bottom: 12px; }

/* Categories */
.gh-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.gh-cat-card {
    display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 24px 16px;
    background: var(--gh-card); border: 1px solid var(--gh-border); border-radius: 12px;
    text-decoration: none; color: var(--gh-text); transition: border-color .2s, transform .15s;
}
.gh-cat-card:hover { border-color: var(--gh-gold); transform: translateY(-2px); text-decoration: none; color: var(--gh-gold); }
.gh-cat-card i { font-size: 1.75rem; color: var(--gh-gold); }
.gh-cat-card strong { font-size: 14px; }
.gh-cat-card span { font-size: 12px; color: var(--gh-text-muted); }

/* Why grid */
.gh-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.gh-why-item {
    padding: 24px; background: var(--gh-card); border: 1px solid var(--gh-border); border-radius: 12px; text-align: center;
}
.gh-why-item i { font-size: 2rem; color: var(--gh-gold); margin-bottom: 12px; }
.gh-why-item h4 { margin: 0 0 8px; }
.gh-why-item p { margin: 0; font-size: 13px; color: var(--gh-text-muted); }

/* Search layout */
.gh-search-layout { display: grid; grid-template-columns: 240px 1fr; gap: 24px; align-items: start; }
.gh-filters {
    background: var(--gh-card); border: 1px solid var(--gh-border); border-radius: 12px; padding: 20px; position: sticky; top: 100px;
}
.gh-filters h3 { margin: 0 0 16px; font-size: 1rem; }
.gh-filter-group { margin-bottom: 14px; }
.gh-filter-group label { display: block; font-size: 12px; color: var(--gh-text-muted); margin-bottom: 6px; }
.gh-filter-group input, .gh-filter-group select {
    width: 100%; padding: 8px 10px; border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius); background: var(--gh-navy-light); color: var(--gh-text);
}
.gh-results-col { min-width: 0; }
.gh-results-header {
    display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between;
    gap: 12px 16px; margin-bottom: 20px;
}
.gh-results-heading-wrap { flex: 1 1 200px; min-width: 0; }
.gh-results-heading {
    margin: 0 0 6px; font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
}
.gh-results-badge {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 2rem; padding: 4px 12px; border-radius: 999px;
    background: rgba(245, 158, 11, .18); border: 1px solid rgba(245, 158, 11, .35);
    color: var(--gh-gold-light); font-size: .95rem; font-weight: 800;
}
.gh-results-sub { margin: 0 0 4px; color: var(--gh-text-muted); font-size: 14px; }
.gh-results-meta { margin: 0; color: var(--gh-text-muted); font-size: 13px; word-break: break-word; }
.gh-filter-toggle {
    display: none; align-items: center; gap: 8px; padding: 10px 16px;
    border: 1px solid var(--gh-border); border-radius: var(--gh-radius);
    background: var(--gh-navy-light); color: var(--gh-text); font-weight: 600;
    cursor: pointer; min-height: 44px; flex-shrink: 0;
}
.gh-filter-toggle:hover { border-color: var(--gh-gold); color: var(--gh-gold); }
.gh-filter-toggle[aria-expanded="true"] { border-color: var(--gh-gold); background: rgba(245, 158, 11, .1); }

/* Lot detail */
.gh-breadcrumb { font-size: 13px; color: var(--gh-text-muted); margin-bottom: 20px; padding-top: 8px; }
.gh-breadcrumb a { color: var(--gh-gold); }
.gh-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
.gh-gallery { border-radius: 12px; overflow: hidden; border: 1px solid var(--gh-border); margin-bottom: 16px; }
.gh-gallery img { width: 100%; max-height: 480px; object-fit: cover; }
.gh-detail-head { display: flex; gap: 12px; align-items: center; margin-bottom: 8px; flex-wrap: wrap; }
.gh-server-id { font-size: 12px; color: var(--gh-text-muted); }
.gh-detail h1 { margin: 0 0 8px; font-size: 1.6rem; }
.gh-location-lg { font-size: 15px; margin-bottom: 20px; }
.gh-tabs { display: flex; gap: 4px; margin-bottom: 16px; border-bottom: 1px solid var(--gh-border); }
.gh-tab { padding: 10px 16px; color: var(--gh-text-muted); font-weight: 600; border-bottom: 2px solid transparent; }
.gh-tab.active { color: var(--gh-gold); border-bottom-color: var(--gh-gold); }
.gh-detail-desc { font-size: 15px; line-height: 1.65; color: var(--gh-text-muted); }
.gh-subhead { margin: 28px 0 8px; font-size: 1.1rem; }
.gh-demo-hint { font-size: 12px; color: var(--gh-text-muted); margin-bottom: 12px; }
.gh-players-history { overflow-x: auto; border: 1px solid var(--gh-border); border-radius: var(--gh-radius); }
.gh-players-history table { width: 100%; border-collapse: collapse; font-size: 13px; }
.gh-players-history th, .gh-players-history td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--gh-border); }
.gh-players-history th { background: var(--gh-navy-mid); color: var(--gh-text-muted); font-weight: 600; }
.gh-players-history tr:last-child td { border-bottom: none; }

/* Bid box sidebar */
.gh-players-box {
    background: var(--gh-card); border: 1px solid var(--gh-border); border-radius: 12px;
    padding: 20px; position: sticky; top: 100px; box-shadow: var(--gh-shadow);
}
.gh-players-box h3 { margin: 0 0 14px; font-size: 1rem; }
.gh-countdown-lg { text-align: center; margin-bottom: 20px; padding: 16px; background: var(--gh-navy-light); border-radius: var(--gh-radius); }
.gh-countdown-label { display: block; font-size: 12px; color: var(--gh-text-muted); margin-bottom: 10px; text-transform: uppercase; }
.gh-countdown-blocks { display: flex; justify-content: center; gap: 12px; }
.gh-countdown-blocks span { display: flex; flex-direction: column; align-items: center; }
.gh-countdown-blocks b { font-size: 1.5rem; color: var(--gh-gold); line-height: 1; }
.gh-countdown-blocks small { font-size: 10px; color: var(--gh-text-muted); margin-top: 4px; }
.gh-ended-banner {
    text-align: center; padding: 14px; background: rgba(239, 68, 68, .15);
    border: 1px solid rgba(239, 68, 68, .3); border-radius: var(--gh-radius);
    color: #fca5a5; font-weight: 600; margin-bottom: 16px;
}
.gh-players-current { text-align: center; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--gh-border); }
.gh-players-details { margin: 0 0 16px; }
.gh-players-details div { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--gh-border); font-size: 13px; }
.gh-players-details dt { color: var(--gh-text-muted); margin: 0; }
.gh-players-details dd { margin: 0; font-weight: 600; }
.gh-demo-alert {
    margin-top: 14px; padding: 10px 12px; background: rgba(245, 158, 11, .1);
    border: 1px solid rgba(245, 158, 11, .25); border-radius: var(--gh-radius);
    font-size: 12px; color: var(--gh-gold-light); text-align: center;
}

/* Bid form */
.gh-page-title { margin: 0 0 24px; font-size: 1.5rem; }
.gh-form-layout { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.gh-form-card {
    background: var(--gh-card); border: 1px solid var(--gh-border); border-radius: 12px; padding: 24px;
}
.gh-form-card h2 { margin: 0 0 20px; font-size: 1.1rem; }
.gh-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gh-field { margin-bottom: 14px; }
.gh-field label { display: block; font-size: 12px; font-weight: 600; color: var(--gh-text-muted); margin-bottom: 6px; }
.gh-field input, .gh-field textarea {
    width: 100%; padding: 10px 12px; border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius); background: var(--gh-navy-light); color: var(--gh-text);
}
.gh-field input:focus, .gh-field textarea:focus { outline: none; border-color: var(--gh-gold); }
.gh-field small { display: block; margin-top: 4px; font-size: 11px; color: var(--gh-text-muted); }
.gh-form-error {
    padding: 10px 12px; margin-bottom: 14px; background: rgba(239, 68, 68, .15);
    border: 1px solid rgba(239, 68, 68, .3); border-radius: var(--gh-radius); color: #fca5a5; font-size: 13px;
}
.gh-players-summary-img { width: 100%; border-radius: var(--gh-radius); margin-bottom: 12px; max-height: 140px; object-fit: cover; }
.gh-players-summary-title { display: block; margin-bottom: 8px; }
.gh-players-summary-meta { font-size: 13px; color: var(--gh-text-muted); line-height: 1.6; }

/* Success */
.gh-success {
    max-width: 520px; margin: 60px auto; padding: 40px 24px; text-align: center;
    background: var(--gh-card); border: 1px solid var(--gh-border); border-radius: 16px;
}
.gh-success i { font-size: 3.5rem; color: var(--gh-success); margin-bottom: 16px; }
.gh-success h1 { margin: 0 0 8px; }
.gh-ref {
    display: inline-block; margin: 16px 0; padding: 12px 20px;
    background: var(--gh-navy-light); border: 1px dashed var(--gh-gold);
    border-radius: var(--gh-radius); font-family: monospace; font-size: 1.1rem; color: var(--gh-gold);
}
.gh-success-meta { font-size: 14px; color: var(--gh-text-muted); }
.gh-success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.gh-empty-state { text-align: center; padding: 48px 24px; }
.gh-empty-state i { font-size: 3rem; color: var(--gh-border); margin-bottom: 16px; }

/* Stats strip */
.gh-stats-strip {
    background: var(--gh-navy-mid);
    border-block: 1px solid var(--gh-border);
    padding: 28px 16px;
    margin-bottom: 8px;
}
.gh-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.gh-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 12px 8px;
}
.gh-stat-item i {
    font-size: 1.4rem;
    color: var(--gh-gold);
    margin-bottom: 4px;
}
.gh-stat-item strong {
    font-size: 1.5rem;
    color: var(--gh-text);
    line-height: 1.2;
}
.gh-stat-item span {
    font-size: 12px;
    color: var(--gh-text-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* How it works */
.gh-section-head-center { text-align: center; justify-content: center; }
.gh-section-head-center .gh-section-sub { margin-inline: auto; max-width: 520px; }
.gh-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.gh-step-card {
    background: var(--gh-card);
    border: 1px solid var(--gh-border);
    border-radius: 12px;
    padding: 22px 20px;
    position: relative;
    transition: border-color .2s, transform .2s;
}
.gh-step-card:hover {
    border-color: rgba(245, 158, 11, .35);
    transform: translateY(-2px);
}
.gh-step-num {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(245, 158, 11, .15);
    color: var(--gh-gold);
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gh-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(245, 158, 11, .12);
    color: var(--gh-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.gh-step-card h3 { margin: 0 0 8px; font-size: 1rem; }
.gh-step-card p { margin: 0; font-size: 13px; color: var(--gh-text-muted); line-height: 1.55; }

/* FAQ */
.gh-faq-section { padding-bottom: 56px; }
.gh-faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; }
.gh-faq-item {
    background: var(--gh-card);
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius);
    overflow: hidden;
}
.gh-faq-item summary {
    padding: 16px 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 44px;
}
.gh-faq-item summary::-webkit-details-marker { display: none; }
.gh-faq-item summary::after {
    content: '+';
    color: var(--gh-gold);
    font-size: 1.2rem;
    font-weight: 400;
    flex-shrink: 0;
}
.gh-faq-item[open] summary::after { content: 'âˆ’'; }
.gh-faq-item summary:hover { color: var(--gh-gold-light); }
.gh-faq-item p {
    margin: 0;
    padding: 0 18px 16px;
    font-size: 14px;
    color: var(--gh-text-muted);
    line-height: 1.6;
}

/* Lot detail extras */
.gh-estimate-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 12px 16px;
    margin-bottom: 20px;
    background: rgba(245, 158, 11, .08);
    border: 1px solid rgba(245, 158, 11, .22);
    border-radius: var(--gh-radius);
    font-size: 14px;
}
.gh-estimate-bar span { color: var(--gh-text-muted); }
.gh-estimate-bar strong { color: var(--gh-gold-light); }
.gh-tabs button.gh-tab {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    min-height: 44px;
}
.gh-tab-panel { display: none; }
.gh-tab-panel.active { display: block; }
.gh-detail-long { margin-top: 14px; }
.gh-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gh-highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gh-text-muted);
    line-height: 1.5;
}
.gh-highlight-list i {
    color: var(--gh-success);
    margin-top: 3px;
    flex-shrink: 0;
}
.gh-spec-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
    border: 1px solid var(--gh-border);
    border-radius: var(--gh-radius);
    overflow: hidden;
}
.gh-spec-grid > div {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--gh-border);
}
.gh-spec-grid > div:last-child { border-bottom: none; }
.gh-spec-grid dt {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--gh-text-muted);
    text-transform: uppercase;
    letter-spacing: .03em;
}
.gh-spec-grid dd { margin: 0; font-size: 14px; font-weight: 500; }
.gh-related {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gh-border);
}
.gh-server-grid-compact .gh-server-card { font-size: 13px; }
.gh-server-grid-compact .gh-server-card h3 { font-size: .95rem; }

/* Footer */
.gh-footer { background: var(--gh-navy-mid); border-top: 1px solid var(--gh-border); margin-top: 24px; }
.gh-footer-inner { max-width: 1200px; margin: 0 auto; padding: 40px 16px 20px; }
.gh-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 28px; margin-bottom: 28px; }
.gh-footer h4 { margin: 0 0 12px; font-size: 13px; color: var(--gh-gold); text-transform: uppercase; letter-spacing: .04em; }
.gh-footer ul { list-style: none; padding: 0; margin: 0; }
.gh-footer li { margin-bottom: 8px; }
.gh-footer a { color: var(--gh-text-muted); font-size: 13px; }
.gh-footer a:hover { color: var(--gh-gold); }
.gh-footer-text { font-size: 13px; margin: 0; opacity: .8; color: var(--gh-text-muted); }
.gh-footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gh-text);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
}
.gh-footer-brand-link i { color: var(--gh-gold); }
.gh-footer-bottom { padding-top: 20px; border-top: 1px solid var(--gh-border); font-size: 12px; color: var(--gh-text-muted); text-align: center; }

/* Responsive */
@media (min-width: 600px) {
    .gh-stats-grid { grid-template-columns: repeat(4, 1fr); }
    .gh-steps-grid { grid-template-columns: repeat(2, 1fr); }
    .gh-spec-grid { grid-template-columns: repeat(2, 1fr); }
    .gh-spec-grid > div:nth-child(odd):last-child { grid-column: 1 / -1; }
}
@media (min-width: 768px) {
    .gh-server-grid:not(.gh-server-grid-list) { grid-template-columns: repeat(2, 1fr); }
    .gh-server-grid-compact { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
    .gh-nav { display: flex; flex: 1 1 auto; justify-content: center; min-width: 0; }
    .gh-header-panel {
        display: flex !important;
        position: static;
        width: auto;
        height: auto;
        flex: 1 1 auto;
        min-width: 0;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        background: transparent;
        border: none;
        padding: 0;
        margin-left: 8px;
        overflow: visible;
        gap: 12px;
        box-shadow: none;
    }
    .gh-panel-head, .gh-menu-toggle, .gh-menu-close { display: none; }
    .gh-header-bar { margin-left: 4px; flex-shrink: 0; }
    .gh-header-inner { gap: 10px; min-height: 60px; }
    .gh-logo { max-width: 220px; flex-shrink: 0; }
    .gh-header-actions { flex-wrap: nowrap; gap: 6px; }
    .gh-btn-hide-md { display: inline-flex; }
    .gh-steps-grid { grid-template-columns: repeat(4, 1fr); }
    .gh-server-card--list {
        grid-template-columns: minmax(200px, 260px) minmax(0, 1fr) minmax(200px, 240px);
        grid-template-areas: "img body bid";
        align-items: stretch;
    }
    .gh-server-card--list .gh-server-img { aspect-ratio: auto; min-height: 168px; height: 100%; }
    .gh-server-card--list .gh-server-img a { display: block; height: 100%; }
    .gh-server-card--list .gh-server-img img { min-height: 168px; }
    .gh-server-card--list .gh-server-body {
        display: flex; flex-direction: column; justify-content: center;
        padding: 18px 20px; border-right: 1px solid var(--gh-border);
    }
    .gh-server-card--list .gh-desc-snippet {
        display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
        overflow: hidden; margin-top: 6px;
    }
    .gh-server-card--list .gh-server-body h3 { font-size: 1.05rem; }
    .gh-server-card--list .gh-server-side {
        border-top: none; display: flex; align-items: center; justify-content: center;
        padding: 18px 16px; background: rgba(17, 24, 39, .6);
    }
    .gh-server-card--list .gh-players-block { width: 100%; }
    .gh-server-card--list .gh-btn-gold { width: 100%; }
}
@media (min-width: 1100px) and (max-width: 1280px) {
    .gh-nav a { padding: 7px 7px; font-size: 12px; }
    .gh-btn-outline, .gh-btn-gold { padding: 8px 10px; font-size: 12px; }
    .gh-btn-discuss span { display: none; }
    .gh-btn-discuss { padding: 8px 12px; }
    .gh-btn-label { display: none; }
}
@media (min-width: 1100px) {
    .gh-server-grid:not(.gh-server-grid-list) { grid-template-columns: repeat(3, 1fr); }
    .gh-server-grid-compact { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 640px) and (max-width: 1099px) {
    .gh-server-card--list {
        grid-template-columns: minmax(160px, 200px) minmax(0, 1fr);
        grid-template-areas: "img body" "bid bid";
    }
    .gh-server-card--list .gh-server-img { aspect-ratio: 4/3; max-height: 180px; }
    .gh-server-card--list .gh-server-body { border-right: none; }
    .gh-server-card--list .gh-players-block {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 10px 14px;
        align-items: center;
        text-align: left;
    }
    .gh-server-card--list .gh-players-label { grid-column: 1; }
    .gh-server-card--list .gh-players-price { grid-column: 1; margin: 0; font-size: 1.2rem; }
    .gh-server-card--list .gh-players-note { grid-column: 1; margin: 0; }
    .gh-server-card--list .gh-btn-gold { grid-column: 2; grid-row: 1 / span 3; align-self: center; margin: 0; white-space: nowrap; }
    .gh-server-card--list .gh-btn-ghost { grid-column: 3; grid-row: 1 / span 3; align-self: center; margin: 0; white-space: nowrap; }
}
@media (max-width: 1099px) {
    .gh-search-layout { grid-template-columns: 1fr; gap: 16px; }
    .gh-filter-toggle { display: inline-flex; }
    .gh-filters {
        display: none;
        position: static;
        margin-bottom: 8px;
    }
    .gh-filters.is-open { display: block; }
}
@media (max-width: 991px) {
    .gh-about-script-inner { grid-template-columns: 1fr; }
    .gh-detail-layout, .gh-form-layout { grid-template-columns: 1fr; }
    .gh-filters, .gh-players-box { position: static; }
    .gh-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .gh-tabs::-webkit-scrollbar { display: none; }
    .gh-tab { flex-shrink: 0; white-space: nowrap; }
}
@media (max-width: 639px) {
    .gh-server-card--list .gh-players-block {
        display: block;
        text-align: center;
    }
    .gh-server-card--list .gh-players-block .gh-btn-gold { width: 100%; }
    .gh-server-card--list .gh-btn-ghost { margin-top: 8px; }
}
@media (max-width: 640px) {
    .gh-hero-compact { padding: 16px 12px 20px; }
    .gh-search {
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        gap: 10px;
    }
    .gh-search-field {
        flex: 1 1 100% !important;
        min-width: 0;
        width: 100%;
    }
    .gh-search-btn-wrap {
        flex: 1 1 100%;
        width: 100%;
    }
    .gh-search-btn {
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }
    .gh-container { padding: 20px 12px; }
    .gh-results-heading { font-size: 1.15rem; word-break: break-word; }
    .gh-results-meta { display: block; margin-top: 4px; }
    .gh-filters { padding: 16px; }
    .gh-server-grid-list .gh-server-img { max-height: 200px; }
    .gh-server-meta { gap: 6px; }
    .gh-server-body h3 { font-size: .95rem; }
}
/* SEO vertical landing pages */
.gh-vertical-main {
    padding: clamp(20px, 4vw, 32px) clamp(14px, 3vw, 20px) 48px;
    max-width: 960px;
}
.gh-vertical-crumb {
    font-size: 13px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    line-height: 1.5;
}
.gh-vertical-hero {
    text-align: center;
    padding: clamp(24px, 5vw, 40px) clamp(16px, 4vw, 28px);
    margin-bottom: 32px;
    background: linear-gradient(180deg, rgba(245,158,11,.1) 0%, transparent 100%);
    border-radius: 16px;
    border: 1px solid var(--gh-border);
}
.gh-vertical-hero-icon {
    width: clamp(56px, 12vw, 72px);
    height: clamp(56px, 12vw, 72px);
    margin: 0 auto 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    background: rgba(245,158,11,.15);
    color: var(--gh-gold);
}
.gh-vertical-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 4.5vw, 1.85rem);
    line-height: 1.25;
    word-break: break-word;
}
.gh-vertical-subtitle { font-size: clamp(.95rem, 2.5vw, 1.08rem); color: var(--gh-text-muted); margin: 0 0 14px; }
.gh-vertical-intro { max-width: 640px; margin: 0 auto 14px; font-size: clamp(.9rem, 2.2vw, 1rem); line-height: 1.65; }
.gh-vertical-region {
    margin: 0 auto 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gh-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(245, 158, 11, .1);
    border: 1px solid rgba(245, 158, 11, .2);
}
.gh-vertical-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.gh-vertical-section { margin-bottom: 36px; }
.gh-vertical-benefits { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 600px) { .gh-vertical-benefits { grid-template-columns: repeat(2, 1fr); } }
.gh-vertical-links, .gh-solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 2vw, 14px);
}
@media (min-width: 768px) {
    .gh-vertical-links, .gh-solutions-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
    .gh-solutions-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.gh-vertical-link-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid var(--gh-border);
    background: var(--gh-card);
    text-decoration: none;
    color: var(--gh-text);
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
.gh-vertical-link-card:hover {
    border-color: var(--gh-gold);
    transform: translateY(-2px);
    color: var(--gh-text);
    box-shadow: var(--gh-shadow);
}
.gh-vertical-link-card i { font-size: 1.25rem; color: var(--gh-gold); }
.gh-vertical-link-card strong { font-size: .95rem; line-height: 1.35; }
.gh-vertical-link-card span { font-size: 12px; opacity: .75; line-height: 1.45; }
.gh-vertical-cta-band {
    text-align: center;
    padding: clamp(22px, 4vw, 32px) clamp(16px, 4vw, 24px);
    border-radius: 16px;
    background: rgba(245,158,11,.08);
    border: 1px solid rgba(245,158,11,.2);
}
.gh-solutions-hub { padding-bottom: 48px; max-width: 1200px; }
.gh-solutions-hub .gh-page-title { font-size: clamp(1.35rem, 4vw, 1.85rem); line-height: 1.25; }

@media (min-width: 600px) {
    .gh-about-usecases { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
    .gh-about-usecases { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1099px) {
    .gh-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 2px;
    }
    .gh-nav a {
        padding: 12px 10px;
        font-size: 15px;
        border-bottom: 1px solid var(--gh-border);
    }
}
@media (max-width: 480px) {
    .gh-brand-name { display: none; }
    .gh-btn-contact span { display: none; }
    .gh-btn-contact { padding: 9px 12px; }
}
@media (max-width: 600px) {
    .gh-form-row { grid-template-columns: 1fr; }
    .gh-server-grid { grid-template-columns: 1fr; }
    .gh-server-grid-compact { grid-template-columns: 1fr; }
    .gh-spec-grid > div { grid-template-columns: 1fr; gap: 4px; }
    .gh-btn-gold, .gh-btn-outline, .gh-btn-outline-dark { min-height: 44px; }
    .gh-menu-toggle, .gh-lang-btn { min-width: 44px; min-height: 44px; }
    .gh-players-history th, .gh-players-history td { padding: 12px 14px; white-space: nowrap; }
    .gh-about-usecases { grid-template-columns: 1fr; }
    .gh-about-usecase-link { min-height: 44px; }
    .gh-vertical-cta-row { flex-direction: column; align-items: stretch; }
    .gh-vertical-cta-row .gh-btn-gold,
    .gh-vertical-cta-row .gh-btn-outline-dark { width: 100%; justify-content: center; }
    .gh-vertical-links, .gh-solutions-grid { grid-template-columns: 1fr; }
    .gh-vertical-crumb { font-size: 12px; }
}
@media (max-width: 399px) {
    .gh-about-actions { flex-direction: column; }
    .gh-about-actions .gh-btn-gold,
    .gh-about-actions .gh-btn-outline-dark { width: 100%; justify-content: center; }
}

/* Ecosystem */
.gh-ecosystem-section { padding: 48px 0; border-top: 1px solid var(--gh-border); background: rgba(245,158,11,.04); }
.gh-ecosystem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.gh-ecosystem-card { background: var(--gh-card); border: 1px solid var(--gh-border); border-radius: 12px; padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.gh-ecosystem-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(245,158,11,.12); display: flex; align-items: center; justify-content: center; color: var(--gh-gold); }
.gh-ecosystem-card h3 { margin: 0; font-size: .95rem; }
.gh-ecosystem-card p { margin: 0; font-size: 13px; color: var(--gh-text-muted); flex: 1; }
.gh-ecosystem-links { display: flex; flex-wrap: wrap; gap: 8px; }
.gh-btn-sm { padding: 7px 14px; font-size: 12px; min-height: 36px; }
.gh-demo-strip-sep { opacity: .6; }
.gh-demo-strip-eco { font-weight: 600; white-space: nowrap; }
.gh-footer-ecosystem { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: center; padding: 16px 0; border-top: 1px solid var(--gh-border); margin-top: 16px; }
.gh-footer-eco-label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--gh-text-muted); }
.gh-footer-ecosystem a { font-size: 12px; padding: 5px 10px; border-radius: 999px; background: rgba(245,158,11,.12); color: var(--gh-gold-light); text-decoration: none; }
.gh-section-head-center { text-align: center; justify-content: center; }

