/**
 * Bonus Analysis Block Styles
 */

.bonus-analysis-block {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #34363D;
    margin: 24px 0;
}

.bonus-insight-card {
    background: #FFFFFF;
    border-radius: 25px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.bonus-insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5DB24C, #3D9A2E);
}

.bonus-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 16px;
}

.bonus-insight-card h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    color: #34363D;
    line-height: 130%;
}

.expert-badge {
    background: #F8F8F8;
    color: #34363D;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid #E6E6E6;
    white-space: nowrap;
}

.bonus-description {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #34363D;
    margin: 0 0 24px 0;
}

.bonus-description strong {
    font-weight: 700;
    color: #5DB24C;
}

.wager-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.wager-item {
    background: #F4F5F6;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
}

.wager-label {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ACACB5;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.wager-value {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #34363D;
    line-height: 1.5;
}

.wager-value span {
    color: #5DB24C;
    font-weight: 700;
}

/* Table Styles */
.seo-bonus-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.seo-bonus-table thead {
    background: #5DB24C;
}

.seo-bonus-table th {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    text-align: left;
    padding: 16px 20px;
    vertical-align: middle;
}

.seo-bonus-table tbody tr {
    border-bottom: 1px solid #E5E7EB;
}

.seo-bonus-table tbody tr:last-child {
    border-bottom: none;
}

.seo-bonus-table tbody tr:nth-child(even) {
    background: #F4F5F6;
}

.seo-bonus-table tbody tr:nth-child(odd) {
    background: #FFFFFF;
}

.seo-bonus-table td {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #34363D;
    padding: 16px 24px;
    vertical-align: middle;
}

.seo-bonus-table td strong {
    font-weight: 700;
}

.highlight-amt {
    font-weight: 700;
    color: #5DB24C;
}

/* Expert Tip */
.slider-intro-text {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #34363D;
    border-left: 4px solid #5DB24C;
    padding: 16px 20px;
    margin: 32px 0 0 0;
    background: rgba(93, 178, 76, 0.05);
    border-radius: 0 12px 12px 0;
    font-style: normal;
}

.slider-intro-text strong {
    font-weight: 700;
    color: #5DB24C;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .bonus-insight-card {
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .bonus-insight-card {
        padding: 24px;
        border-radius: 20px;
    }
    
    .bonus-insight-card h2 {
        font-size: 28px;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .bonus-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .wager-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .seo-bonus-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .bonus-description {
        font-size: 16px;
        line-height: 26px;
    }
    
    .slider-intro-text {
        font-size: 15px;
        line-height: 24px;
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {
    .bonus-insight-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .bonus-insight-card h2 {
        font-size: 22px;
    }
    
    .expert-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .bonus-description {
        font-size: 14px;
        line-height: 26px;
        font-weight: 400;
    }
    
    .wager-item {
        padding: 16px;
        border-radius: 12px;
    }
    
    .wager-label {
        font-size: 12px;
    }
    
    .wager-value {
        font-size: 14px;
    }
    
    .seo-bonus-table th,
    .seo-bonus-table td {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .slider-intro-text {
        font-size: 14px;
        line-height: 26px;
        padding: 12px 14px;
        margin-top: 24px;
    }
}
