@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700;800&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    background-color: #eef1f5;
    color: #434c5e;
}


/* --- Style du bloc de succès --- */
.payment-success {
    text-align: center;
    margin-top: 25px;
}

.payment-success .icon-success {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #28a745;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    line-height: 60px;
    margin: 0 auto 20px;
    box-shadow: 5px 5px 10px #d1d9e6, -5px -5px 10px #ffffff;
}

.payment-success h2 {
    font-size: 20px;
    color: #28a745;
    margin: 0 0 10px;
}

.payment-success p {
    color: #555e6b;
    font-size: 14px;
}

.invoice-card {
    background-color: #eef1f5;
    border-radius: 20px;
    padding: 25px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 10px 10px 20px #d1d9e6, -10px -10px 20px #ffffff;
}

/* NOUVEAU STYLE POUR L'EN-TÊTE DU SERVEUR */
.guild-header {
    font-weight: 800;
    font-size: 18px;
    color: #434c5e;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 16px;
    font-weight: 500;
    color: #7a869a;
    margin: 0 0 5px;
    line-height: 1.3;
}

.header p {
    font-size: 42px;
    font-weight: 800;
    color: #434c5e;
    margin: 0;
}

.header .currency {
    font-weight: 700;
    font-size: 20px;
    color: #7a869a;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.payment-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    color: #555e6b;
    border: none;
    cursor: pointer;
    background-color: #eef1f5;
    transition: all 0.2s ease-in-out;
    box-shadow: 5px 5px 10px #d1d9e6, -5px -5px 10px #ffffff;
}

.payment-button:active {
    box-shadow: inset 4px 4px 8px #d1d9e6, inset -4px -4px 8px #ffffff;
}

.payment-button i {
    margin-right: 10px;
    font-size: 18px;
}

.paypal-details {
    max-height: 0;
    overflow: hidden;
    text-align: left;
    background-color: #eef1f5;
    border-radius: 12px;
    margin-top: 15px;
    padding: 0 20px;
    transition: all 0.5s ease;
    box-shadow: inset 4px 4px 8px #d1d9e6, inset -4px -4px 8px #ffffff;
    font-size: 14px;
}

.paypal-details.visible {
    max-height: 250px;
    padding: 15px 20px;
}

.paypal-details p {
    margin: 6px 0;
    color: #555e6b;
}

.paypal-details code {
    background-color: #d1d9e6;
    padding: 3px 6px;
    border-radius: 6px;
    font-weight: 600;
    color: #434c5e;
    word-break: break-all;
}

/* NOUVEAU STYLE POUR LE FOOTER */
.card-footer {
    text-align: center;
    font-size: 12px;
    color: #aab2c0;
    font-weight: 500;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #d1d9e6;
}