.game-hub-page {
    --game-accent: #5865f2;
    --game-accent-soft: rgba(88, 101, 242, 0.1);
}

.game-hub-hero {
    position: relative;
    overflow: hidden;
}

.game-hub-hero::after {
    position: absolute;
    right: -8rem;
    bottom: -11rem;
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.12), transparent 68%);
    content: "";
    pointer-events: none;
}

.game-hub-main { background: var(--bg-main); }

.game-hub-heading,
.game-hub-heading > div {
    display: flex;
    align-items: center;
}

.game-hub-heading {
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.game-hub-heading > div { gap: 0.75rem; }

.game-hub-heading h2,
.game-hub-heading p { margin: 0; }

.game-hub-heading h2 {
    color: var(--text-main);
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 820;
    letter-spacing: -0.04em;
}

.game-hub-heading p {
    color: var(--text-muted);
    font-size: 0.84rem;
}

.game-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.game-hub-card {
    --card-accent: #5865f2;
    --card-accent-soft: rgba(88, 101, 242, 0.1);
    position: relative;
    display: flex;
    min-height: 430px;
    flex-direction: column;
    padding: clamp(1.4rem, 4vw, 2.2rem);
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    box-shadow: var(--shadow-sm);
    color: var(--text-main);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.game-hub-card.is-pubg {
    --card-accent: #d99120;
    --card-accent-soft: rgba(217, 145, 32, 0.11);
}

.game-hub-card::after {
    position: absolute;
    top: -5rem;
    right: -5rem;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: radial-gradient(circle, var(--card-accent-soft), transparent 68%);
    content: "";
    pointer-events: none;
}

.game-hub-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--card-accent) 34%, var(--border-color));
    box-shadow: var(--shadow-lg);
    color: var(--text-main);
}

.game-card-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid color-mix(in srgb, var(--card-accent) 24%, transparent);
    border-radius: var(--radius-lg);
    background: var(--card-accent-soft);
    color: var(--card-accent);
    font-size: 1.2rem;
}

.game-card-label {
    margin-bottom: 0.55rem;
    color: var(--card-accent);
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.game-hub-card h2 {
    margin: 0;
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 840;
    letter-spacing: -0.045em;
}

.game-hub-card > p {
    margin: 1rem 0 1.25rem;
    color: var(--text-sub);
    font-size: 0.93rem;
    line-height: 1.7;
}

.game-hub-card ul {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    color: var(--text-sub);
    font-size: 0.84rem;
    list-style: none;
}

.game-hub-card li::before {
    margin-right: 0.55rem;
    color: var(--card-accent);
    content: "✓";
    font-weight: 850;
}

.game-card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1.75rem;
    color: var(--card-accent);
    font-size: 0.88rem;
    font-weight: 800;
}

@media (max-width: 760px) {
    .game-hub-grid { grid-template-columns: 1fr; }
    .game-hub-heading { align-items: flex-start; flex-direction: column; }
    .game-hub-card { min-height: 390px; }
}
