/* Slot Luxury Style */
/* assets/style.css */
.pg-grid-container {
    display: grid;
    /* ค่าเริ่มต้นจะถูกทับด้วย selectors จาก Elementor */
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px;
    padding: 10px;
}



/* เพิ่มความสวยงามให้ตัวหนังสือกรณีชื่อยาวเกินไป */
.pg-card strong {
    display: block;
    color: #fff;
    font-size: 13px;
    height: 32px; /* ล็อคความสูงไว้ 2 บรรทัด */
    overflow: hidden;
    line-height: 1.2;
}

.pg-card {
    background: linear-gradient(145deg, #1e1e1e, #111);
    border: 1px solid #3d3d3d;
    border-radius: 15px;
    padding: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pg-card:hover {
    transform: translateY(-8px);
    border-color: #ffcf00;
    box-shadow: 0 10px 20px rgba(255, 207, 0, 0.2);
}





/* Overlay Game */
.pg-overlay-style {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #000; z-index: 999999;
}

.pg-toolbar {
    background: #000;
    border-bottom: 1px solid #333;
    color: #ffcf00;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.pg-card strong {
    margin-top: 10px;

}

#pg-iframe { width: 100%; height: calc(100% - 60px); border: none; }