*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}
body{
    font-family:'Poppins',sans-serif;
    background:#050816;
    color:white;
    overflow-x:hidden;
}

nav{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 5%;
    position:fixed;
    top:0;
    z-index:1000;
    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(12px);
}

.logo{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:55px;
}

.logo img{
    width:45px;
    height:45px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid rgba(9, 4, 39, 0.5);
    transition:0.4s;
}

.logo img:hover{
    transform:scale(1.08);
    box-shadow:0 0 20px rgba(22, 18, 14, 0.4);
}

.logo span{
    margin-left: 5px;
}
/* RESPONSIVE */

@media(max-width:768px){

    .logo img{
        width:40px;
        height:40px;
    }

}

.nav-links{
    display:flex;
    gap: 25px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:white;
    transition:0.3s;
}

.nav-links a:hover{
    color:#f7931a;
}

.btn-nav{
    text-decoration:none;
    background:#f7931a;
    color:white;
    padding:12px 22px;
    border-radius:40px;
    font-weight:600;
    transition:0.3s;
}

.btn-nav:hover{
    transform:scale(1.08);
    box-shadow:0 0 20px #f7931a;
}


.hero{
    min-height:100vh;
    background:linear-gradient(rgba(0, 0, 0, 0.712),rgba(0,0,0,0.7)),
    url('https://i.postimg.cc/CKwLh4bV/bill-wegener-jqf-S-r-OGHw-Q-unsplash.jpg');
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:0 2%;
    position:relative;
}

.hero-content{
    max-width:900px;
    z-index:2;
    margin-bottom: 3rem;
}

.hero-content h1{
    font-size:65px;
    line-height:1.2;
    margin-top: -2rem;
    margin-bottom:25px;
}

.hero-content p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:40px;
    color:#dddddd;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    text-decoration:none;
    padding:16px 32px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
}

.btn-primary{
    background:#f7931a;
    color:white;
}

.btn-secondary{
    border:2px solid #f7931a;
    color:#f7931a;
}

.btn-primary:hover,
.btn-secondary:hover{
    transform:translateY(-6px);
    box-shadow:0 0 30px rgba(247, 148, 26, 0.788);
}

.bitcoin-animation span{
    position:absolute;
    font-size:40px;
    color:#f7931a;
    opacity:0.3;
    animation:float 8s linear infinite;
}

.bitcoin-animation span:nth-child(1){
    left:10%;
    animation-delay:0s;
}

.bitcoin-animation span:nth-child(2){
    left:30%;
    animation-delay:2s;
}

.bitcoin-animation span:nth-child(3){
    left:60%;
    animation-delay:4s;
}

.bitcoin-animation span:nth-child(4){
    left:80%;
    animation-delay:6s;
}

@keyframes float{
    0%{
        transform:translateY(100vh) rotate(0deg);
    }

    100%{
        transform:translateY(-100vh) rotate(360deg);
    }
}










/* =========================
   GOALS SECTION
========================= */

.goals-section{
    padding:120px 5%;
    position:relative;
    background:#050816;
}

.goals-title{
    text-align:center;
    margin-bottom:80px;
}

.goals-title h1{
    font-size:60px;
    color:#f7931a;
    margin-bottom:20px;
    margin-top: -3rem;
}

.goals-title p{
    color:#cccccc;
    max-width:800px;
    margin:auto;
    line-height:1.9;
}

/* =========================
   GOAL BOX
========================= */

.goal-box{
    display:flex;
    align-items:center;
    gap:35px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(12px);

    border-radius:30px;

    padding:25px;

    margin-bottom:35px;

    overflow:hidden;

    position:relative;

    transition:0.5s;
}

.goal-box::before{
    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(247,147,26,0.08),
        transparent
    );

    transform:translateX(-100%);

    transition:1.2s;
}

.goal-box:hover::before{
    transform:translateX(100%);
}

.goal-box:hover{
    transform:translateY(-10px);

    box-shadow:0 0 40px rgba(247,147,26,0.15);
}

/* =========================
   IMAGE
========================= */

.goal-image{
    width:260px;
    min-width:260px;

    height:220px;

    position:relative;

    overflow:hidden;

    border-radius:25px;
}

.goal-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.7s;
}

.goal-box:hover .goal-image img{
    transform:scale(1.12);
}

.goal-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.45),
        transparent
    );
}

/* =========================
   DETAILS
========================= */

.goal-details{
    flex:1;
}

.goal-top{
    display:flex;
    justify-content:space-between;
    gap:25px;
    align-items:flex-start;

    margin-bottom:35px;
}

.goal-top h2{
    font-size:32px;
    margin-bottom:15px;
    color:#f7931a;
}

.goal-top p{
    color:#cccccc;
    line-height:1.8;
}

/* =========================
   BUTTON
========================= */
.goal-btn{
    background:#f7931a;
    color:white;
    border:none;
    padding:15px 28px;
    border-radius:50px;
    font-weight:600;
    cursor:pointer;
    transition:.4s;
    font-family:'Poppins',sans-serif;
    box-shadow:0 0 25px rgba(247,147,26,.15);
    font-size:16px;
}
.goal-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 0 30px rgba(247,147,26,.45);
}

/* =========================
   PROGRESS
========================= */

.goal-progress-wrapper{
    width:100%;
}

.goal-stats{
    display:flex;
    justify-content:space-between;
    margin-bottom:12px;
    font-size:15px;
    color:white;
}
.goal-progress{
    width:100%;
    height:18px;
    background:#111827;
    border-radius:50px;
    overflow:hidden;
    position:relative;
}

.goal-progress-bar{
    height:100%;
    border-radius:50px;
    position:relative;
    overflow:hidden;
}
.goal-progress-bar::after{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.918),
        transparent
    );

    animation:shine 2s linear infinite;
}

/* DIFFERENT WIDTHS */

.progress72{
    width:72%;
    background:linear-gradient(90deg,#f7931a,#ffcc00);
}

.progress48{
    width:48%;
    background:linear-gradient(90deg,#ff7b00,#ffcc00);
}

.progress61{
    width:61%;
    background:linear-gradient(90deg,#f7931a,#ffd000);
}

.goal-target{
    margin-top:12px;

    color:#f8f8f8f5;

    font-size:14px;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes shine{

    0%{
        transform:translateX(-100%);
    }

    100%{
        transform:translateX(200%);
    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .goal-box{
        flex-direction:column;
        align-items:flex-start;
    }

    .goal-image{
        width:100%;
        min-width:100%;
        height:260px;
    }

    .goal-top{
        flex-direction:column;
    }

    .goal-btn{
        width:100%;
        display:flex;
        justify-content:center;
    }

}

@media(max-width:768px){

    .goals-title h1{
        font-size:42px;
    }

    .goal-top h2{
        font-size:26px;
    }

    .goal-box{
        padding:20px;
    }

    .goal-image{
        height:220px;
    }

}














.don-section{
    background:linear-gradient(135deg,#f7931a,#ffb347);
    text-align:center;
    color:#000000;
}
.don-section img{
    width: 100%;
}


.don-container h2{
    font-size:48px;
    margin-bottom:20px;
    padding-top: 3rem;
    padding-bottom: 2rem;
}


.don-container p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    padding: 10px;
    margin-bottom:35px;
    padding-top: 2rem;
}


.don-btn{
    border:none;
    padding:18px 40px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:0.4s;
    position:relative;
    overflow:hidden;
    margin-bottom: 3rem;
}


.don-btn a{
    text-decoration: none;
    color: #000000;
    font-family:'Poppins',sans-serif;
}


.don-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,0.3);
    transition:0.5s;
}


.don-btn:hover::before{
    left:100%;
}


.don-btn:hover{
    transform:scale(1.1);
}













.bio-footer{
    background:#10162d;
    border-top:1px solid rgba(182, 184, 201, 0.15);
    position:relative;
    overflow:hidden;
    margin-top: 2rem;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    padding:70px 20px 40px;
}

.footer-logo{
    text-align:center;
    margin-bottom:50px;
}

.footer-logo h2{
    font-size:42px;
    color:#f7931a;
    margin-bottom:15px;
}

.footer-logo p{
    color:#dfdddd;
    max-width:650px;
    margin:auto;
    line-height:1.9;
}
.footer-bottom a{
    color:#f8f7f7;
    font-size:15px;
}

.footer-socials{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-bottom:50px;
}

.social-link{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(109, 105, 105, 0.08);
    border-radius:20px;
    padding:18px;
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    color:rgb(206, 205, 205);
    transition:0.4s;
    backdrop-filter:blur(10px);
}

.social-link:hover{
    transform:translateY(-6px);
    border-color:#f7931a;
    box-shadow:0 0 25px rgba(247,147,26,0.2);
    color:rgb(255, 255, 255);
}

.social-link img{
    width:38px;
    height:38px;
    object-fit:contain;
}

.social-link span{
    font-size:16px;
    font-weight:500;
}

.footer-bottom{
    text-align:center;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,0.08);
}

.footer-bottom p{
    color:#888888;
    font-size:15px;
}

/* HOVER COLORS */

.twitter:hover{
    background:rgba(29,161,242,0.12);
}

.telegram:hover{
    background:rgba(0,136,204,0.12);
}

.discord:hover{
    background:rgba(88,101,242,0.12);
}

.github:hover{
    background:rgba(255,255,255,0.06);
}

.instagram:hover{
    background:rgba(225,48,108,0.12);
}

.youtube:hover{
    background:rgba(255,0,0,0.12);
}

.linkedin:hover{
    background:rgba(0,119,181,0.12);
}

.website:hover{
    background:rgba(255, 255, 255, 0.685);
}
.bluesky:hover{
    background:rgba(0,133,255,0.12);
}

.bluesky img{
    background:white;
    border-radius:50%;
    padding:4px;
}

/* RESPONSIVE */

@media(max-width:768px){
    .footer-logo h2{
        font-size:34px;
    }
    .footer-socials{
        grid-template-columns:1fr;
    }
    .social-link{
        justify-content:flex-start;
    }

}




@media(max-width:900px){

    nav{
        flex-direction:column;
        gap:15px;
    }
    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }
    .hero-content h1{
        font-size:42px;
    }
    .hero-content p{
        font-size:18px;
    }
    .about-container{
        grid-template-columns:1fr;
    }
    .section-title h2{
        font-size:34px;
    }
    .vision-content h2,
    .don-container h2{
        font-size:36px;
    }
}


/* =========================
   BIO UPDATES
========================= */
.bio-updates{
    padding:120px 20px;
    position:relative;
    overflow:hidden;
}
.updates-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 70px;
}
.updates-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(247,147,26,0.15);
    color:#f7931a;
    font-weight:600;
    margin-bottom:20px;
    border:1px solid rgba(247,147,26,0.2);
}
.updates-header h2{
    font-size:55px;
    color:#f7931a;
    margin-bottom:20px;
    text-shadow:0 0 20px rgba(247,147,26,0.3);
}
.updates-header p{
    color:#cccccc;
    line-height:1.8;
    font-size:17px;
}
/* GRID */
.updates-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:35px;
}
/* CARD */
.update-card{
    position:relative;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:30px;
    overflow:hidden;
    backdrop-filter:blur(12px);
    transition:0.5s;
    animation:floatCard 6s ease-in-out infinite;
}
.update-card:nth-child(2){
    animation-delay:1s;
}
.update-card:nth-child(3){
    animation-delay:2s;
}
.update-card:nth-child(4){
    animation-delay:3s;
}
.update-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 35px rgba(247,147,26,0.20);
}
/* LIGHT EFFECT */
.update-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:80%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );
    transition:1s;
    z-index:2;
}
.update-card:hover::before{
    left:150%;
}
/* IMAGE */
.update-image{
    position:relative;
    height:280px;
    overflow:hidden;
}
.update-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.8s;
}
.update-card:hover .update-image img{
    transform:scale(1.1);
}
/* DATE */
.update-date{
    position:absolute;
    top:15px;
    left:15px;
    background:#f7931a;
    color:white;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    z-index:3;
}
/* CONTENT */
.update-content{
    padding:30px;
}
.update-content h3{
    font-size:28px;
    margin-bottom:15px;
    color:white;
}
.update-content p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:25px;
}
/* BUTTON */
.update-btn{
    display:inline-block;
    text-decoration:none;
    background:#f7931a;
    color:white;
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
}
.update-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 0 25px rgba(247,147,26,0.4);
}

/* FLOAT ANIMATION */
@keyframes floatCard{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
    100%{
        transform:translateY(0);
    }
}

/* MOBILE */
@media(max-width:768px){
    .bio-updates{
        padding:90px 15px;
    }
    .updates-header h2{
        font-size:38px;
    }
    .updates-header p{
        font-size:15px;
    }
    .updates-grid{
        grid-template-columns:1fr;
        gap:25px;
    }
    .update-image{
        height:230px;
    }
    .update-content{
        padding:25px;
    }
    .update-content h3{
       font-size:24px;
    }
    .update-btn{
        width:100%;
         text-align:center;
    }
}


.update-actions{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:15px;

    margin-top:25px;

}

.update-like-btn{

    border:none;

    cursor:pointer;

    display:flex;

    align-items:center;

    gap:8px;

    padding:14px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    color:white;

    font-size:15px;

    transition:.35s;

}

.update-like-btn:hover{

    background:#f7931a;

    transform:translateY(-3px);

}

.update-like-btn i{

    color:#ff4d6d;

    font-size:18px;

}

.update-like-count{

    font-weight:600;

}





.update-like-btn.liked{

    background:#ff4d6d;

    color:white;

    transform:scale(1.05);

}

.update-like-btn.liked i{

    color:white;

}



.update-like-btn{

    overflow:hidden;

    position:relative;

}

.update-like-btn:active{

    transform:scale(.95);

}

.update-like-btn i{

    transition:.35s;

}

.update-like-btn.liked i{

    animation:heartBeat .55s ease;

}

@keyframes heartBeat{

0%{

transform:scale(.6);

}

40%{

transform:scale(1.35);

}

60%{

transform:scale(.9);

}

100%{

transform:scale(1);

}

}

.update-like-count{

    transition:.35s;

}

.update-like-btn.liked .update-like-count{

    transform:scale(1.2);

}




/*====================================================
        PREMIUM PAYMENT POPUP v2 - PARTIE 1
====================================================*/

#paymentOverlay{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
    background:rgba(246, 247, 250, 0.78);
    backdrop-filter:blur(18px);
    opacity:0;
    visibility:hidden;
    transition:.45s ease;
    z-index:99999;

}

#paymentOverlay.active{
    opacity:1;
    visibility:visible;
}

/*=============================*/

.payment-box{
    position:relative;
    width:100%;
    max-width:520px;
    min-height:600px;
    overflow:hidden;
    border-radius:12px;
    padding:40px;
    background: #ffffff;
    box-shadow:
    0 50px 120px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,255,255,.03);

}

/*=============================*/

.popup-orbs span{
    position:absolute;
    border-radius:50%;
    filter:blur(70px);
    opacity:.55;
    animation:orbMove 10s linear infinite;
}

.popup-orbs span:nth-child(1){
    width:180px;
    height:180px;
    top:-60px;
    left:-40px;
    background:#ffda07;
}

.popup-orbs span:nth-child(2){
    width:220px;
    height:220px;
    right:-80px;
    top:160px;
    background:#0d152b;
    animation-delay:2s;
}

.popup-orbs span:nth-child(3){
    width:170px;
    height:170px;
    bottom:-60px;
    left:130px;
    background:#5f0909;
    animation-delay:4s;
}

/*=============================*/

.popup-bitcoin{

    width:90px;
    height:90px;

    margin:auto;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:48px;

    color:#fff;

    background:

    linear-gradient(
        145deg,
        #ff9800,
        #ffb300
    );

    box-shadow:

    0 20px 50px rgba(255,165,0,.35);

    margin-bottom:30px;

    animation:floatCoin 3s ease-in-out infinite;

}

/*=============================*/

#closePaymentPopup{
    position:absolute;
    top:18px;
    right:18px;
    width:44px;
    height:44px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    font-size:18px;
    color:rgb(2, 2, 2);
    background:rgba(208, 209, 218, 0.644);
    transition:.35s;

}

#closePaymentPopup:hover{
    transform:rotate(90deg);
    background:#eeedeb;

}

/*=============================*/

.payment-step{
    display:none;
    animation:fadeSlide .45s;
}

.payment-step.active{
    display:block;
}

/*=============================*/

.payment-step h2{
    text-align:center;
    font-size:30px;
    font-weight:700;
    color:#000000;
    margin-bottom:15px;

}

.payment-step p{

    text-align:center;
    color:#555555;
    line-height:1.7;
    margin-bottom:35px;

}

/*=============================*/

.payment-method{

    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    text-decoration:none;
    border:none;
    cursor:pointer;
    border-radius:18px;
    padding:18px;
    margin-bottom:18px;
    font-size:18px;
    font-weight:600;
    color:#ffffff;
    background:
    rgb(30, 42, 65);
    transition:.35s;

}

.payment-method:hover{
    transform:translateY(-5px);
    background:#10162d;
    box-shadow: 0 15px 35px rgba(53, 53, 52, 0.35);

}

.payment-method i{
    font-size:24px;
}

/*=============================*/

.amount-box{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    margin:35px 0;
}

.amount-box span{
    font-size:34px;
    font-weight:bold;
    color:#000000;

}

.amount-box input{
    width:180px;
    height:65px;
    border:none;
    outline:none;
    border-radius:18px;
    background:rgba(175, 175, 175, 0.918);
    color: #000000;
    text-align:center;
    font-size:28px;
    font-weight:700;
    transition:.35s;

}

.amount-box input:focus{
    box-shadow:
    0 0 0 3px rgba(48, 48, 47, 0.788);
}

/*=============================*/

#createInvoice,
.backStep,
#finishDonation{

    width:100%;

    height:60px;

    border:none;

    cursor:pointer;

    border-radius:18px;

    font-size:18px;

    font-weight:600;

    transition:.35s;

}

#createInvoice{

    background:
    linear-gradient(
        135deg,
        #25313f,
        #ffb300
    );

    color:white;

}

#createInvoice:hover{
    transform:translateY(-3px);
}

.backStep{
    margin-top:15px;
    background:rgba(170, 170, 170, 0.637);
    color:#000000;
}

.backStep:hover{
    background:rgba(255,255,255,.12);

}




/*=============================
        QR CODE
=============================*/

#qrContainer{

    width:280px;
    height:280px;
    margin:25px auto;
    border-radius:15px;
    padding:15px;
    background:white;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:
    0 20px 45px rgba(0,0,0,.25);
    animation:qrPulse 2.5s infinite;

}

#qrImage{

    width:100%;
    height:100%;
    object-fit:contain;

}

/*=============================
        INVOICE
=============================*/

#invoiceText{
    width:100%;
    margin-top:-20px;
    padding:14px 18px;
    border:none;
    border-radius:15px;
    background:rgba(197, 197, 197, 0.562);
    color:#000000dc;
    font-size:13px;
    outline:none;

}

/*=============================
        STATUS
=============================*/

#paymentStatus{
    margin-top:25px;
    text-align:center;
    font-size:16px;
    font-weight:600;
    color:#ffb300;

}

/*=============================
        LOADER
=============================*/

.loader{

    width:50px;
    height:50px;
    margin:25px auto 0;
    border-radius:50%;
    border:3px solid rgba(255,255,255,.08);
    border-top:3px solid #ff9800;
    animation:spin 1s linear infinite;
    margin-top: -1px;

}

/*=============================
        SUCCESS
=============================*/

.successIcon{

    width:120px;
    height:120px;

    margin:15px auto 30px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:

    linear-gradient(
        135deg,
        #22c55e,
        #16a34a
    );

    color:white;

    font-size:65px;

    box-shadow:
    0 25px 60px rgba(34,197,94,.35);

    animation:successPop .7s;

}

#finishDonation{

    margin-top:30px;

    background:

    linear-gradient(
        135deg,
        #16a34a,
        #22c55e
    );

    color:white;

}

#finishDonation:hover{

    transform:translateY(-4px);

}

/*=============================
        ANIMATIONS
=============================*/

@keyframes fadeSlide{

    from{

        opacity:0;

        transform:

        translateY(25px)
        scale(.97);

    }

    to{

        opacity:1;

        transform:

        translateY(0)
        scale(1);

    }

}

@keyframes floatCoin{

    0%{

        transform:

        translateY(0px)
        rotate(0deg);

    }

    50%{

        transform:

        translateY(-12px)
        rotate(8deg);

    }

    100%{

        transform:

        translateY(0px)
        rotate(0deg);

    }

}

@keyframes orbMove{

    0%{

        transform:
        translate(0,0);

    }

    25%{

        transform:
        translate(25px,-15px);

    }

    50%{

        transform:
        translate(-15px,20px);

    }

    75%{

        transform:
        translate(20px,10px);

    }

    100%{

        transform:
        translate(0,0);

    }

}

@keyframes qrPulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.03);

    }

    100%{

        transform:scale(1);

    }

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

@keyframes successPop{

    0%{

        transform:scale(.4);

        opacity:0;

    }

    60%{

        transform:scale(1.15);

    }

    100%{

        transform:scale(1);

        opacity:1;

    }

}

/*=============================
        RESPONSIVE
=============================*/

@media(max-width:650px){

.payment-box{

padding:30px;

min-height:auto;

}

.popup-bitcoin{

width:75px;
height:75px;

font-size:38px;

}

.payment-step h2{

font-size:26px;

}

.payment-method{

font-size:16px;

padding:16px;

}

.amount-box input{

width:140px;

font-size:24px;

height:58px;

}

#qrContainer{

width:220px;
height:220px;

}

}







/*=============================
        SCROLL
=============================*/

.payment-box::-webkit-scrollbar{

    width:8px;

}

.payment-box::-webkit-scrollbar-thumb{

    background:#ff9800;

    border-radius:20px;

}

.payment-box::-webkit-scrollbar-track{

    background:transparent;

}

/*=============================
        INPUT NUMBER
=============================*/

.amount-box input::-webkit-outer-spin-button,
.amount-box input::-webkit-inner-spin-button{

    -webkit-appearance:none;

    margin:0;

}

.amount-box input[type=number]{

    appearance:textfield;
    -moz-appearance:textfield;

}

/*=============================
        PLACEHOLDER
=============================*/

.amount-box input::placeholder{

    color:rgba(255,255,255,.45);

}

/*=============================
        FOCUS
=============================*/

button:focus,
input:focus,
a:focus{

    outline:none;

}

/*=============================
        BITCOIN BUTTON
=============================*/

.bitcoinBtn{

    background:

    linear-gradient(
        135deg,
        #f7931a,
        #ffb300
    );

    color:white;

    position:relative;

    overflow:hidden;

}

.bitcoinBtn:hover{

    transform:translateY(-5px);

    box-shadow:

    0 20px 45px rgba(247,147,26,.45);

}

.bitcoinBtn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:

    linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.35),

        transparent

    );

    transition:.7s;

}

.bitcoinBtn:hover::before{

    left:150%;

}

/*=============================
        PAYPAL
=============================*/

.payment-method[href*="paypal"]{

    background:#0070ba;

}

.payment-method[href*="paypal"]:hover{

    background:#005ea6;

}

/*=============================
        STRIPE
=============================*/

.payment-method[href*="stripe"]{

    background:#635bff;

}

.payment-method[href*="stripe"]:hover{

    background:#554cf0;

}

/*=============================
        STATUS COLORS
=============================*/

.status-pending{

    color:#ffb300 !important;

}

.status-paid{

    color:#22c55e !important;

}

.status-error{

    color:#ef4444 !important;

}

/*=============================
        SHAKE
=============================*/

.shake{

    animation:shake .45s;

}

@keyframes shake{

0%{

transform:translateX(0);

}

20%{

transform:translateX(-8px);

}

40%{

transform:translateX(8px);

}

60%{

transform:translateX(-6px);

}

80%{

transform:translateX(6px);

}

100%{

transform:translateX(0);

}

}

/*=============================
        SUCCESS BG
=============================*/

#stepSuccess{

    text-align:center;

}

#stepSuccess h2{

    margin-top:20px;

}

#stepSuccess p{

    margin-top:15px;

    margin-bottom:35px;

}

/*=============================
        HIDDEN
=============================*/

.hidden{

    display:none !important;

}

/*=============================
        SHOW
=============================*/

.show{

    display:block !important;

}

/*=============================
        DISABLED BUTTON
=============================*/

#createInvoice:disabled{

    opacity:.55;

    cursor:not-allowed;

    transform:none;

}

/*=============================
        QR SHADOW
=============================*/

#qrContainer img{

    border-radius:10px;

}

/*=============================
        PAYMENT BOX BORDER FX
=============================*/

.payment-box::before{

    content:"";

    position:absolute;

    inset:0;

    padding:1px;

    border-radius:32px;

    background:

    linear-gradient(

        140deg,

        rgba(255,255,255,.18),

        transparent,

        rgba(255,153,0,.25)

    );

    -webkit-mask:

        linear-gradient(#fff 0 0) content-box,

        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

            mask-composite:exclude;

    pointer-events:none;

}

/*=============================
        PAYMENT STEP TRANSITION
=============================*/

.payment-step{

    transition:

    opacity .35s ease,

    transform .35s ease;

}

/*=============================
        MOBILE
=============================*/

@media(max-width:480px){

.payment-box{

padding:22px;

border-radius:24px;

}

.popup-bitcoin{

width:65px;
height:65px;

font-size:32px;

margin-bottom:18px;

}

.payment-step h2{

font-size:22px;

}

.payment-step p{

font-size:14px;

}

.payment-method{

padding:15px;

font-size:15px;

}

.amount-box{

flex-direction:column;

gap:12px;

}

.amount-box span{

font-size:24px;

}

.amount-box input{

width:100%;

}

#createInvoice,
#finishDonation,
.backStep{

height:55px;

font-size:16px;

}

#qrContainer{

width:190px;
height:190px;

}

}






















/*=========================================================
            PARIS STEP (Stripe / PayPal)
=========================================================*/

#parisStep{
    text-align:center;
    animation:fadeIn .35s ease;

}


.parisIcon{
    width:80px;
    height:80px;
    margin:0 auto 24px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:40px;
    color:#333231;
    background:
    radial-gradient(circle at center,
    rgba(250, 173, 5, 0.28),
    rgba(255,170,0,.08));

    border:2px solid rgba(0, 0, 0, 0.65);
    box-shadow:
    0 0 35px rgba(0, 0, 0, 0.35),

    inset 0 0 25px rgba(0, 0, 0, 0.18);

}


.parisTitle{
    margin:0;
    font-size:90px;
    font-weight:800;
    color:#fff;
}

.parisTitle span{
    color:#ffae00;
}

.parisText{
    margin:5px 0 3px;
    color:#b8bfd2;
    font-size:18px;
    line-height:1.6;
}

.parisLabel{
    display:block;
    margin-bottom:15px;
    text-align:left;
    color:#000000;
    font-weight:700;
    font-size:16px;
}


.lyonInput{
    display:flex;
    align-items:center;
    overflow:hidden;
    border-radius:5px;
    background:#0d1729;
    box-shadow:
    inset 0 0 18px rgba(255,170,0,.08),
    0 10px 35px rgba(0,0,0,.35);
    height: 55px;

}


.lyonEuro{
    width:70px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:25px;
    color:#ffffff;
    padding-left: 10px;
}


#marseilleAmount{
    flex:1;
    height:70px;
    border:none;
    outline:none;
    background:transparent;
    color:#ffffff;
    font-size:20px;
    font-weight:700;
    padding:0 5px;
}


.lyonCurrency{
    width:92px;
    height:72px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-left:2px solid rgba(255, 255, 255, 0.945);
    color:#ffffff;
    font-weight:700;
    font-size:18px;

}


.bordeauxButtons{
    display:flex;
    gap:12px;
    margin:20px 0 30px;
    flex-wrap:wrap;

}


.nicePreset{
    flex:1;
    min-width:65px;
    height:45px;
    border-radius:5px;
    border:1px solid rgba(255,255,255,.08);
    background:#171d2a;
    color:#d9d9d9;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.25s;

}

.nicePreset:hover{
    transform:translateY(-2px);
    border-color:#ffae00;

}

.nicePreset.active{
    background:linear-gradient(135deg,#ff9800,#ffb300);
    color:#fff;
    border-color:#e9e9e8;
    box-shadow:0 0 25px rgba(255,170,0,.45);
}

#niceContinue{
    width:100%;
    height:50px;
    border:none;
    border-radius:5px;
    cursor:pointer;
    color:#ffffff;
    font-size:20px;
    font-weight:700;
    background:linear-gradient(90deg,#ff9800,#ffb300);
    box-shadow:0 0 28px rgba(255,170,0,.45);
    transition:.25s;
    margin-top: -1.5rem;

}


#niceContinue:hover{
    transform:translateY(-2px);

}


#toulouseBack{
    margin-top:15px;
    width:100%;
    height:50px;
    border-radius:5px;
    cursor:pointer;
    border:1px solid rgba(255,255,255,.12);
    background:#161b27;
    color:#bfc6d9;
    font-size:20px;
    font-weight:600;
}


.parisSecure{
    margin-top:15px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:1px;
    color:#6d6d6e;
    font-size:13px;

}


.parisSecure::before,
.parisSecure::after{
    content:"";
    width:110px;
    height:1px;
    background:rgba(255,255,255,.12);

}


@media(max-width:768px){

.parisTitle{

font-size:38px;

}

.parisText{

font-size:16px;

}

#marseilleAmount{

font-size:28px;

}

#niceContinue{

font-size:22px;

}

#toulouseBack{

font-size:20px;

}

}



