@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Vazirmatn',sans-serif;

    min-height:100vh;

    background:
    radial-gradient(circle at top left,#172554,#0b1220);

    display:flex;

    justify-content:center;

    align-items:center;

    padding:30px;

    color:#fff;
}

.card-container{

    width:100%;

    max-width:650px;

    display:flex;

    flex-direction:column;

    gap:20px;
}



.bank-card{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    padding:25px;

    height:260px;

    background:
    linear-gradient(
        135deg,
        #1e3a8a,
        #312e81,
        #581c87
    );

    box-shadow:
    0 20px 50px rgba(0,0,0,.45);

    transition:.3s;
}

.bank-card:hover{
    transform:translateY(-5px);
}

.bank-card::before{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-130px;

    left:-120px;
}

.bank-card::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-100px;

    right:-100px;
}

.card-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    position:relative;

    z-index:2;
}

.bank-icon{

    width:55px;

    height:55px;

    object-fit:contain;
}

.bank-name{

    font-size:22px;

    font-weight:700;
}

.chip{

    width:65px;

    height:50px;

    margin-top:20px;

    border-radius:10px;

    background:
    linear-gradient(135deg,#fcd34d,#f59e0b);

    position:relative;

    z-index:2;
}

.card-number{

    margin-top:30px;

    text-align:center;

    font-size:28px;

    font-weight:700;

    letter-spacing:4px;

    position:relative;

    z-index:2;
}

.card-bottom{

    margin-top:35px;

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    position:relative;

    z-index:2;
}

.label{
    font-size:12px;
    opacity:.8;
}

.owner{
    display:block;
    margin-top:5px;
    font-size:20px;
    font-weight:700;
}

.logo{
    font-size:30px;
    font-weight:700;
}



.info-box{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:25px;

    backdrop-filter:blur(15px);
}

.info-box h2{
    margin-bottom:15px;
}

.info-box p{
    line-height:2;
}

.payment-details{
    margin-top:20px;
}

.info-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:10px;

    padding:15px;

    border-radius:14px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);
}



.notice-box{

    margin-top:20px;

    padding:18px;

    border-radius:18px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);
}

.notice-box h3{
    color:#60a5fa;
    margin-bottom:10px;
}

.instagram-id{

    margin-top:15px;

    text-align:center;

    padding:12px;

    border-radius:14px;

    background:rgba(225,48,108,.12);

    border:1px solid rgba(225,48,108,.3);

    color:#e1306c;

    font-size:22px;

    font-weight:700;
}



.card-btn{

    text-decoration:none;

    text-align:center;

    padding:15px;

    border-radius:18px;

    color:#fff;

    font-weight:700;

    background:linear-gradient(135deg,#2563eb,#7c3aed);

    transition:.3s;
}

.card-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(37,99,235,.4);
}

