/* =============================================================
   GameHub Pro — Main Stylesheet
   ============================================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
    --gh-purple:     #7c3aed;
    --gh-purple-dk:  #6d28d9;
    --gh-purple-lt:  #a855f7;
    --gh-indigo:     #1e1b4b;
    --gh-slate:      #475569;
    --gh-body-bg:    #f4f6fb;
    --gh-white:      #ffffff;
    --gh-card-bg:    #ffffff;
    --gh-border:     rgba(124, 58, 237, 0.08);
    --gh-shadow-sm:  0 4px 16px rgba(0, 0, 0, 0.04);
    --gh-shadow-md:  0 8px 24px rgba(0, 0, 0, 0.06);
    --gh-shadow-lg:  0 16px 48px rgba(124, 58, 237, 0.10);
    --gh-radius-sm:  12px;
    --gh-radius-md:  20px;
    --gh-radius-lg:  28px;
    --gh-transition: 0.2s ease;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--gh-body-bg);
    color: #1a1a2e;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--gh-transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Accessibility: Focus ---------- */
:focus-visible {
    outline: 2px solid var(--gh-purple);
    outline-offset: 3px;
}

/* =============================================================
   STICKY HEADER
   ============================================================= */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gh-border);
    padding: 10px 0;
    transition: box-shadow var(--gh-transition);
}

.sticky-header.scrolled {
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
}

/* Logo */
.gh-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gh-purple), var(--gh-purple-lt));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.gh-site-title {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--gh-indigo);
    margin-left: 10px;
    letter-spacing: -0.02em;
}

.site-logo img {
    max-height: 44px;
    width: auto;
}

/* Small brand tagline beside the existing logo */
.site-tagline {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 10px;
    line-height: 1.15;
    min-width: 0;
}

.site-tagline strong {
    color: var(--gh-indigo);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.site-tagline small {
    color: #64748b;
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* Icon Buttons */
.gh-icon-btn {
    background: #f1f5f9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background var(--gh-transition), color var(--gh-transition);
}

.gh-icon-btn:hover,
.gh-icon-btn:focus-visible {
    background: #e2e8f0;
    color: var(--gh-indigo);
}

/* Search Overlay */
.gh-search-overlay {
    display: none;
    background: var(--gh-white);
    border-top: 1px solid var(--gh-border);
    animation: slideDown 0.15s ease;
}

.gh-search-overlay.active {
    display: block;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.btn-gh-purple {
    background: var(--gh-purple);
    border-color: var(--gh-purple);
    color: #fff;
    font-weight: 600;
    transition: background var(--gh-transition), box-shadow var(--gh-transition);
}

.btn-gh-purple:hover,
.btn-gh-purple:focus {
    background: var(--gh-purple-dk);
    color: #fff;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}

/* =============================================================
   SECTION TITLES
   ============================================================= */
.gh-section-title {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--gh-indigo);
    letter-spacing: -0.01em;
    margin: 0;
}

/* =============================================================
   HIGH BONUS SLIDER
   ============================================================= */
.gh-bonus-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0 1.2rem;
    scrollbar-width: thin;
    scrollbar-color: #c4b5fd transparent;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.gh-bonus-scroll::-webkit-scrollbar {
    height: 4px;
}

.gh-bonus-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.gh-bonus-scroll::-webkit-scrollbar-thumb {
    background: #c4b5fd;
    border-radius: 20px;
}

.gh-bonus-item {
    flex: 0 0 76px;
    text-align: center;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform var(--gh-transition);
}

.gh-bonus-item:hover {
    transform: translateY(-3px);
}

.gh-bonus-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(145deg, #eef2ff, #fff);
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    font-weight: 700;
    color: #4c1d95;
    border: 2px solid rgba(124, 58, 237, 0.12);
    overflow: hidden;
}

.gh-bonus-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gh-bonus-circle .fas {
    font-size: 1.5rem;
    color: var(--gh-purple);
}

.gh-bonus-label {
    font-size: 0.62rem;
    font-weight: 600;
    color: #475569;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 76px;
    margin: 0 auto;
}

.gh-bonus-tag {
    font-size: 0.52rem;
    background: #fef3c7;
    color: #b45309;
    padding: 0.1rem 0.45rem;
    border-radius: 30px;
    display: inline-block;
    margin-top: 3px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

/* =============================================================
   CATEGORY PILLS
   ============================================================= */
.gh-category-pills {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.25rem 0 0.75rem;
    scrollbar-width: none;
}

.gh-category-pills::-webkit-scrollbar {
    display: none;
}

.gh-cat-pill {
    flex-shrink: 0;
    background: #fff;
    border: 1.5px solid rgba(124, 58, 237, 0.15);
    color: #334155;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.9rem;
    border-radius: 30px;
    transition: all var(--gh-transition);
    white-space: nowrap;
}

.gh-cat-pill:hover,
.gh-cat-pill.active {
    background: var(--gh-purple);
    color: #fff;
    border-color: var(--gh-purple);
}

/* =============================================================
   GAME CARDS
   ============================================================= */
.gh-game-card {
    background: var(--gh-card-bg);
    border-radius: var(--gh-radius-md);
    padding: 1rem;
    box-shadow: var(--gh-shadow-sm);
    border: 1px solid var(--gh-border);
    transition: transform var(--gh-transition), box-shadow var(--gh-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.gh-game-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gh-shadow-lg);
}

.gh-game-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gh-purple), var(--gh-purple-lt));
    opacity: 0;
    transition: opacity var(--gh-transition);
}

.gh-game-card:hover::before {
    opacity: 1;
}

/* Logo wrapper */
.gh-game-logo-wrap {
    position: relative;
    width: 54px;
    height: 54px;
    flex-shrink: 0;
}

.gh-game-logo {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(145deg, #f1f5f9, #fff);
    border: 1px solid #e9edf4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.gh-game-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.gh-game-logo .fas {
    font-size: 1.4rem;
    color: var(--gh-purple);
}

/* Card text */
.gh-game-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: #0f172a;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gh-game-meta {
    font-size: 0.68rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.gh-star-wrap {
    display: flex;
    align-items: center;
    gap: 2px;
}

.gh-bonus-chip {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 0.12rem 0.5rem;
    border-radius: 30px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Download button */
.gh-btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--gh-purple), var(--gh-purple-lt));
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.45rem 0.8rem;
    border-radius: 40px;
    font-size: 0.78rem;
    width: 100%;
    text-align: center;
    transition: all var(--gh-transition);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.28);
    margin-top: auto;
}

.gh-btn-download:hover,
.gh-btn-download:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.40);
    background: linear-gradient(135deg, var(--gh-purple-dk), var(--gh-purple));
    color: #fff;
}

/* Badges */
.gh-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 0.58rem;
    font-weight: 700;
    padding: 0.18rem 0.55rem;
    border-radius: 30px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.4;
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
}

.gh-badge-HOT      { background: #ff4d6d; color: #fff; }
.gh-badge-NEW      { background: #4facfe; color: #fff; }
.gh-badge-HIGHBONUS { background: linear-gradient(135deg, #d35400, #f59e0b); color: #fff; }
.gh-badge-HOTPICK  { background: linear-gradient(135deg, #c0392b, #ec4899); color: #fff; }
.gh-badge-POPULAR  { background: linear-gradient(135deg, #8b5cf6, #6366f1); color: #fff; }
.gh-badge-BONUS    { background: linear-gradient(135deg, #f59e0b, #fbbf24); color: #1e1b4b; }
.gh-badge-PREMIUM  { background: #fbbf24; color: #1e1b4b; }
.gh-badge-FIRE     { background: #ff6b35; color: #fff; }
.gh-badge-HIGHBONUS { background: linear-gradient(135deg, #f59e0b, #fbbf24); color: #1e1b4b; }
.gh-badge-HOTPICK  { background: linear-gradient(135deg, #ec4899, #f43f5e); color: #fff; }
.gh-badge-TRENDING { background: linear-gradient(135deg, #06b6d4, #3b82f6); color: #fff; }
.gh-badge-FEATURED { background: linear-gradient(135deg, #7c3aed, #a855f7); color: #fff; }

/* =============================================================
   SINGLE GAME PAGE
   ============================================================= */
.gh-single-hero {
    background: linear-gradient(160deg, #f0eaff 0%, #fff 60%);
    border-radius: var(--gh-radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(124, 58, 237, 0.08);
    text-align: center;
}

.gh-single-logo {
    width: 96px;
    height: 96px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    overflow: hidden;
    border: 2px solid rgba(124, 58, 237, 0.1);
}

.gh-single-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gh-single-title {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--gh-indigo);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.gh-single-desc {
    color: var(--gh-slate);
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0 auto;
}

/* Stats row */
.gh-stats-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.gh-stat {
    text-align: center;
}

.gh-stat-value {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--gh-indigo);
    display: block;
}

.gh-stat-label {
    font-size: 0.7rem;
    color: var(--gh-slate);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* Info table */
.gh-info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.gh-info-table th {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gh-slate);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.6rem 0.8rem;
    white-space: nowrap;
    background: #f8faff;
    border-radius: var(--gh-radius-sm) 0 0 var(--gh-radius-sm);
    width: 36%;
}

.gh-info-table td {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    padding: 0.6rem 0.8rem;
    background: #fff;
    border-radius: 0 var(--gh-radius-sm) var(--gh-radius-sm) 0;
    box-shadow: var(--gh-shadow-sm);
}

/* Content section */
.gh-content-section {
    background: #fff;
    border-radius: var(--gh-radius-md);
    padding: 1.5rem;
    margin-bottom: 1.2rem;
    box-shadow: var(--gh-shadow-sm);
    border: 1px solid var(--gh-border);
}

.gh-content-section h2 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--gh-indigo);
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #f1f5f9;
    letter-spacing: -0.01em;
}

/* Features list */
.gh-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gh-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: #334155;
    border-bottom: 1px solid #f8faff;
}

.gh-features-list li:last-child {
    border-bottom: none;
}

.gh-features-list li .fas {
    color: #22c55e;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Big Download Button */
.gh-btn-download-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--gh-purple), var(--gh-purple-lt));
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
    transition: all var(--gh-transition);
    border: none;
    cursor: pointer;
}

.gh-btn-download-lg:hover,
.gh-btn-download-lg:focus {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.45);
    background: linear-gradient(135deg, var(--gh-purple-dk), var(--gh-purple));
    color: #fff;
}

/* Store buttons */
.gh-store-btns {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.gh-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0f172a;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1.1rem;
    border-radius: 10px;
    transition: background var(--gh-transition);
}

.gh-store-btn:hover {
    background: #1e293b;
    color: #fff;
}

/* =============================================================
   FAQ ACCORDION
   ============================================================= */
.gh-faq-item {
    background: #fff;
    border-radius: var(--gh-radius-sm);
    margin-bottom: 0.6rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.gh-faq-question {
    font-weight: 600;
    font-size: 0.92rem;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.85rem 1rem;
    user-select: none;
    gap: 0.5rem;
}

.gh-faq-question .fas {
    color: var(--gh-purple);
    font-size: 0.8rem;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.gh-faq-question.open .fas {
    transform: rotate(180deg);
}

.gh-faq-answer {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.65;
    padding: 0 1rem 0.85rem;
    display: none;
}

.gh-faq-answer.show {
    display: block;
    animation: fadeIn 0.15s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================================
   ARCHIVE / CATEGORY PAGE
   ============================================================= */
.gh-archive-header {
    background: linear-gradient(135deg, var(--gh-purple), var(--gh-purple-lt));
    border-radius: var(--gh-radius-lg);
    padding: 1.8rem 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.gh-archive-header h1 {
    font-weight: 800;
    font-size: 1.4rem;
    margin: 0;
    letter-spacing: -0.02em;
}

.gh-archive-header p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0.4rem 0 0;
}

/* =============================================================
   BREADCRUMBS
   ============================================================= */
.gamehub-breadcrumbs {
    font-size: 0.78rem;
    color: var(--gh-slate);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.gamehub-breadcrumbs a {
    color: var(--gh-purple);
}

.gamehub-breadcrumbs a:hover {
    text-decoration: underline;
}

.bc-sep {
    color: #cbd5e1;
    font-size: 0.7rem;
}

/* =============================================================
   PAGINATION
   ============================================================= */
.gamehub-pagination {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.gamehub-pagination ul {
    display: flex;
    list-style: none;
    gap: 0.4rem;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.gamehub-pagination ul li a,
.gamehub-pagination ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 600;
    background: #fff;
    color: #334155;
    border: 1.5px solid #e2e8f0;
    transition: all var(--gh-transition);
}

.gamehub-pagination ul li a:hover {
    background: var(--gh-purple);
    color: #fff;
    border-color: var(--gh-purple);
}

.gamehub-pagination ul li .current {
    background: var(--gh-purple);
    color: #fff;
    border-color: var(--gh-purple);
}

/* =============================================================
   SIDEBAR
   ============================================================= */
.gh-sidebar .widget {
    background: #fff;
    border-radius: var(--gh-radius-md);
    padding: 1.2rem;
    margin-bottom: 1.2rem;
    box-shadow: var(--gh-shadow-sm);
    border: 1px solid var(--gh-border);
}

.gh-sidebar .widget-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--gh-indigo);
    margin-bottom: 0.85rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #f1f5f9;
    letter-spacing: -0.01em;
}

/* =============================================================
   FOOTER
   ============================================================= */
.gh-footer {
    background: var(--gh-indigo);
    color: rgba(255, 255, 255, 0.75);
    padding: 2.5rem 0 1.2rem;
    margin-top: 3rem;
}

.gh-footer-brand .gh-logo-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
}

.gh-footer-brand .gh-site-title {
    color: #fff;
    font-size: 1.1rem;
}

.gh-footer-tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.4rem;
}

.gh-footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.75rem;
}

.gh-footer-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    padding: 0.2rem 0;
    transition: color var(--gh-transition);
}

.gh-footer-link:hover {
    color: #fff;
}

.gh-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
    margin-top: 1.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

/* =============================================================
   SEARCH PAGE
   ============================================================= */
.gh-search-header {
    background: #fff;
    border-radius: var(--gh-radius-md);
    padding: 1.4rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--gh-shadow-sm);
    border: 1px solid var(--gh-border);
}

.gh-search-form .form-control {
    border-radius: 40px 0 0 40px;
    border: 1.5px solid #e2e8f0;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

.gh-search-form .btn {
    border-radius: 0 40px 40px 0;
}

/* =============================================================
   404 PAGE
   ============================================================= */
.gh-404-wrap {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
}

.gh-404-number {
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gh-purple), var(--gh-purple-lt));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* =============================================================
   STAR RATINGS
   ============================================================= */
.star-filled { color: #fbbf24; }
.star-empty  { color: #e2e8f0; }

/* =============================================================
   UTILITIES
   ============================================================= */
.text-purple { color: var(--gh-purple) !important; }

.gh-no-results {
    background: #fff;
    border-radius: var(--gh-radius-md);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--gh-border);
}

.gh-no-results .fas {
    font-size: 2.5rem;
    color: #c4b5fd;
    margin-bottom: 1rem;
}

/* =============================================================
   OFFCANVAS MOBILE MENU
   ============================================================= */
.offcanvas {
    --bs-offcanvas-width: 280px;
}

#ghMobileMenu .navbar-nav .nav-item a {
    display: block;
    padding: 0.7rem 0;
    font-weight: 600;
    color: #0f172a;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    transition: color var(--gh-transition);
}

#ghMobileMenu .navbar-nav .nav-item a:hover {
    color: var(--gh-purple);
}

/* =============================================================
   RESPONSIVE OVERRIDES
   ============================================================= */

/* Mobile: 2 cards per row */
@media (max-width: 575.98px) {
    .gh-site-title { font-size: 1.1rem; }
    .site-tagline { margin-left: 6px; }
    .site-tagline strong { font-size: 0.68rem; }
    .site-tagline small { font-size: 0.5rem; }
    .gh-game-card  { padding: 0.7rem; }
    .gh-bonus-circle { width: 58px; height: 58px; }
    .gh-bonus-item { flex: 0 0 66px; }
    .gh-single-hero { padding: 1.2rem 1rem; }
    .gh-btn-download-lg { font-size: 0.88rem; padding: 0.7rem 1.6rem; }
    .gh-404-number { font-size: 4rem; }
}

/* Tablet */
@media (min-width: 576px) and (max-width: 767.98px) {
    .gh-game-name { font-size: 0.82rem; }
}

/* Ensure 2 cols on xs screens */
.row-cols-2 > * { flex: 0 0 auto; width: 50%; }


/* =============================================================
   HOMEPAGE SEO CONTENT + FAQ
   ============================================================= */
.gh-home-intro {
    background: linear-gradient(135deg, #ffffff, #f5f3ff);
    border: 1px solid rgba(124, 58, 237, 0.10);
    border-radius: var(--gh-radius-md);
    padding: 1.25rem 1.35rem;
    box-shadow: var(--gh-shadow-sm);
}

.gh-home-title {
    margin: 0 0 0.7rem;
    color: var(--gh-indigo);
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.gh-home-intro p {
    color: #475569;
    margin-bottom: 0.65rem;
    font-size: 0.96rem;
}

.gh-home-intro strong {
    color: #4c1d95;
}

.gh-home-faq {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gh-faq-item {
    background: #fff;
    border: 1px solid rgba(124, 58, 237, 0.10);
    border-radius: var(--gh-radius-sm);
    margin-bottom: 0.7rem;
    box-shadow: var(--gh-shadow-sm);
    overflow: hidden;
}

.gh-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 0.9rem 1rem;
    color: var(--gh-indigo);
    font-weight: 700;
}

.gh-faq-item summary::-webkit-details-marker {
    display: none;
}

.gh-faq-item summary::after {
    content: '+';
    float: right;
    color: var(--gh-purple);
    font-size: 1.15rem;
    line-height: 1;
}

.gh-faq-item[open] summary::after {
    content: '−';
}

.gh-faq-item p {
    padding: 0 1rem 1rem;
    margin: 0;
    color: #64748b;
    font-size: 0.92rem;
}

