/* ==============================
   Karma Exo-like Benchmark UI
================================ */

.kgb-exo {
    --bg: #ffffff;
    --soft: #f7f9fc;
    --border: #e6ebf2;
    --text: #1f2937;
    --muted: #6b7280;

    --fps-bad: #ff4d4d;
    --fps-ok: #ffd000;
    --fps-good: #6cff8d;
    --fps-pro: #00ff66;

    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px 24px;
    margin-top: 40px;
}

.kgb-exo .kgb-title {
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--text);
}

/* Swiper */
.kgb-exo .kgb-swiper {
    padding: 24px 0 10px;
}

.kgb-exo .swiper-slide {
    background: var(--soft);
    border-radius: 16px;
    padding: 22px 16px;
    text-align: center;
    opacity: .4;
    transform: scale(.9);
    transition: .35s ease;
}

.kgb-exo .swiper-slide-active {
    opacity: 1;
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(0, 255, 100, .18);
}

.kgb-exo .kgb-game-image img {
    max-width: 140px;
    margin: 0 auto 10px;
    border-radius: 12px;
    display: block;
}

.kgb-exo .kgb-game-title {
    font-weight: 700;
    color: var(--text);
}

/* FPS PANEL */
.kgb-exo .kgb-fps-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 24px;
}

/* Rings */
.kgb-exo .fps-ring {
    position: relative;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--ring-color) var(--ring), #e5e7eb 0);
    display: grid;
    place-items: center;
    border: 8px solid #2d2d2d;
}

.kgb-exo .fps-ring::after {
    content: '';
    position: absolute;
    inset: 14px;
    background: #fff;
    border-radius: 50%;
}

.kgb-exo .fps-ring>* {
    position: relative;
    z-index: 1;
}

.kgb-exo .fps-ring .lbl {
    font-size: .9rem;
    color: var(--muted);
}

.kgb-exo .fps-ring strong {
    font-size: 1.9rem;
    font-weight: 800;
}

.kgb-exo .fps-ring em {
    font-style: normal;
    font-size: .75rem;
    color: var(--muted);
}

/* Pagination */
.kgb-exo .swiper-pagination-bullet {
    width: 48px;
    height: 3px;
    border-radius: 0;
    background: #c7c7c7;
    margin: 0 2px !important;
}

.kgb-exo .swiper-pagination-bullet-active {
    background: #111827;
}

/* Responsive */
@media (max-width: 768px) {
    .kgb-exo .kgb-fps-panel {
        grid-template-columns: 1fr;
    }
}