.ps-set-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.ps-set-card {
    background: #111;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    text-align: center;
    color: #fff;
    transition: 0.2s;
}

.ps-set-card:hover {
    transform: scale(1.03);
}

.ps-set-img-wrapper {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ps-set-box {
    width: 160px;
    height: auto;
}

.ps-set-info {
    margin-top: 10px;
}

.ps-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 130px);
    gap: 15px;
    padding: 20px;
    background: #181818;
}

.ps-card img {
    width: 100%;
    border-radius: 5px;
    background: #000;
}

#ps-card-modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
}

.ps-modal-content {
    background: #222;
    padding: 25px;
    border-radius: 10px;
    width: 400px;
    text-align: center;
    color: #fff;
}

.ps-modal-close {
    float: right;
    cursor: pointer;
    font-size: 28px;
}

.ps-modal-img {
    width: 70%;
    margin-bottom: 20px;
}
