.game-test-info {
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.game-test-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.game-test-kicker {
    display: block;
    margin-bottom: 4px;
    color: #b9c2d0;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.game-test-heading h3 {
    margin: 0;
    font-size: 1.2rem;
}

.game-test-heading h3 i,
.game-test-status i {
    color: #39d98a;
}

.game-test-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #dff8eb;
    font-weight: 700;
    white-space: nowrap;
}

.game-test-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.game-test-item {
    min-width: 0;
}

.game-test-item span {
    display: block;
    margin-bottom: 3px;
    color: #aeb8c8;
    font-size: 0.82rem;
}

.game-test-item strong {
    display: block;
    color: #f6f8fb;
    font-size: 0.96rem;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.game-test-scope {
    margin: 16px 0 0;
    color: #c8d0dc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.finder-verified-note {
    margin: 10px 0 0;
    color: #aeb8c8;
    font-size: 0.84rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .game-test-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .game-test-info {
        margin: 18px 0;
        padding: 16px 0;
    }

    .game-test-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .game-test-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
