/* ===== GAME PAGES BASE STYLES - Untuk game-olympus.html & game-bonanza.html ===== */

/* Game Wrapper */
.game-wrapper-pro { 
    margin-bottom: 20px; 
}

.game-status-bar {
    display: flex; 
    gap: 10px; 
    background: #1a1a1a; 
    padding: 6px 12px; 
    font-size: 10px;
    border-radius: 8px 8px 0 0; 
    border: 1px solid #333; 
    border-bottom: none; 
    color: #aaa;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rtp-live { 
    margin-left: auto; 
    color: var(--gold); 
    font-weight: bold; 
    animation: pulse 2s infinite; 
}

.game-frame-border {
    border: 2px solid var(--gold); 
    border-radius: 0 0 8px 8px; 
    overflow: hidden;
    background: #000; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

iframe { 
    width: 100%; 
    height: 50vh; 
    border: none; 
    display: block; 
}

/* Jackpot/Pattern Generator Section untuk Game Pages */
.jackpot-section {
    text-align: center; 
    background: linear-gradient(to bottom, #222, #000);
    border: 1px solid var(--gold); 
    padding: 15px; 
    border-radius: 10px; 
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.jackpot-label { 
    font-size: 10px; 
    letter-spacing: 3px; 
    color: #888; 
    margin-bottom: 5px; 
    text-transform: uppercase; 
}

#pola-result {
    background: #111;
    border: 1px dashed #333;
    padding: 10px;
    border-radius: 6px;
    margin: 10px 0;
    font-family: 'Rajdhani';
    font-size: 14px;
    color: #fff;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.vip-booster-btn {
    width: 100%; 
    padding: 12px; 
    background: linear-gradient(135deg, var(--gold), #b38b00);
    border: none; 
    border-radius: 6px; 
    font-weight: bold; 
    color: #000; 
    cursor: pointer;
    display: flex; 
    justify-content: center; 
    gap: 8px; 
    font-family: 'Rajdhani'; 
    font-size: 14px;
    transition: all 0.3s ease;
}

.vip-booster-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Section Title untuk Game Pages */
.section-title { 
    font-size: 14px; 
    font-weight: bold; 
    color: #fff; 
    margin-bottom: 15px; 
    border-left: 3px solid var(--gold); 
    padding-left: 10px; 
}

/* Horizontal Scroll untuk Game Pages */
.h-scroll-wrapper {
    display: flex; 
    gap: 12px; 
    overflow-x: auto; 
    padding-bottom: 10px;
    scroll-snap-type: x mandatory; 
    margin-bottom: 20px;
    -ms-overflow-style: none; 
    scrollbar-width: none;
}

.h-scroll-wrapper::-webkit-scrollbar { display: none; }

.h-card {
    min-width: 130px; 
    border-radius: 10px; 
    overflow: hidden;
    border: 1px solid #333; 
    position: relative; 
    scroll-snap-align: start;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

.h-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.h-card img { 
    width: 100%; 
    height: 130px; 
    object-fit: cover; 
}

.h-info { padding: 8px; }

.h-title { 
    font-size: 10px; 
    color: #fff; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    font-weight: bold;
}

.h-rtp { 
    font-size: 9px; 
    color: var(--gold); 
    display: flex; 
    align-items: center; 
    gap: 3px; 
}

/* Card Badges untuk Game Recommendations */
.card-badge {
    position: absolute; 
    top: 5px; 
    right: 5px; 
    background: red; 
    color: white;
    font-size: 9px; 
    padding: 2px 6px; 
    border-radius: 4px; 
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5); 
    z-index: 2; 
    animation: pulse 2s infinite;
}

.card-badge.new { 
    background: #00aa00; 
}

/* Responsive untuk Game Pages */
@media (max-width: 600px) {
    iframe {
        height: 40vh;
    }
    
    .game-status-bar {
        font-size: 9px;
        padding: 5px 10px;
    }
}