/* Casino Styles - Additional styles for casino listings */
.cls_s6lkdnkw {
    width: 100%;
    margin: 20px 0;
}

.cls_egn8z0ky {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.cls_ulut2isr {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
}

.cls_40qiapyg {
    flex: 1;
    padding: 0 20px;
}

.cls_1lp2w9nn {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cls_jq9q0fh4 {
    color: #ffd700;
    font-size: 20px;
}

.cls_rsaa44h1 {
    display: flex;
    gap: 8px;
}

.cls_omd2yy09, .cls_12a4ytyc {
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3 ease;
}

.cls_omd2yy09 {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
}

.cls_omd2yy09:hover {
    background: linear-gradient(135deg, #1b5e20, #0d3e0d);
    transform: translateY(-2px);
}

.cls_12a4ytyc {
    background: transparent;
    color: #2196f3;
    border: 2px solid #2196f3;
}

.cls_12a4ytyc:hover {
    background: #2196f3;
    color: white;
}


/* ============================================= */
/* Desktop Layout for Casino Review Pages        */
/* ============================================= */

/* Main review container - 2 column grid on desktop */
.casino-header-section {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Left sidebar - Casino logo card */
.casino-item-hi-container {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.casino-item-hi-container img {
    max-width: 200px;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Casino info card styling */
.casino-container-ec-header {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Rating badge */
.casino-box-vg-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1a1a2e;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.casino-box-vg-header::before {
    content: "★";
    font-size: 20px;
}

/* Casino info items */
.casino-info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.casino-info-item:last-child {
    border-bottom: none;
}

.casino-info-item strong {
    color: #666;
    font-weight: 500;
}

.casino-info-item span {
    color: #1a1a2e;
    font-weight: 600;
}

/* Bonus highlight */
.casino-bonus-highlight {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid #2e7d32;
}

.casino-bonus-highlight h3 {
    color: #2e7d32;
    margin: 0 0 8px 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.casino-bonus-highlight p {
    color: #1a1a2e;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* Payment methods section */
.payment-methods-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.payment-methods-section h4 {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.jz-sq-payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 10px;
}

.jz-sq-payment-grid img {
    width: 50px;
    height: 35px;
    object-fit: contain;
    background: #f5f5f5;
    border-radius: 6px;
    padding: 5px;
    transition: transform 0.2s ease;
}

.jz-sq-payment-grid img:hover {
    transform: scale(1.1);
}

/* Content sections */
.casino-content-section {
    margin-top: 40px;
}

.casino-section-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.casino-section-card h2 {
    color: #1a1a2e;
    font-size: 24px;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.casino-section-card h2::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    margin-right: 12px;
    vertical-align: middle;
    border-radius: 2px;
}

.casino-section-card p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.casino-section-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.casino-section-card li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #444;
    border-bottom: 1px solid #f5f5f5;
}

.casino-section-card li:last-child {
    border-bottom: none;
}

.casino-section-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

/* CTA section */
.casino-cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 30px;
}

.casino-cta-section h3 {
    color: white;
    font-size: 28px;
    margin: 0 0 20px 0;
}

.casino-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.casino-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.5);
}

/* Hero image styling */
.hero-image-container {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 30px;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile responsive */
@media (max-width: 900px) {
    .casino-header-section {
        grid-template-columns: 1fr;
        padding: 20px 15px;
    }
    
    .casino-item-hi-container {
        position: static;
        padding: 20px;
    }
    
    .casino-item-hi-container img {
        max-width: 150px;
        max-height: 90px;
    }
    
    .casino-container-ec-header {
        padding: 20px;
    }
    
    .casino-box-vg-header {
        font-size: 20px;
        padding: 10px 20px;
    }
    
    .casino-section-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .casino-section-card h2 {
        font-size: 20px;
    }
    
    .casino-cta-section {
        padding: 30px 20px;
    }
    
    .casino-cta-section h3 {
        font-size: 22px;
    }
    
    .casino-cta-button {
        padding: 15px 40px;
        font-size: 16px;
    }
}

/* === HIDE CASINO NAMES UNDER LOGOS === */
[class*="-casino-name"], .casino-name, .dl-casino-name, .gb-casino-name { display: none !important; }
