/* ========================================
   SINGLE GAME PAGE - PERFORMANCE OPTIMIZED
   Version: 2.0 - Ultra Fast Dark Theme
   ======================================== */

:root {
    --primary-navy: #0b004b;
    --navy-dark: #08022a;
    --navy-medium: #1a0d5c;
    --accent-red: #da1f15;
    --red-hover: #ff4d43;
    --white: #ffffff;
    --text-bright: #f0f0f0;
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-glow: rgba(218, 31, 21, 0.3);
    --shadow-simple: 0 4px 12px rgba(0, 0, 0, 0.4);
    --transition-fast: all 0.15s ease;
}

/* ========================================
   HEADER SECTION
   ======================================== */

#single-game-section {
    background: var(--primary-navy);
    min-height: 100vh;
}

.newHeader {
    padding: 60px 20px;
    text-align: center;
    background: var(--navy-dark);
    border-bottom: 2px solid var(--border-glow);
}

.software-bg-logo {
    max-width: 160px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-simple);
    margin-bottom: 20px;
}

.newHeader h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 16px;
    line-height: 1.3;
}

/* Breadcrumb Navigation - Enhanced */
.cBreadcrumb {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    padding: 0;
}

.cBreadcrumb span {
    display: inline-flex !important;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.cBreadcrumb span:not(:last-child)::after {
    content: "/" !important;
    display: inline-block !important;
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.cBreadcrumb span:last-child {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.cBreadcrumb a {
    color: #da1f15 !important;
    text-decoration: none;
    transition: color 0.15s ease;
}

.cBreadcrumb a:hover {
    color: #ff4d43 !important;
    text-decoration: underline;
}

/* ========================================
   GAME IFRAME SECTION - OPTIMIZED
   ======================================== */

.game-iframe-wrapper {
    position: relative;
    background: var(--navy-dark);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
    border: 1px solid var(--border-glow);
    /* Performance: contain layout */
    contain: layout paint;
}

.game-iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.game-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.iframe-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-dark);
    z-index: 10;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Fallback when iframe fails */
.game-iframe-fallback {
    display: none;
    padding: 40px 20px;
    text-align: center;
    background: var(--navy-medium);
}

.fallback-content {
    max-width: 600px;
    margin: 0 auto;
}

.fallback-game-logo {
    max-width: 120px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.fallback-icon {
    font-size: 48px;
    color: var(--accent-red);
    margin-bottom: 16px;
}

.fallback-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 8px;
}

.fallback-subtitle {
    font-size: 18px;
    color: var(--accent-red);
    margin: 0 0 16px;
}

.fallback-message {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.fallback-game-info {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}

.fallback-game-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 16px;
}

.fallback-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.fallback-stat {
    text-align: center;
}

.fallback-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.fallback-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.fallback-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.fallback-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.fallback-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.fallback-btn-primary {
    background: var(--accent-red);
    color: var(--white);
}

.fallback-btn-primary:hover {
    background: var(--red-hover);
    color: var(--white);
}

.fallback-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.fallback-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.fallback-btn-outline {
    background: transparent;
    border: 1px solid var(--border-glow);
    color: var(--white);
}

.fallback-btn-outline:hover {
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.fallback-note {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* ========================================
   GAME CONTENT SECTION
   ======================================== */

.single-game-content {
    padding: 40px 0;
}

.play-game-content {
    background: transparent;
    color: var(--white);
}

.faqh2title {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--accent-red);
}

/* ========================================
   GAME INFO TABLE
   ======================================== */

#newTable {
    margin-bottom: 32px;
}

#single-game-table {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--navy-medium);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-glow);
}

#single-game-table li {
    display: flex;
    flex-wrap: wrap;
}

#single-game-table .tablehead {
    background: var(--accent-red);
}

#single-game-table .tablehead .tLi {
    flex: 1;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    text-align: center;
    min-width: 100px;
}

#single-game-table .tablehead .tLi sub {
    display: block;
    font-size: 10px;
    font-weight: 400;
    opacity: 0.8;
    text-transform: none;
}

#single-game-table .tablebody {
    background: var(--navy-medium);
}

#single-game-table .tablebody .tLi {
    flex: 1;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--text-bright);
    text-align: center;
    min-width: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#single-game-table .tablebody .tLi::before {
    content: attr(data-id);
    display: none;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 4px;
}

/* Mobile responsive table */
@media (max-width: 768px) {
    #single-game-table .tablehead {
        display: none;
    }

    #single-game-table .tablebody {
        flex-direction: column;
    }

    #single-game-table .tablebody .tLi {
        display: flex;
        justify-content: space-between;
        text-align: left;
        padding: 12px 16px;
    }

    #single-game-table .tablebody .tLi::before {
        display: inline;
    }
}

/* ========================================
   SIMILAR GAMES SECTION
   ======================================== */

.similar-games {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Game cards in similar games - use content-visibility */
.similar-games .game-content {
    content-visibility: auto;
    contain-intrinsic-size: 0 200px;
}

/* ========================================
   CASINO SECTION
   ======================================== */

.popular_casino_row {
    margin-top: 48px;
}

.popular-casino-card-heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 24px;
}

/* ========================================
   DESCRIPTION CONTENT
   ======================================== */

.play-game-content h1,
.play-game-content h2,
.play-game-content h3,
.play-game-content h4,
.play-game-content h5 {
    color: var(--white);
    margin-top: 32px;
    margin-bottom: 16px;
}

.play-game-content h2 {
    font-size: 24px;
    padding: 16px 0 16px 20px;
    background: rgba(218, 31, 21, 0.15);
    border-left: 4px solid var(--accent-red);
    border-radius: 0 8px 8px 0;
}

.play-game-content h3 {
    font-size: 20px;
    padding-left: 12px;
    border-left: 3px solid var(--accent-red);
}

.play-game-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-bright);
    margin: 16px 0;
}

.play-game-content ul,
.play-game-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.play-game-content li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-bright);
    margin: 10px 0;
}

.play-game-content a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
}

.play-game-content a:hover {
    color: var(--red-hover);
    text-decoration: underline;
}

.play-game-content strong {
    color: var(--white);
    font-weight: 700;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .newHeader {
        padding: 40px 16px;
    }

    .newHeader h1 {
        font-size: 24px;
    }

    .software-bg-logo {
        max-width: 120px;
    }

    .single-game-content {
        padding: 24px 0;
    }

    .faqh2title {
        font-size: 22px;
    }

    .fallback-stats {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.sectionPTPB {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Hide old table */
figure.table {
    display: none !important;
}

/* Fix spacing issues */
.newHeader {
    padding-bottom: 20px !important;
    margin-bottom: 0 !important;
}

#single-game-section .newHeader {
    padding: 40px 20px 20px !important;
}

.game-iframe-wrapper {
    margin-top: 20px !important;
}

.single-game-content {
    padding-top: 20px !important;
}

/* ========================================
   CASINO SECTION - MODERN REDESIGN
   ======================================== */

/* Main casino wrapper */
.popular_casino_row {
    margin-top: 40px !important;
    padding: 0 !important;
}

.popular-casino-card-heading {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-align: center !important;
    margin-bottom: 30px !important;
    padding: 20px 30px !important;
    background: linear-gradient(135deg, #1a3a5c 0%, #0d2137 100%) !important;
    border-radius: 12px !important;
    border-left: 4px solid #da1f15 !important;
}

/* No Casino Available - Stay Tuned Redesign */
#noCasino,
.no-casino-fallback {
    background: linear-gradient(135deg, #1a0d5c 0%, #0b004b 100%) !important;
    border-radius: 16px !important;
    padding: 50px 40px !important;
    text-align: center !important;
    border: 1px solid rgba(218, 31, 21, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    max-width: 600px !important;
    margin: 30px auto !important;
}

#noCasino img,
.no-casino-fallback img {
    display: none !important; /* Hide the old yellow image */
}

#noCasino::before,
.no-casino-fallback::before {
    content: "\f11b" !important; /* Font Awesome gamepad icon */
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    font-size: 48px !important;
    color: #da1f15 !important;
    display: block !important;
    margin-bottom: 20px !important;
}

#noCasino span,
.no-casino-fallback span {
    display: block !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 25px !important;
    padding: 0 !important;
    background: none !important;
}

#noCasino .splbtns,
.no-casino-fallback .splbtns,
#noCasino a,
.no-casino-fallback a:not(.casino-modal-link) {
    display: inline-block !important;
    background: #da1f15 !important;
    color: #ffffff !important;
    padding: 14px 32px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    border: none !important;
}

#noCasino .splbtns:hover,
.no-casino-fallback .splbtns:hover,
#noCasino a:hover,
.no-casino-fallback a:not(.casino-modal-link):hover {
    background: #ff4d43 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(218, 31, 21, 0.4) !important;
}

/* Casino Cards - When Available */
.casino-section-wrapper {
    margin: 20px 0 !important;
}

.casino-cards-row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
}

.casino-cards {
    flex: 0 0 auto !important;
    width: 320px !important;
    max-width: 100% !important;
}

.casino-card {
    background: linear-gradient(145deg, #1a0d5c 0%, #0b004b 100%) !important;
    border-radius: 16px !important;
    padding: 24px !important;
    border: 1px solid rgba(218, 31, 21, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
    min-height: 280px !important;
    display: flex !important;
    flex-direction: column !important;
}

.casino-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(218, 31, 21, 0.5) !important;
    box-shadow: 0 8px 30px rgba(218, 31, 21, 0.2) !important;
}

.casino-card-logo {
    text-align: center !important;
    margin-bottom: 20px !important;
    padding: 15px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 10px !important;
}

.casino-card-logo img {
    max-width: 160px !important;
    height: auto !important;
    object-fit: contain !important;
}

.casino-card-content {
    flex: 1 !important;
    text-align: center !important;
}

.casino-card-detail {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
}

.casino-card-detail span {
    display: block !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 8px !important;
}

.casino-read-review {
    text-align: center !important;
    margin-top: 15px !important;
}

.read-review-btn {
    display: inline-block !important;
    color: #da1f15 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.read-review-btn:hover {
    color: #ff4d43 !important;
    text-decoration: underline !important;
}

.casino-uk-licence {
    margin-top: 15px !important;
    padding-top: 15px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: center !important;
}

.casino-uk-licence img {
    max-width: 120px !important;
    opacity: 0.8 !important;
}

.casino-uk-licence .ukdiss {
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 8px !important;
    line-height: 1.4 !important;
}

.casino-play-content {
    margin-top: 15px !important;
}

.play-now-btn {
    display: inline-block !important;
    background: #da1f15 !important;
    color: #ffffff !important;
    padding: 12px 30px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    text-align: center !important;
}

.play-now-btn:hover {
    background: #ff4d43 !important;
    color: #ffffff !important;
}

@media (max-width: 768px) {
    #noCasino,
    .no-casino-fallback {
        padding: 35px 25px !important;
        margin: 20px 15px !important;
    }
    
    .casino-cards {
        width: 100% !important;
    }
    
    .popular-casino-card-heading {
        font-size: 20px !important;
        padding: 15px 20px !important;
    }
}

/* ========================================
   CASINO SECTION - MOBILE OPTIMIZED
   Version 2.4
   ======================================== */

/* Stay Tuned / No Casino Section - Mobile */
@media (max-width: 576px) {
    #noCasino,
    .no-casino-fallback {
        padding: 30px 20px !important;
        margin: 15px 10px !important;
        border-radius: 12px !important;
    }
    
    #noCasino img,
    .no-casino-fallback img {
        max-width: 200px !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 20px !important;
    }
    
    #noCasino .no-casino-icon,
    .no-casino-fallback .no-casino-icon {
        font-size: 48px !important;
        margin-bottom: 15px !important;
    }
    
    #noCasino h3,
    .no-casino-fallback h3 {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }
    
    #noCasino span,
    .no-casino-fallback span {
        font-size: 14px !important;
        line-height: 1.5 !important;
        padding: 0 5px 15px !important;
        display: block !important;
    }
    
    #noCasino .splbtns,
    .no-casino-fallback .splbtns {
        width: 100% !important;
        max-width: 280px !important;
        padding: 14px 24px !important;
        font-size: 15px !important;
    }
    
    /* Casino Cards - Mobile */
    .casino-cards {
        width: 100% !important;
        margin-bottom: 15px !important;
    }
    
    .casinoBonusList {
        flex-direction: column !important;
        padding: 20px 15px !important;
        gap: 15px !important;
    }
    
    .casino-card-logo {
        width: 100% !important;
        max-width: 180px !important;
        margin: 0 auto 15px !important;
    }
    
    .casino-card-logo img {
        width: 100% !important;
        height: auto !important;
        max-height: 80px !important;
        object-fit: contain !important;
    }
    
    .casino-card-content {
        width: 100% !important;
        text-align: center !important;
    }
    
    .casino-card-detail {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }
    
    .casino-card-detail span {
        font-size: 11px !important;
    }
    
    .casino-play-content {
        width: 100% !important;
    }
    
    .play-now-btn {
        width: 100% !important;
        padding: 14px 20px !important;
        font-size: 15px !important;
    }
    
    .casino-read-review {
        margin-top: 12px !important;
    }
    
    .casino-uk-licence {
        margin-top: 12px !important;
        padding-top: 12px !important;
    }
    
    .casino-uk-licence img {
        max-width: 100px !important;
    }
    
    .casino-uk-licence .ukdiss {
        font-size: 10px !important;
    }
    
    .popular-casino-card-heading {
        font-size: 18px !important;
        padding: 12px 15px !important;
    }
}

/* Tablet adjustments */
@media (min-width: 577px) and (max-width: 768px) {
    #noCasino,
    .no-casino-fallback {
        padding: 35px 25px !important;
        margin: 20px 15px !important;
    }
    
    .casinoBonusList {
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .casino-card-logo {
        flex: 0 0 auto !important;
    }
    
    .casino-card-content {
        flex: 1 !important;
        min-width: 200px !important;
    }
}

/* ========================================
   FOOTER FIX - No gap at bottom
   ======================================== */

html, body {
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
}

main, .main-content, #single-game-section {
    flex: 1;
}

footer, .footer, .site-footer {
    margin-top: auto !important;
    margin-bottom: 0 !important;
}

.single-game-content {
    margin-bottom: 0 !important;
}

/* ========================================
   FAQ SECTION - FULL WIDTH FIX
   ======================================== */

/* Make FAQ section full width like rest of content */
.faq-accordion {
    max-width: 100% !important;
}

/* Override narrow column classes in FAQ */
.faq-section .col-lg-10,
.faq-section .col-xl-8,
.row > .col-lg-10.col-xl-8.mx-auto {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

/* FAQ container within play-game-content should be full width */
.play-game-content .col-lg-10,
.play-game-content .col-xl-8 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

/* FAQ Header styling */
.faq-section-header {
    margin-bottom: 24px;
}

.faq-main-heading {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    margin: 0 0 16px !important;
    padding-bottom: 16px !important;
    border-bottom: 3px solid var(--accent-red) !important;
}

.faq-header-divider {
    display: none;
}

/* FAQ Accordion Items */
.faq-accordion .panel {
    background: var(--navy-medium) !important;
    border: 1px solid var(--border-glow) !important;
    border-radius: 8px !important;
    margin-bottom: 12px !important;
    overflow: hidden;
}

.faq-accordion .panel-heading {
    background: var(--accent-red) !important;
    padding: 0 !important;
}

.faq-accordion .panel-title a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 16px 20px !important;
    color: var(--white) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}

.faq-accordion .panel-title a:hover {
    background: var(--red-hover) !important;
}

.faq-question-text {
    flex: 1;
    padding-right: 16px;
}

.faq-toggle-icon {
    font-size: 18px !important;
    transition: transform 0.2s ease !important;
}

.faq-accordion .panel-body {
    padding: 20px !important;
    background: var(--navy-medium) !important;
    color: var(--text-bright) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
}

.faq-answer-text {
    color: var(--text-bright) !important;
}

.faq-answer-text p {
    margin-bottom: 12px;
}

.faq-answer-text ul,
.faq-answer-text ol {
    margin: 12px 0;
    padding-left: 24px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .faq-main-heading {
        font-size: 22px !important;
    }
    
    .faq-accordion .panel-title a {
        padding: 14px 16px !important;
        font-size: 14px !important;
    }
    
    .faq-accordion .panel-body {
        padding: 16px !important;
        font-size: 14px !important;
    }
}

/* ========================================
   PROS AND CONS SECTION FIX
   ======================================== */

.pros,
.cons {
    background: var(--navy-medium, #1a0d5c) !important;
    color: #ffffff !important;
    padding: 25px !important;
    border-radius: 12px !important;
    margin-bottom: 20px !important;
    border: 1px solid rgba(218, 31, 21, 0.3) !important;
}

.pros {
    border-left: 4px solid #4ade80 !important;
}

.cons {
    border-left: 4px solid #f87171 !important;
}

.pros *,
.cons * {
    color: #ffffff !important;
    background: transparent !important;
}

.pros h3,
.pros h4,
.cons h3,
.cons h4,
.pros strong,
.cons strong {
    color: #ffffff !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
}

.pros ul,
.cons ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

.pros li,
.cons li {
    padding: 8px 0 8px 25px !important;
    position: relative !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6 !important;
}

.pros li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 0 !important;
    color: #4ade80 !important;
    font-weight: bold !important;
}

.cons li::before {
    content: '✗' !important;
    position: absolute !important;
    left: 0 !important;
    color: #f87171 !important;
    font-weight: bold !important;
}

/* ========================================
   MOBILE RESPONSIVE FIXES
   ======================================== */

@media (max-width: 768px) {
    /* Header section */
    .newHeader {
        padding: 30px 15px !important;
    }
    
    .newHeader h1 {
        font-size: 22px !important;
        line-height: 1.4 !important;
        padding: 0 10px !important;
    }
    
    .software-bg-logo {
        max-width: 120px !important;
    }
    
    /* Breadcrumb */
    .cBreadcrumb {
        font-size: 12px !important;
        padding: 0 10px !important;
    }
    
    .cBreadcrumb span:not(:last-child)::after {
        margin: 0 6px !important;
    }
    
    /* Game iframe */
    .game-iframe-wrapper {
        margin: 15px !important;
        border-radius: 8px !important;
    }
    
    .game-iframe-container {
        min-height: 300px !important;
    }
    
    .game-iframe-container iframe {
        min-height: 300px !important;
    }
    
    /* Stay tuned box */
    .staytune-box,
    [class*=staytune] {
        padding: 20px 15px !important;
        margin: 15px !important;
    }
    
    .staytune-box p,
    [class*=staytune] p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    /* Game info table */
    .faqh2title {
        font-size: 24px !important;
        padding: 0 15px !important;
    }
    
    .play-game-content {
        padding: 0 10px !important;
    }
    
    /* Stats table */
    .table-responsive {
        overflow-x: auto !important;
    }
    
    /* Pros and Cons mobile */
    .pros,
    .cons {
        padding: 15px !important;
        margin: 10px 0 !important;
    }
    
    .pros li,
    .cons li {
        font-size: 14px !important;
        padding: 6px 0 6px 20px !important;
    }
    
    /* Content sections */
    .single-game-content {
        padding: 0 !important;
    }
    
    .single-game-content .container {
        padding: 0 10px !important;
    }
    
    /* Fix any text overflow */
    .single-game-content p,
    .single-game-content li,
    .single-game-content span {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    /* FAQ section mobile */
    .faq-accordion {
        padding: 0 10px !important;
    }
    
    .faq-accordion .panel {
        margin: 10px 0 !important;
    }
    
    .faq-accordion .panel-heading {
        padding: 12px 15px !important;
    }
    
    .faq-accordion .panel-body {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .newHeader h1 {
        font-size: 18px !important;
    }
    
    .software-bg-logo {
        max-width: 100px !important;
    }
    
    .cBreadcrumb {
        font-size: 11px !important;
    }
    
    .game-iframe-container {
        min-height: 250px !important;
    }
    
    .pros,
    .cons {
        padding: 12px !important;
    }
    
    .pros li,
    .cons li {
        font-size: 13px !important;
    }
}

/* ========================================
   NO CASINO / STAY TUNED BOX - MOBILE FIX
   ======================================== */

#noCasino,
.no-casino-fallback {
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

#noCasino p,
.no-casino-fallback p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    padding: 0 10px !important;
}

#noCasino .btn,
.no-casino-fallback .btn,
#noCasino a.btn,
.no-casino-fallback a.btn {
    max-width: 90% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
}

@media (max-width: 576px) {
    #noCasino,
    .no-casino-fallback {
        padding: 25px 15px !important;
        margin: 15px 10px !important;
        border-radius: 12px !important;
    }
    
    #noCasino p,
    .no-casino-fallback p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        padding: 0 5px !important;
    }
    
    #noCasino .btn,
    .no-casino-fallback .btn {
        padding: 12px 25px !important;
        font-size: 14px !important;
    }
    
    /* Game iframe container mobile */
    .game-iframe-wrapper {
        margin: 10px !important;
        border-radius: 10px !important;
    }
    
    .game-iframe-container {
        min-height: 280px !important;
    }
    
    /* Header mobile adjustments */
    .newHeader {
        padding: 25px 12px !important;
    }
    
    .newHeader h1 {
        font-size: 20px !important;
        padding: 0 8px !important;
    }
    
    .software-bg-logo {
        max-width: 100px !important;
        margin-bottom: 15px !important;
    }
    
    /* Content area mobile */
    .play-game-content {
        padding: 0 8px !important;
    }
    
    .faqh2title {
        font-size: 22px !important;
        padding: 0 10px !important;
    }
    
    /* Single game table mobile */
    #single-game-table {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    #single-game-table .tablebody {
        padding: 15px !important;
    }
    
    #single-game-table .tablebody .tLi {
        padding: 10px 0 !important;
        font-size: 14px !important;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .newHeader h1 {
        font-size: 18px !important;
    }
    
    #noCasino p,
    .no-casino-fallback p {
        font-size: 13px !important;
    }
    
    .faqh2title {
        font-size: 20px !important;
    }
}

/* ========================================
   CRITICAL FIX: Override AI content styles
   AI-generated descriptions include inline styles
   that break the layout
   ======================================== */

body {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: transparent !important;
}

html, body {
    overflow-x: hidden !important;
}

#single-game-section {
    width: 100% !important;
    max-width: 100% !important;
}

.newHeader {
    width: 100% !important;
    max-width: 100% !important;
}
