:root {
    --primary: #0052FF;
    --primary-dark: #003dcc;
    --primary-light: #E6F0FF;
    --secondary: #10B981;
    --secondary-light: #D1FAE5;
    --accent: #F59E0B;
    --accent-light: #FEF3C7;
    --dark: #0A0B0D;
    --gray: #6B7280;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* ==================== */
/* 1. Styles généraux */
/* ==================== */

.deposit-page {
    background: var(--light-gray);
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark);
    width: 100%;
    overflow-x: hidden;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* ==================== */
/* 2. Titre de la page */
/* ==================== */

.page-title-section {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    width: 100%;
    box-sizing: border-box;
}

.page-title-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--dark);
}

.page-title-section p {
    font-size: 1.125rem;
    color: var(--gray);
    margin: 0;
}

/* ==================== */
/* 3. Conteneur principal */
/* ==================== */

.deposit-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

/* ==================== */
/* 4. Bouton de rafraîchissement */
/* ==================== */

.refresh-history {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--primary-light);
    border-radius: var(--radius);
}

.btn-refresh {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-refresh:hover {
    background: var(--primary-dark);
}

.refresh-hint {
    color: var(--gray);
    font-size: 0.75rem;
    font-style: italic;
}

/* Indicateur pour les dépôts récents en attente */
.table-row.recent-pending {
    background-color: rgba(245, 158, 11, 0.1);
    border-left: 3px solid var(--accent);
}

/* ==================== */
/* 5. Sections Historique & Info */
/* ==================== */

.history-section, .info-section {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* ==================== */
/* 6. Modale (RIB agrandi) */
/* ==================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--radius);
    max-width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.close-modal {
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--dark);
}

.modal-body {
    padding: 1.5rem;
    display: flex;
    justify-content: center;
}

.modal-image-container {
    max-width: 100%;
    max-height: 70vh;
    overflow: auto;
}

.modal-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--light-gray);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn-enlarge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-enlarge:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-close {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    color: var(--dark);
    border: none;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-close:hover {
    background: var(--gray);
    color: var(--white);
}

/* ==================== */
/* 7. Cartes */
/* ==================== */

.form-card, .details-card, .history-card, .info-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-bottom: 0;
    padding-bottom: 1rem;
}

.form-header, .details-header, .info-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.form-header h2, .details-header h2, .info-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.details-subtitle, .info-subtitle {
    color: var(--gray);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Soldes */
.balance-info {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--primary-light);
    border-radius: var(--radius);
}

.balance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.balance-label {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.balance-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ==================== */
/* 8. Formulaire */
/* ==================== */

.form-card {
    padding: 1.5rem;
}

.bonus-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--accent-light);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.bonus-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.bonus-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.bonus-content p {
    font-size: 0.875rem;
    margin: 0;
    color: var(--gray);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.amount-input, .referral-input {
    position: relative;
}

.input-group {
    position: relative;
}

.input-prefix {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray);
}

.input-group input {
    padding-left: 3rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: var(--gray);
    font-size: 0.875rem;
}

/* ==================== */
/* 9. Méthodes de paiement */
/* ==================== */

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.payment-method {
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-method:hover {
    transform: translateY(-2px);
}

.payment-method input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-method label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}

.payment-method input[type="radio"]:checked + label {
    border-color: var(--primary);
    background: var(--primary-light);
}

.payment-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.payment-icon.bitcoin { background: #F7931A; }
.payment-icon.ethereum { background: #627EEA; }
.payment-icon.usdt { background: #26A17B; }
.payment-icon.bank { background: var(--primary); }

.payment-info {
    flex: 1;
}

.payment-name {
    font-weight: 600;
    color: var(--dark);
}

.payment-desc {
    font-size: 0.875rem;
    color: var(--gray);
}

/* Bouton de dépôt */
.form-actions {
    margin-top: 2rem;
}

.btn-deposit {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-deposit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ==================== */
/* 10. Détails de paiement */
/* ==================== */

.details-card {
    padding: 1.5rem;
}

.payment-details-content {
    flex: 1;
    min-height: 400px;
}

.default-message {
    text-align: center;
    padding: 3rem 1.5rem;
}

.message-illustration {
    margin-bottom: 1.5rem;
}

.illustration-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto;
}

.default-message h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.default-message p {
    color: var(--gray);
    margin-bottom: 2rem;
}

.method-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.highlight-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray);
}

.payment-detail {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.detail-icon.bitcoin { background: #F7931A; }
.detail-icon.ethereum { background: #627EEA; }
.detail-icon.usdt { background: #26A17B; }
.detail-icon.bank { background: var(--primary); }

.detail-title h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.detail-title p {
    font-size: 0.875rem;
    color: var(--gray);
    margin: 0.25rem 0 0;
}

.alert {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert.warning {
    background: var(--accent-light);
    color: #92400e;
    border: 1px solid var(--accent);
}

.alert.success {
    background: var(--secondary-light);
    color: #065f46;
    border: 1px solid var(--secondary);
}

.alert.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* ==================== */
/* 11. Structure QR + Adresse (CORRIGÉE) */
/* ==================== */

.payment-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* Sur desktop : deux colonnes */
@media (min-width: 769px) {
    .payment-info-grid {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
    }
}


/* === CENTRAGE PARFAIT DES QR CODES (version optimisée) === */
.qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center; /* Pour le texte (ex: .qr-label) */
}

.qr-code {
    display: inline-block;
    margin: 0 auto;
    padding: 1rem;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
}

.qr-code img {
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
}

.no-qr {
    width: 200px;
    height: 200px;
    background: var(--light-gray);
    border: 2px dashed var(--gray);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

.qr-label {
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* Section adresse */
.address-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.address-container {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: var(--radius);
    text-align: center;
}

.address-label {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.address-value {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    word-break: break-all;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

/* === BOUTON COPIER - Couleur BLEU vif + Contraste élevé === */
.btn-copy {
    background: var(--primary) !important; /* Bleu vif (#0052FF) */
    color: var(--white) !important;
    border: none !important;
    border-radius: var(--radius) !important;
    padding: 0.6rem 1rem !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 220px !important;
    justify-content: center !important;
}

/* Effet au survol */
.btn-copy:hover {
    background: var(--primary-dark) !important; /* Bleu foncé */
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 6px rgba(0, 82, 255, 0.2) !important;
}

/* Informations réseau */
.network-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.2rem 0 0.8rem;
    text-align: center;
}

.network-info {
    text-align: left;
    width: 100%;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.875rem;
    color: var(--gray);
}

.info-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
}

/* Ajustements desktop */
@media (min-width: 769px) {
    .address-container {
        text-align: left;
    }

    .btn-copy {
        margin: 0;
        width: auto;
    }

    .network-info h4 {
        text-align: left;
    }
}

/* ==================== */
/* 12. Virement bancaire */
/* ==================== */

.bank-transfer-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rib-container {
    text-align: center;
}

.rib-label {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.rib-image img {
    max-width: 100%;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.rib-actions {
    display: flex;
    justify-content: center;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-download:hover {
    background: var(--primary-dark);
}

.transfer-instructions h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.transfer-instructions ol {
    padding-left: 1.5rem;
}

.transfer-instructions li {
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.no-rib {
    text-align: center;
    padding: 3rem 1.5rem;
}

.no-rib-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--warning);
}

.no-rib h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.no-rib p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-options {
    display: flex;
    justify-content: center;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-contact:hover {
    background: var(--primary-dark);
}

/* ==================== */
/* 13. Historique */
/* ==================== */

.section-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.section-subtitle {
    color: var(--gray);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.history-card {
    padding: 1.5rem;
}

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

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr 1.5fr;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--gray);
    font-size: 0.875rem;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr 1.5fr;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.table-row:last-child {
    border-bottom: none;
}

.date-info .date {
    font-weight: 500;
    color: var(--dark);
}

.date-info .time {
    font-size: 0.875rem;
    color: var(--gray);
}

.amount {
    font-weight: 600;
    color: var(--dark);
}

.method-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.method-icon {
    font-size: 1.25rem;
}

.method-name {
    font-weight: 500;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.completed {
    background: var(--secondary-light);
    color: var(--secondary);
}

.status-badge.pending {
    background: var(--accent-light);
    color: var(--accent);
}

.status-badge.rejected {
    background: #FEE2E2;
    color: #991B1B;
}

.transaction-id {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--gray);
}

.empty-history {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--gray);
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ==================== */
/* 14. Informations importantes */
/* ==================== */

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-icon.processing { background: var(--primary-light); color: var(--primary); }
.info-icon.bonus { background: var(--accent-light); color: var(--accent); }
.info-icon.security { background: var(--secondary-light); color: var(--secondary); }

.info-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.info-content p {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

/* ==================== */
/* 15. Responsive */
/* ==================== */

@media (max-width: 768px) {
    .page-title-section h1 {
        font-size: 2rem;
    }

    .deposit-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .table-header, .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .table-header {
        display: none;
    }

    .table-row {
        padding: 1rem;
        border: 1px solid var(--light-gray);
        border-radius: var(--radius);
        margin-bottom: 1rem;
    }

    .table-cell {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        width: 100%;
        box-sizing: border-box;
    }

    .table-cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--gray);
        flex-shrink: 0;
        margin-right: 1rem;
    }

    .amount, .bonus-amount, .method-name, .status-badge, .transaction-id {
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 60%;
    }

    .method-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .balance-info {
        flex-direction: column;
        gap: 1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    /* Ajustement mobile - plein écran */
    /* === CORRECTION : Pas d'espace sous info-section === */
    .history-section, .info-section {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Supprimer tout espacement inutile sur .info-card */
    .info-card {
    margin-bottom: 0 !important;
    padding-bottom: 1rem !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

    .history-card, .info-card {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        border-left: none;
        border-right: none;
        margin-bottom: 0;
        padding-bottom: 1rem;
    }

    .section-header {
        border-radius: 0;
    }

    footer {
    margin-top: 0 !important;
    padding-top: 0.5rem !important;
    border-top: 1px solid #F3F4F6;
    width: 100%;
    box-sizing: border-box;
}


@media (min-width: 769px) and (max-width: 1199px) {
    .deposit-page {
        padding: 0 1rem;
    }

    .deposit-container {
        padding: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .deposit-page {
        padding: 0;
    }

    .deposit-container {
        padding: 2rem 0;
    }
}


/* === CENTRAGE ABSOLU DES QR CODES === */
.qr-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 1rem 0 !important;
}

.qr-code {
    display: inline-block !important;
    margin: 0 auto !important;
    padding: 1rem !important;
    background: #fff !important;
    border: 2px solid #F3F4F6 !important;
    border-radius: 12px !important;
}

.qr-code img {
    width: 200px !important;
    height: 200px !important;
    border-radius: 12px !important;
}

/* === SUPPRIMER L'ESPACE ENTRE INFOS ET FOOTER === */
.info-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.info-card {
    margin-bottom: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

footer {
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 1rem !important;
    border-top: 1px solid #E5E7EB;
    width: 100%;
    box-sizing: border-box;
}