.gm-single-game .gm-iframe-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    margin-bottom: 1.5rem;
}

.gm-single-game .gm-iframe-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.gm-single-game .gm-description,
.gm-single-game .gm-instructions,
.gm-single-game .gm-genres,
.gm-single-game .gm-faqs {
    margin-bottom: 1.5rem;
}
.gm-game-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.gm-game-card img {
    width: 100%;
    height: auto;
    display: block;
}
.gm-genre-chip {
    list-style: none;
    margin: 0 0 12px;
}

.gm-genre-chip a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(0,0,0,0.05); /* theme-neutral */
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.gm-genre-chip a:hover {
    background: rgba(0,0,0,0.08);
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.12);
}

.gm-genre-chip-name {
    font-weight: 600;
}

.gm-genre-chip-count {
    background: var(--ast-global-color-0, #333);
    color: #fff;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}
