/**
 * Payments Block Styles
 */

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

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

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

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

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

/* Stats Grid */
.payments-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.payments-stat {
    background: #F4F5F6;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #E5E7EB;
}

.stat-label {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    color: #ACACB5;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.stat-value {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #34363D;
}

/* Payment Table */
.payments-table-container {
    overflow-x: auto;
    margin-bottom: 32px;
}

.payments-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
}

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

.payments-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;
}

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

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

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

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

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

.payments-table td strong {
    font-weight: 700;
    color: #34363D;
}

.method-desc {
    font-size: 13px;
    color: #ACACB5;
}

.payout-fast {
    font-weight: 700;
    color: #5DB24C;
}

/* seo-bonus-table (used in tableHTML attribute) */
.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;
}

/* Info Boxes */
.info-boxes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-box {
    padding: 24px;
    border-radius: 16px;
    font-family: 'Manrope', sans-serif;
}

.info-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #34363D;
}

.info-box p {
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}

/* Warning Box (KYC) */
.info-box-warning {
    background: #FEF9E7;
    border: 1px solid #F7DC6F;
}

.info-box-warning h3 {
    color: #34363D;
}

.info-box-warning p {
    color: #34363D;
}

/* Success Box (Fast Payouts) */
.info-box-success {
    background: rgba(93, 178, 76, 0.1);
    border: 1px solid rgba(93, 178, 76, 0.3);
}

.info-box-success h3 {
    color: #34363D;
}

.info-box-success p {
    color: #34363D;
}

/* Info Box (Neutral) */
.info-box-info {
    background: #E8F4FD;
    border: 1px solid #85C1E9;
}

.info-box-info h3 {
    color: #2874A6;
}

.info-box-info p {
    color: #1A5276;
}

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

@media (max-width: 768px) {
    .payments-card {
        padding: 20px;
    }
    
    .payments-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .info-boxes-grid {
        grid-template-columns: 1fr;
    }
    
    .payments-title {
        font-size: 28px;
        margin-top: 0 !important;
        margin-bottom: 14px !important;
    }
    
    .payments-intro {
        font-size: 16px;
        line-height: 24px;
    }
    
    .payments-table {
        font-size: 16px;
    }
    
    .payments-table th,
    .payments-table td {
        padding: 12px;
    }
}
@media (max-width: 480px) {
    .payments-title {
        font-size: 22px;
    }
    .payments-intro {
        font-size: 14px;
    }
    .payments-table {
        font-size: 14px;
    }
}