/*
 * ============================================
 * CASINO REVIEW PAGE STYLES
 * ============================================
 * Main color: #bc0000 (SwissBets Red)
 * Uses Bootstrap 5 grid system
 */

/* ============================================
   1. HERO SECTION STYLES
   ============================================ */
.casino-hero-section {
    background: linear-gradient(180deg, var(--e-global-color-3d44b30) 0%, #950101 100%);
    padding: 10px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 85px;
}

.casino-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23bc0000" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center bottom;
    background-size: cover;
    opacity: 0.3;
}

/* Left Column Container */
.hero-left-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 2;
    align-items: center;
}

/* Square Logo Styling */
.casino-logo-square {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0px !important;
}

.casino-logo-square .logo-wrapper {
    width: 280px;
    height: 280px;
    border-radius: 16px; /* Square with rounded corners */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: #ffffff;
    transition: all 0.3s ease;
}

.casino-logo-square .logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-bonus-cta {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 15px 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 2px solid rgba(188, 0, 0, 0.2);
    width: 280px;
    margin-top: 15px;
}
.bonus-amount-hero {
    margin-bottom: 20px;
}

.bonus-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.bonus-percentage {
    font-size: 32px;
    font-weight: 800;
    color: #bc0000;
    line-height: 1;
}

.bonus-up-to {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.bonus-value {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.bonus-extra {
    font-size: 15px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

/* Hero CTA Button */
.btn-hero-cta {
    display: block;
    width: 200px;
    background: #bc0000;
    color: #ffffff;
    padding: 18px 5px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    margin: 0 auto;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(188, 0, 0, 0.4);
    border: none;
    cursor: pointer;
}

.btn-hero-cta:hover {
    background: #950101;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 0, 0, 0.6);
    color: #ffffff;
}

.btn-hero-cta:active {
    transform: translateY(0);
}

/* Content Column (Right) */
.hero-text-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.key-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.check-icon {
    flex-shrink: 0;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.plus-icon {
    color: #46b450;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.payment-methods-hero {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.payment-icon {
    background: #ffffff;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 80px;
    background-position: center;
}

.payment-icon:hover {
    transform: translateY(-3px);
}

.payment-icon img {
    height: 30px;
    width: auto;
    display: block;
}

.reviewed-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    font-size: 15px;
}

.badge-icon {
    flex-shrink: 0;
}

/* ============================================
   2. STICKY BONUS CARD STYLES
   ============================================ */
.review-sidebar-wrapper {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bonus-card-sticky {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid rgba(188, 0, 0, 0.1);
}

.bonus-card-inner {
    padding: 40px 30px;
    text-align: center;
}

.bonus-card-logo {
    margin-bottom: 20px;
}

.bonus-card-logo .logo-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.bonus-card-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.rating-text {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
}

.bonus-amount {
    margin: 30px 0;
}

.bonus-amount h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.bonus-subtext {
    font-size: 16px;
    color: #666;
}

.btn-play-bonus-card {
    display: inline-block;
    background: #46b450;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(70, 180, 80, 0.3);
    width: 100%;
    text-align: center;
}

.btn-play-bonus-card:hover {
    background: #3da643;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(70, 180, 80, 0.4);
    color: #ffffff;
}

/* ============================================
   3. TABLE OF CONTENTS SIDEBAR
   ============================================ */
.toc-sidebar-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(188, 0, 0, 0.1);
}

.toc-title {
    font-size: 22px;
    font-weight: 700;
    color: #bc0000;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(188, 0, 0, 0.1);
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toc-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.toc-link:hover {
    background: rgba(188, 0, 0, 0.05);
    color: #bc0000;
    transform: translateX(5px);
}

.toc-icon {
    flex-shrink: 0;
}

/* ============================================
   4. MAIN CONTENT WRAPPER
   ============================================ */
.review-content-wrapper {
    padding: 60px 0;
    background: #f8f9fa;
}

.review-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #bc0000;
    margin-bottom: 25px;
    line-height: 1.3;
}

.subsection-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 30px 0 20px;
}

.section-content {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.section-content p {
    margin-bottom: 20px;
}

.section-content a {
    color: #bc0000;
    text-decoration: underline;
    font-weight: 600;
}

.section-content a:hover {
    color: #8b0000;
}

/* ============================================
   5. SECTION HEADER WITH RATING
   ============================================ */
.section-header-with-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-badge {
    background: #46b450;
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    padding: 15px 20px;
    border-radius: 8px;
    line-height: 1;
}

.rating-label {
    display: flex;
    flex-direction: column;
}

.rating-text {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
}

.rating-quality {
    font-size: 16px;
    color: #46b450;
    font-weight: 700;
}

/* ============================================
   6. AUTHOR BIO SECTION
   ============================================ */
.author-bio-section {
    background: rgba(188, 0, 0, 0.05);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 30px;
    border-left: 4px solid #bc0000;
}

.author-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.author-highlight {
    color: #46b450;
    font-weight: 700;
}

.author-role {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ============================================
   7. CASINO OVERVIEW TABLE
   ============================================ */
.overview-table-wrapper {
    margin-top: 30px;
}

.casino-overview-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.casino-overview-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.casino-overview-table tbody tr:hover {
    background: rgba(188, 0, 0, 0.03);
}

.casino-overview-table td {
    padding: 18px 25px;
    border-bottom: 1px solid #e0e0e0;
}

.casino-overview-table tbody tr:last-child td {
    border-bottom: none;
}

.table-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #333;
    width: 50%;
}

.table-icon {
    flex-shrink: 0;
}

.table-value {
    color: #1a1a2e;
    font-weight: 500;
}

.visit-now-link {
    color: #46b450;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.visit-now-link:hover {
    color: #3da643;
    text-decoration: underline;
}

/* ============================================
   8. PROS & CONS SECTION
   ============================================ */
.pros-card,
.cons-card {
    border-radius: 12px;
    padding: 5px 15px;
    height: 100%;
}

.pros-card {
    background: rgba(70, 180, 80, 0.05);
    border: 2px solid rgba(70, 180, 80, 0.2);
}

.cons-card {
    background: rgba(214, 54, 56, 0.05);
    border: 2px solid rgba(214, 54, 56, 0.2);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.pros-title {
    color: #46b450;
}

.cons-title {
    color: #d63638;
}

.pros-list,
.cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pro-item,
.con-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.pro-item svg,
.con-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   9. BONUS BREAKDOWN LIST
   ============================================ */
.bonus-breakdown-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(70, 180, 80, 0.05);
    border-radius: 8px;
    border-left: 4px solid #46b450;
}

.bonus-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.bonus-item span {
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================
   10. LIVE CASINO TABLE
   ============================================ */
.live-casino-table-wrapper {
    margin: 30px 0;
    overflow-x: auto;
}

.live-casino-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.live-casino-table thead {
    background: #1a1a2e;
    color: #ffffff;
}

.live-casino-table thead th {
    padding: 18px 20px;
    font-weight: 700;
    text-align: left;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-casino-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.live-casino-table tbody tr:hover {
    background: rgba(188, 0, 0, 0.03);
}

.live-casino-table tbody td {
    padding: 18px 20px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
}

.live-casino-table tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================
   11. PAYMENT METHODS GRID
   ============================================ */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.payment-method-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 100px;
}

.payment-method-card:hover {
    border-color: #bc0000;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(188, 0, 0, 0.15);
}

.payment-method-card img {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
}

.btn-see-more {
    display: inline-block;
    background: transparent;
    color: #46b450;
    border: 2px solid #46b450;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-see-more:hover {
    background: #46b450;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(70, 180, 80, 0.3);
}

/* ============================================
   12. CUSTOMER SUPPORT SECTION
   ============================================ */
.support-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(188, 0, 0, 0.03);
    border-radius: 8px;
    border-left: 4px solid #bc0000;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 15px;
}

.contact-text strong {
    color: #1a1a2e;
    font-weight: 700;
}

/* ============================================
   13. FAQ ACCORDION
   ============================================ */
.faq-accordion {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: #ffffff;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(188, 0, 0, 0.03);
    color: #bc0000;
}

.faq-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* ============================================
   14. GENERAL INFO CARD
   ============================================ */
.general-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(188, 0, 0, 0.1);
}

.general-info-card .card-title {
    font-size: 22px;
    font-weight: 700;
    color: #bc0000;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(188, 0, 0, 0.1);
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 16px;
    color: #1a1a2e;
    font-weight: 500;
}

.email-link {
    color: #46b450;
    text-decoration: underline;
}

/* ============================================
   15. RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .review-sidebar-wrapper {
        position: static;
        margin-top: 40px;
    }
    
    .casino-logo-square .logo-wrapper {
        width: 240px;
        height: 240px;
    }
    
    .bonus-percentage {
        font-size: 36px;
    }
    
    .bonus-value {
        font-size: 40px;
    }
    
    .key-highlights {
        grid-template-columns: 1fr;
    }
    
    .section-header-with-rating {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .casino-logo-square .logo-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .bonus-percentage {
        font-size: 32px;
    }
    
    .bonus-value {
        font-size: 36px;
    }
    
    .hero-bonus-cta {
        padding: 25px 20px;
    }
    
    .btn-hero-cta {
        padding: 16px 25px;
        font-size: 16px;
    }
    
    .review-section {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .casino-overview-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .table-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .support-contact-info {
        grid-template-columns: 1fr;
    }
    
    .bonus-card-inner {
        padding: 30px 20px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .subsection-title {
        font-size: 18px;
    }
    
    .casino-logo-square .logo-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .bonus-percentage {
        font-size: 28px;
    }
    
    .bonus-value {
        font-size: 32px;
    }
    
    .bonus-extra {
        font-size: 14px;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   16. PRINT STYLES
   ============================================ */
@media print {
    .review-sidebar-wrapper,
    .toc-sidebar-card,
    .bonus-card-sticky {
        display: none;
    }
    
    .review-content-wrapper .col-lg-8 {
        width: 100%;
        max-width: 100%;
    }
}

/* ============================================
   15. RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .review-sidebar-wrapper {
        position: static;
        margin-top: 40px;
    }
    
    .hero-left-column {
        margin-bottom: 40px;
    }
    
    .casino-logo-square .logo-wrapper {
        width: 240px;
        height: 240px;
    }
    
    .bonus-percentage {
        font-size: 36px;
    }
    
    .bonus-value {
        font-size: 40px;
    }
    
    .key-highlights {
        grid-template-columns: 1fr;
    }
    
    .section-header-with-rating {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .casino-hero-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .casino-logo-square .logo-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .bonus-percentage {
        font-size: 32px;
    }
    
    .bonus-value {
        font-size: 36px;
    }
    
    .hero-bonus-cta {
        padding: 25px 20px;
    }
    
    .btn-hero-cta {
        padding: 16px 25px;
        font-size: 16px;
    }
    
    .review-section {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .casino-overview-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .table-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .support-contact-info {
        grid-template-columns: 1fr;
    }
    
    .bonus-card-inner {
        padding: 30px 20px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .subsection-title {
        font-size: 18px;
    }
    
    .casino-logo-square .logo-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .bonus-percentage {
        font-size: 28px;
    }
    
    .bonus-value {
        font-size: 32px;
    }
    
    .bonus-extra {
        font-size: 14px;
    }
    
    .hero-left-column {
        padding: 15px;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   16. PRINT STYLES
   ============================================ */
@media print {
    .review-sidebar-wrapper,
    .toc-sidebar-card,
    .bonus-card-sticky {
        display: none;
    }
    
    .review-content-wrapper .col-lg-8 {
        width: 100%;
        max-width: 100%;
    }
}


.table-data-row {
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.table-data-row:last-child {
    border-bottom: none;
}

.table-data-row:hover {
    background-color: rgba(188, 0, 0, 0.03);
}

.table-label-cell {
    padding: 20px;
    font-weight: 600;
    color: #333;
    width: 40%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.table-label-cell .table-icon {
    flex-shrink: 0;
}

.table-value-cell {
    padding: 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* ============================================
   MODERN FAQ STYLES
   ============================================ */
.faq-schema-wrapper {
    margin: 30px 0;
}

.faq-schema-item {
    margin-bottom: 15px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-schema-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.faq-schema-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    transition: color 0.3s ease;
}

.faq-schema-question:hover {
    color: #bc0000;
}

.faq-q-text {
    flex: 1;
    padding-right: 20px;
}

.faq-arrow-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-schema-item.active .faq-arrow-icon {
    transform: rotate(180deg);
}

.faq-schema-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-schema-item.active .faq-schema-answer {
    max-height: 1000px;
    padding: 0 25px 25px 25px;
}

.faq-a-content {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.faq-a-content p {
    margin: 0 0 15px 0;
}

.faq-a-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Tables & FAQ */
@media (max-width: 767px) {
    .table-label-cell,
    .table-value-cell {
        padding: 15px;
        font-size: 14px;
    }
    
    .faq-schema-question {
        font-size: 16px;
        padding: 18px 20px;
    }
}
body:not([class*=elementor-page-]) .site-main{
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}
circle{fill: #46b450;}

.fact-check-box {
    display: inline-flex;
    align-items: center;
    background-color: #f9f9f9; /* Светло сив фон */
    padding: 8px 15px;
    border-radius: 4px;
    border-left: 3px solid #28a745; /* Зелена линия за доверие */
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 20px;
    font-family: sans-serif;
}

.fact-check-box svg {
    margin-right: 10px;
    color: #28a745; /* Зелен цвят за иконката */
    flex-shrink: 0;
}

.fact-check-box strong {
    color: #333;
    margin-right: 4px;
}
/* ============================================
   CASINO FAQ - CUSTOM CLASSES
   ============================================ */

.casino-faq-wrapper {
    margin: 30px 0;
}

.casino-faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.casino-faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: #bc0000;
}

.casino-faq-item:last-child {
    margin-bottom: 0;
}

/* Question */
.casino-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.casino-faq-question:hover {
    background-color: #fff9f9;
}

.casino-faq-item.active .casino-faq-question {
    background-color: #fff5f5;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    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: #bc0000;
}

/* Toggle Icon */
.faq-toggle-icon {
    font-size: 24px;
    font-weight: 700;
    color: #bc0000;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.casino-faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

/* Answer */
.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: 1000px;
    padding: 0 25px 25px 25px;
}

.casino-faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* Responsive */
@media (max-width: 767px) {
    .casino-faq-question {
        padding: 18px 20px;
    }
    
    .faq-question-text {
        font-size: 16px;
    }
    
    .casino-faq-item.active .casino-faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .casino-faq-answer p {
        font-size: 14px;
    }
}
.table-responsive span{
    font-size: 14px !important;
}