/*
 * ============================================
 * CASINO REVIEW PAGE STYLES - MODERN BLUE
 * ============================================
 * Primary: #203E94 (Deep Blue)
 * Secondary: #3B82F6 (Bright Blue)
 * Accent: #10B981 (Emerald Green)
 */

/* ============================================
   1. HERO SECTION - MODERN DESIGN
   ============================================ */
.casino-hero-section {
    background: linear-gradient(135deg, #1e40af 0%, #1d2b43 100%);
    padding: 60px 0 80px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 45px;
}

.casino-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

/* Left Column - Card Style */
.hero-left-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 2;
    align-items: center;
}

/* Logo - Rounded Modern Card */
.casino-logo-square {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
}

.casino-logo-square .logo-wrapper {
    width: 260px;
    height: 80px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.casino-logo-square .logo-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 70px rgba(59, 130, 246, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Bonus CTA - Glass Morphism */
.hero-bonus-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 10px 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    width: 100%;
}

.bonus-amount-hero {
    margin-bottom: 24px;
}

.bonus-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.bonus-percentage {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -1px;
}

.bonus-up-to {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.bonus-value {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.bonus-extra {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    line-height: 1.5;
}
.logo-wrapper-review {
    text-align: center;
    width: 300px;
    padding: 10px;
    text-indent: -9999px;
    border-radius: 6px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-wrapper-review span{
    display: block;
    height: 60px;
    width: 250px;
    background-repeat: no-repeat;
}
/* Hero CTA - Gradient Button */
.btn-hero-cta {
    display: block;
    width: 220px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 800;
    margin: 0 auto;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-hero-cta:hover::before {
    left: 100%;
}

.btn-hero-cta:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.5);
    color: #ffffff;
}

.btn-hero-cta:active {
    transform: translateY(-1px) scale(0.98);
}

/* Right Content */
.hero-text-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.key-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.check-icon {
    flex-shrink: 0;
    font-size: 20px;
}

.payment-methods-hero {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 32px 0;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    max-width: 85px;
}

.payment-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.payment-icon img {
    height: 32px;
    width: auto;
    display: block;
}

/* ============================================
   2. SIDEBAR CARDS - ELEVATED DESIGN
   ============================================ */
.review-sidebar-wrapper {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bonus-card-sticky {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(32, 62, 148, 0.05);
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
}

.bonus-card-sticky:hover {
    box-shadow: 0 12px 40px rgba(32, 62, 148, 0.15);
    transform: translateY(-4px);
}

.bonus-card-inner {
    padding: 36px 28px;
    text-align: center;
}

.bonus-card-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.rating-text {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
}

.btn-play-bonus-card {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-play-bonus-card:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(16, 185, 129, 0.4);
    color: #ffffff;
}

/* ============================================
   3. TABLE OF CONTENTS - MODERN SIDEBAR
   ============================================ */
.toc-sidebar-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.toc-title {
    font-size: 20px;
    font-weight: 800;
    color: #203E94;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 3px solid #3b82f6;
    letter-spacing: -0.3px;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toc-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}

.toc-link:hover {
    background: #eff6ff;
    color: #203E94;
    border-left-color: #3b82f6;
    transform: translateX(4px);
}

/* ============================================
   4. MAIN CONTENT - CARD LAYOUT
   ============================================ */
.review-content-wrapper {
    padding: 50px 0;
    background: #f8fafc;
}

.review-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px 40px;
    margin-bottom: 28px;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
}

.section-title {
    font-size: 30px;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 28px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 2px;
}

.subsection-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 32px 0 18px;
}

.section-content {
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
}

.section-content p {
    margin-bottom: 18px;
}

.section-content a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.section-content a:hover {
    border-bottom-color: #3b82f6;
}

/* ============================================
   5. AUTHOR BIO - MODERN CALLOUT
   ============================================ */
.author-bio-section {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 32px;
    border-left: 5px solid #3b82f6;
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.1);
}

.author-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-name {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.author-highlight {
    color: #10b981;
    font-weight: 800;
}

.author-role {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* ============================================
   6. TABLES - MODERN STRIPED
   ============================================ */
.casino-overview-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.casino-overview-table tbody tr:nth-child(even) {
    background: #f9fafb;
}

.casino-overview-table tbody tr:hover {
    background: #eff6ff;
}

.casino-overview-table td {
    padding: 20px 24px;
    border-bottom: 1px solid #f3f4f6;
}

.casino-overview-table tbody tr:last-child td {
    border-bottom: none;
}

.table-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    color: #1e293b;
    width: 45%;
    font-size: 15px;
}

.table-value {
    color: #475569;
    font-weight: 500;
    font-size: 15px;
}

.visit-now-link {
    color: #10b981;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.visit-now-link:hover {
    color: #059669;
    transform: translateX(2px);
}
/* ============================================
   8. PAYMENT METHODS - MODERN GRID
   ============================================ */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin: 40px 0;
}

.payment-method-card {
    background: #ffffff;
    border: 2px solid #f1f5f9;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 90px;
}

.payment-method-card:hover {
    border-color: #3b82f6;
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.2);
}

/* ============================================
   9. FAQ - MODERN ACCORDION
   ============================================ */
.casino-faq-wrapper {
    margin: 32px 0;
}

.casino-faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.casino-faq-item:hover {
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.12);
    border-color: #3b82f6;
}

.casino-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    background: #ffffff;
}

.casino-faq-question:hover {
    background: #f8fafc;
}

.casino-faq-item.active .casino-faq-question {
    background: #eff6ff;
}

.faq-question-text {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    flex: 1;
    padding-right: 20px;
    transition: color 0.3s ease;
}

.casino-faq-question:hover .faq-question-text,
.casino-faq-item.active .faq-question-text {
    color: #1e3a8a;
}

.faq-toggle-icon {
    font-size: 26px;
    font-weight: 800;
    color: #3b82f6;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    background: #eff6ff;
    border-radius: 8px;
}

.casino-faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    background: #dbeafe;
}

.casino-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.casino-faq-item.active .casino-faq-answer {
    max-height: 1200px;
    padding: 0 26px 26px 26px;
}

.casino-faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

/* ============================================
   10. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .review-sidebar-wrapper {
        position: static;
        margin-top: 40px;
    }
    
    .hero-left-column {
        margin-bottom: 40px;
    }
    
    .casino-logo-square .logo-wrapper {
        width: 220px;
        height: 220px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .casino-hero-section {
        padding: 50px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .casino-logo-square .logo-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .review-section {
        padding: 32px 24px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .casino-logo-square .logo-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   11. UTILITIES & EXTRAS
   ============================================ */
body:not([class*=elementor-page-]) .site-main {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}

.table-responsive span {
    font-size: 14px !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: #3b82f6;
    color: #ffffff;
}

.bonus-section {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    border-bottom: 3px solid #3b82f6;
    padding-bottom: 12px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e3a8a;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Info Cards */
.info-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.info-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
}

.card-text {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

/* Welcome Bonus Section */
.welcome-bonus-section {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #10b981;
}

.bonus-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.bonus-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-highlight {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
}

.bonus-amount {
    font-size: 36px;
    font-weight: 900;
    color: #fbbf24;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.bonus-extra {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.bonus-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Terms Section */
.bonus-terms {
    margin-top: -1px;
}

.terms-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
}

.term-item {
    background: #ffffff;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.term-item:hover {
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.term-item.featured {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-color: #10b981;
}

.term-label {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.term-value {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
}

/* Maximize Section */
.maximize-bonus-section {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
}

.section-subtitle {
    font-size: 22px;
    font-weight: 800;
    color: #1e3a8a;
    display: flex;
    align-items: center;
    margin: 0;
}

/* Steps */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
    transform: translateX(8px);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.step-description {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* CTA Button */
.btn-claim-bonus {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--casino-accent) 0%, #dc2626 100%);
    color: #ffffff;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-claim-bonus::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-claim-bonus:hover::before {
    left: 100%;
}

.btn-claim-bonus:hover {
background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
    transform: scale(1.02);
    color: #ffffff;
}

.btn-claim-bonus:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-icon {
    display: flex;
    align-items: center;
}

.btn-arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.btn-claim-bonus:hover .btn-arrow {
    transform: translateX(4px);
}

.cta-disclaimer {
    color: #64748b;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 991px) {
    .bonus-amount {
        font-size: 28px;
    }
    
    .bonus-extra {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 26px;
    }
    
    .bonus-title {
        font-size: 20px;
    }
    
    .bonus-amount {
        font-size: 24px;
    }
    
    .bonus-extra {
        font-size: 16px;
    }
    
    .maximize-bonus-section {
        padding: 20px;
    }
    
    .step-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .btn-claim-bonus {
        padding: 16px 24px;
        font-size: 16px;
    }
}
* ============================================
   GAMES & PAYMENTS SECTION STYLES
   ============================================ */

.games-payments-section {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    border-bottom: 3px solid #3b82f6;
    padding-bottom: 12px;
    margin-bottom: 32px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e3a8a;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Intro Box */
.intro-box {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 16px;
    padding: 28px 32px;
    border-left: 5px solid #3b82f6;
}

.intro-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.intro-icon {
    flex-shrink: 0;
}

.intro-text {
    font-size: 17px;
    line-height: 1.7;
    color: #1e293b;
    margin: 0;
    font-weight: 500;
}

/* Game Category Cards */
.game-category-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-category-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
}

.game-category-card.featured {
    border-color: #ef4444;
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}

.game-category-card.featured:hover {
    border-color: #dc2626;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.2);
}

.game-category-card.demo {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.game-card-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.game-category-card.featured .game-card-header {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.game-category-card.demo .game-card-header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.game-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.game-icon svg {
    stroke: #ffffff;
}

.game-icon.live {
    position: relative;
}

.live-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.game-category-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.game-card-body {
    padding: 24px;
}

.game-description {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

/* Feature Badges */
.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    border: 1px solid #10b981;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #065f46;
}

/* Live Games List */
.live-games-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.live-game-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 10px;
    border-left: 3px solid #ef4444;
}

.live-game-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.live-game-content strong {
    color: #1e293b;
    font-size: 15px;
}

.live-game-content span {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.game-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.game-link:hover {
    border-bottom-color: #3b82f6;
}

/* Game Tags */
.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.game-tag {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e3a8a;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

/* Demo Benefits */
.demo-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #1e3a8a;
}

/* Payment Info Cards */
.payment-info-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.payment-info-card.instant {
    border-color: #10b981;
}

.payment-info-card.instant:hover {
    border-color: #059669;
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.2);
}

.payment-info-card.fast {
    border-color: #3b82f6;
}

.payment-info-card.fast:hover {
    border-color: #2563eb;
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.2);
}

.payment-info-card.clp {
    border-color: #fbbf24;
}

.payment-info-card.clp:hover {
    border-color: #f59e0b;
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.2);
}

.payment-card-icon {
    margin: 0 auto 16px;
}

.payment-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.payment-card-text {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Payment Details Box */
.payment-details-box {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.detail-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
}

.detail-text {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

/* Processing Times */
.processing-times {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.time-item {
    background: #f8fafc;
    padding: 16px 20px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.time-item.deposit {
    border-color: #10b981;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.time-item.withdrawal {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.time-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

.time-value {
    font-size: 15px;
    font-weight: 800;
    color: #1e293b;
}

.time-value.instant {
    color: #10b981;
}

/* Advantage Box */
.advantage-box {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.advantage-text {
    font-size: 15px;
    font-weight: 600;
    color: #065f46;
    margin: 0;
    line-height: 1.6;
}

/* UX Feature Cards */
.ux-feature-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.ux-feature-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
}

.ux-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ux-icon.design {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.ux-icon.design svg {
    stroke: #3b82f6;
}

.ux-icon.mobile {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.ux-icon.mobile svg {
    stroke: #10b981;
}

.ux-icon.support {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.ux-icon.support svg {
    stroke: #f59e0b;
}

.ux-title {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.ux-description {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* UX Details Box */
.ux-details-box {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
}

.ux-details-title {
    font-size: 22px;
    font-weight: 800;
    color: #1e3a8a;
}

.ux-details-text {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

/* Support Highlight */
.support-highlight {
    background: linear-gradient(135deg, #1e40af 0%, #1d2b43 100%);
    border-radius: 16px;
    padding: 28px 24px;
    color: #ffffff;
    text-align: center;
}

.support-badge {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.support-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.support-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .section-title {
        font-size: 28px;
    }
    
    .intro-content {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 24px;
    }
    
    .game-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .game-category-title {
        font-size: 18px;
    }
    
    .payment-details-box,
    .ux-details-box {
        padding: 24px 20px;
    }
    
    .processing-times {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   MX GEO BLOCK - CALAVERA BET
   ============================================ */
.mx-blocked-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 32px 36px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 860px;
    margin: 24px auto 0;
}

.mx-blocked-text {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 14px 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.mx-blocked-cta-intro {
    font-size: 13px;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 24px 0;
}

.mx-blocked-casinos {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.mx-blocked-or {
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    flex-shrink: 0;
}

/* Casino CTA Buttons */
.mx-casino-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
    max-width: 300px;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mx-casino-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}

.mx-casino-btn:hover::before {
    left: 100%;
}

.mx-casino-btn--jackpot {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.mx-casino-btn--jackpot:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.45);
    color: #ffffff;
}

.mx-casino-btn--pinup {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
}

.mx-casino-btn--pinup:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(59, 130, 246, 0.45);
    color: #ffffff;
}

.mx-casino-btn__name {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.mx-casino-btn__offer {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

@media (max-width: 767px) {
    .mx-blocked-box {
        padding: 24px 20px;
    }

    .mx-blocked-casinos {
        flex-direction: column;
        gap: 12px;
    }

    .mx-casino-btn {
        max-width: 100%;
        width: 100%;
    }

    .mx-casino-btn__name {
        font-size: 15px;
    }

    .mx-casino-btn__offer {
        font-size: 11px;
    }
}

.col-12 .mx-blocked-box {
    max-width: 1200px;
    width: 100%;
}
.col-12 .mx-blocked-casinos {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    align-items: center;
}

.col-12 .mx-casino-btn {
    width: auto;
    min-width: 240px;
    flex: 1;
    max-width: 300px;
}

@media (max-width: 575px) {
    .col-12 .mx-blocked-casinos {
        flex-direction: column;
    }

    .col-12 .mx-casino-btn {
        width: 100%;
        max-width: 100%;
    }
}