
/* ===== WRAPPER ===== */
.proof-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.proof-wrap::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(218, 25, 89, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 85% 75%, rgba(249, 144, 81, 0.06) 0%, transparent 35%);
}

/* ===== MAIN BOX ===== */
.proof-box {
    display: flex;
    width: 100%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
}


/* ===== MAIN CONTENT ===== */
.proof-main {
    flex: 1;
    padding: 35px 40px;
    display: flex;
    flex-direction: column;
}

/* Header */
.proof-top {
    text-align: center;
    margin-bottom: 30px;
}

.proof-icon-main {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(218, 25, 89, 0.1), rgba(249, 144, 81, 0.08));
    border: 1px solid rgba(218, 25, 89, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #da1959;
    font-size: 32px;
}

.proof-top h1 {
    font-size: 26px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.proof-top p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.stat-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    position: relative;
    transition: all 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
}

.rank-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #da1959, #f99051);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px -3px rgba(218, 25, 89, 0.3);
}

.rank-1 { border-color: #fbbf24; background: linear-gradient(135deg, #fffbeb, #fef3c7); }
.rank-2 { border-color: #9ca3af; background: linear-gradient(135deg, #f9fafb, #f3f4f6); }
.rank-3 { border-color: #d97706; background: linear-gradient(135deg, #fffbeb, #fef3c7); }

.stat-flag {
    margin-bottom: 10px;
}

.stat-flag .fi {
    width: 32px;
    height: 24px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-name {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stat-amount {
    font-size: 18px;
    font-weight: 800;
    color: #16a34a;
}

.stat-amount-large {
    font-size: 24px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card-total {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-color: #86efac;
}

.stat-card-total .stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: white;
    font-size: 20px;
}

/* ===== TABLE ===== */
.proof-table-wrap {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.table-header h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f0fdf4;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #16a34a;
}

.verified-badge i {
    font-size: 14px;
}

.table-body {
    overflow-x: auto;
}

.proof-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.proof-table thead th {
    padding: 14px 16px;
    background: #f1f5f9;
    color: #64748b;
    font-weight: 600;
    text-align: left;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.proof-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.15s;
}

.proof-table tbody tr:hover {
    background: white;
}

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

.proof-table tbody td {
    padding: 14px 16px;
    color: #475569;
}

.user-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-cell .fi {
    width: 24px;
    height: 18px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.amount-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #f0fdf4;
    border-radius: 20px;
    color: #16a34a;
    font-weight: 700;
}

.method-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    text-transform: capitalize;
}

.currency-tag {
    display: block;
    font-size: 10px;
    color: #94a3b8;
    margin-top: 2px;
}

.pagination-wrap {
    padding: 16px;
    display: flex;
    justify-content: center;
    border-top: 1px solid #e2e8f0;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
}

.empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.empty-state h4 {
    color: #475569;
    font-size: 16px;
    margin: 0 0 8px 0;
}

.empty-state p {
    margin: 0;
    font-size: 14px;
}

/* ===== TRUST GRID ===== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.trust-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.2s;
}

.trust-card:hover {
    border-color: rgba(218, 25, 89, 0.3);
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.08);
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(218, 25, 89, 0.1), rgba(249, 144, 81, 0.08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #da1959;
    font-size: 24px;
}

.trust-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.trust-card p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ===== CTA ===== */
.proof-cta {
    background: linear-gradient(135deg, rgba(218, 25, 89, 0.08), rgba(249, 144, 81, 0.06));
    border: 1px solid rgba(218, 25, 89, 0.15);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.proof-cta h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.proof-cta p {
    color: #64748b;
    font-size: 14px;
    margin: 0 0 24px 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #700d3b, #fe589e) !important;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 10px 30px -10px rgba(218, 25, 89, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(218, 25, 89, 0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: white;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #da1959;
    color: #da1959;
}

/* ===== BOTTOM INFO ===== */
.proof-foot {
    display: flex;
    gap: 40px;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

.proof-item i {
    color: #da1959;
    font-size: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .proof-wrap {
        padding: 20px 15px;
    }
    
    .proof-main {
        padding: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-table {
        font-size: 12px;
    }
    
    .proof-table th,
    .proof-table td {
        padding: 12px;
    }
    
    .proof-cta {
        padding: 30px 20px;
    }
    
    .proof-foot {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        border-radius: 20px;
    }
}
