.game-hub-hero {
        position: relative;
        overflow: hidden;
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
            linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
            linear-gradient(135deg, #102a43 0%, #1b4d5f 58%, #f3b23d 100%);
        background-size: 42px 42px, 42px 42px, auto;
        color: #fff;
    }

    .game-hub-hero::after {
        content: "";
        position: absolute;
        inset: auto 0 0;
        height: 12px;
        background: linear-gradient(90deg, #f3b23d, #2f9e8f, #16324f);
    }

    .game-hub-hero .container {
        position: relative;
        z-index: 1;
    }

    .game-hub-hero .title,
    .game-hub-hero .subtitle {
        color: #fff;
    }

    .game-eyebrow {
        color: #ffe7a3;
        font-weight: 700;
        letter-spacing: 0;
        text-transform: uppercase;
        margin-bottom: 0.75rem;
    }

    .game-stats-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
        margin-top: 1.25rem;
        max-width: 620px;
    }

    .game-stats-row div,
    .leaderboard-panel {
        background: rgba(255, 255, 255, 0.94);
        color: #1f2933;
        border-radius: 8px;
        padding: 1rem;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    }

    .game-stats-row strong {
        display: block;
        font-size: 1.6rem;
        line-height: 1;
    }

    .game-stats-row span {
        color: #52606d;
        font-size: 0.9rem;
    }

    .leaderboard-panel.compact {
        box-shadow: 0 8px 20px rgba(31, 41, 51, 0.08);
    }

    .game-hub-hero .leaderboard-panel .title,
    .game-hub-hero .leaderboard-panel .leaderboard-row,
    .game-hub-hero .leaderboard-panel strong {
        color: #111827;
    }

    .leaderboard-row {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) auto;
        gap: 0.75rem;
        align-items: center;
        padding: 0.65rem 0;
        border-bottom: 1px solid #e4e7eb;
    }

    .leaderboard-row:last-child {
        border-bottom: 0;
    }

    .leaderboard-row.small {
        font-size: 0.9rem;
        padding: 0.45rem 0;
    }

    .leaderboard-row .rank {
        color: #246a73;
        font-weight: 800;
    }

    .leaderboard-row .name {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .game-card {
        display: block;
        height: 100%;
        background: #fff;
        border: 1px solid #d9e2ec;
        border-radius: 8px;
        padding: 1.25rem;
        color: #1f2933;
        position: relative;
        overflow: hidden;
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .game-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 4px;
        background: #246a73;
    }

    .game-card:hover {
        color: #1f2933;
        border-color: #246a73;
        box-shadow: 0 14px 28px rgba(31, 41, 51, 0.12);
        transform: translateY(-3px);
    }

    .game-card-featured {
        border-color: #f3b23d;
        background: linear-gradient(180deg, #fff 0%, #fff9ea 100%);
    }

    .game-card-featured::before {
        background: #f3b23d;
    }

    .game-card-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 8px;
        margin-bottom: 1rem;
        font-size: 1.35rem;
    }

    .game-card-link {
        display: inline-block;
        margin-top: 1rem;
        color: #246a73;
        font-weight: 700;
    }

    .topic-row {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) 24px;
        gap: 0.75rem;
        align-items: center;
        background: #fff;
        border: 1px solid #d9e2ec;
        border-radius: 8px;
        padding: 0.9rem;
        color: #1f2933;
        min-height: 74px;
    }

    .topic-row:hover {
        color: #1f2933;
        border-color: #246a73;
    }

    .topic-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: #e6f6f4;
        color: #246a73;
    }

    .topic-row strong,
    .topic-row small {
        display: block;
    }

    .topic-row small {
        color: #697586;
    }

    .game-seo-content {
        font-size: 1.05rem;
    }

    @media screen and (max-width: 768px) {
        .game-hub-hero .title {
            font-size: 2.35rem;
        }

        .game-stats-row {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.4rem;
        }

        .game-stats-row div {
            padding: 0.65rem 0.45rem;
            min-width: 0;
        }

        .game-stats-row strong {
            font-size: 1.15rem;
        }

        .game-stats-row span {
            display: block;
            font-size: 0.72rem;
            line-height: 1.15;
        }

        .game-section-heading {
            display: block !important;
        }
    }
