.gts-games-theme {
    min-height: 100vh;
    color: #f4f0ff;
    background:
        radial-gradient(circle at top left, rgba(142, 77, 255, 0.24), transparent 24%),
        radial-gradient(circle at bottom right, rgba(91, 42, 201, 0.18), transparent 30%),
        linear-gradient(180deg, #121216 0%, #171821 54%, #121217 100%);
}

.gts-games-shell {
    width: min(1360px, calc(100% - 34px));
    margin: 0 auto;
    padding: 42px 0 72px;
}

.gts-games-shell--store {
    display: flex;
    justify-content: center;
}

.gts-games-hero {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 24px;
}

.gts-games-kicker {
    margin: 0 0 12px;
    color: #b180ff;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.gts-games-hero h1,
.gts-games-store-panel h1 {
    margin: 0 0 10px;
    color: #fff;
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.14;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gts-games-lead,
.gts-games-store-copy,
.gts-game-card__body p,
.gts-games-section-head p,
.gts-games-footer-note {
    margin: 0;
    color: #d2cde0;
    font-family: 'Chakra Petch', sans-serif;
}

.gts-games-hero-badge {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(177, 128, 255, 0.4);
    border-radius: 999px;
    background: rgba(145, 70, 255, 0.12);
    color: #f3ebff;
    font-weight: 700;
    white-space: nowrap;
}

.gts-games-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 18px;
}

.gts-games-section-head h2 {
    margin: 0 0 6px;
    color: #fff;
    font-family: 'Syncopate', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gts-games-link {
    color: #f3ebff;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    text-decoration: none;
}

.gts-games-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.gts-game-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background: rgba(20, 20, 26, 0.86);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.gts-game-card__cover {
    aspect-ratio: 16 / 9;
    background: #262735;
}

.gts-game-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gts-game-card__body {
    padding: 18px;
    background: linear-gradient(180deg, rgba(32, 33, 43, 0.96), rgba(26, 27, 34, 1));
}

.gts-game-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.gts-chip {
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(13, 14, 19, 0.56);
    color: #ddd6ef;
    font-size: 0.77rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gts-chip--hot {
    background: rgba(142, 77, 255, 0.2);
    border-color: rgba(177, 128, 255, 0.45);
    color: #f3ebff;
}

.gts-chip--twitch {
    background: rgba(145, 70, 255, 0.16);
    border-color: rgba(191, 155, 255, 0.34);
    color: #f3ebff;
}

.gts-game-card__body h3 {
    margin: 0 0 8px;
    color: #fff;
    font-family: 'Syncopate', sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.gts-game-card__body p {
    margin-bottom: 16px;
    line-height: 1.55;
    font-size: 0.95rem;
}

.gts-game-card__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: #b5b1c7;
    font-size: 0.84rem;
}

.gts-games-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    padding: 11px 14px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: linear-gradient(135deg, #8e4dff, #5b2ac9);
    color: #fff;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 26px rgba(91, 42, 201, 0.34);
}

.gts-games-button--ghost {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
}

.gts-games-footer-note {
    margin-top: 20px;
    font-size: 0.95rem;
}

.gts-games-store-panel {
    width: min(760px, 100%);
    margin-top: 12px;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background: rgba(26, 27, 34, 0.92);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.gts-games-store-panel p {
    line-height: 1.7;
}

.gts-games-store-actions {
    display: flex;
    gap: 14px;
    margin-top: 22px;
    flex-wrap: wrap;
}

@media (max-width: 1120px) {
    .gts-games-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .gts-games-shell {
        width: min(100% - 18px, 1360px);
        padding-top: 28px;
    }

    .gts-games-hero,
    .gts-games-section-head,
    .gts-game-card__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .gts-games-grid {
        grid-template-columns: 1fr;
    }

    .gts-games-store-panel {
        padding: 24px;
    }

    .gts-games-store-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gts-games-button {
        width: 100%;
    }
}