/* comparison charts */
.compare-row {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 16px;
    margin-bottom: 12px;
}

.compare-bar-container {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--r);
    overflow: hidden;
}

.compare-bar {
    height: 100%;
    border-radius: var(--r);
    transition: width 0.4s ease-in-out;
}

.compare-bar.a {
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
}

.compare-bar.b {
    background: var(--green);
    box-shadow: 0 0 8px var(--green-dim);
}

/* game cover */
.game-card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: var(--r);
    border: 1px solid var(--border);
}
