@font-face {
    font-family: 'iransans';
    src: url('iransansdn.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
body{
    margin:0;
    padding:0;
    background:#050505;
    font-family:tahoma;
}

.vpn-section{
    font-family: 'iransans';
    padding:100px 20px;
    text-align:center;
    position:relative;
}

.vpn-section::before{
    font-family: 'iransans';
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:red;
    border-radius:50%;
    filter:blur(250px);
    opacity:.12;
    top:-250px;
    left:50%;
    transform:translateX(-50%);
    z-index:0;
}

.vpn-title{
    color:#fff;
    font-size:65px;
    margin-bottom:10px;
    text-shadow:0 0 25px rgba(255,0,0,.6);
    position:relative;
    z-index:2;
    
}

.vpn-subtitle{
    color:#aaa;
    font-size:18px;
    margin-bottom:70px;
    position:relative;
    z-index:2;
    font-family: 'iransans';
}

.vpn-plans{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
    position:relative;
    z-index:2;
}

.vpn-card{
    width:320px;
    background:rgba(15,15,15,.95);
    border:1px solid rgba(255,0,0,.25);
    border-radius:25px;
    padding:35px;
    color:white;
    transition:.4s;
    position:relative;
    overflow:hidden;
    direction: rtl;
    
}

.vpn-card:hover{
    transform:translateY(-12px);
    box-shadow:0 0 35px rgba(255,0,0,.45);
}

.vpn-card::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );
}

.vpn-card:hover::before{
    left:120%;
    transition:1s;
}

.vip{
    border:2px solid red;
    transform:scale(1.05);
    box-shadow:0 0 30px rgba(255,0,0,.3);
}

.badge{
    position:absolute;
    top:15px;
    right:15px;
    background:red;
    color:white;
    padding:8px 15px;
    border-radius:30px;
    font-size:12px;
}

.vpn-card h2{
    font-size:30px;
    margin-top:20px;
}

.vpn-price{
    font-size:42px;
    font-weight:bold;
    color:red;
    margin:20px 0;
    text-shadow:0 0 20px rgba(255,0,0,.5);
}

.vpn-card ul{
    list-style:none;
    padding:0;
}

.vpn-card li{
    margin:12px 0;
    color:#ddd;
}

.vpn-card button{
    width:100%;
    margin-top:25px;
    border:none;
    padding:15px;
    border-radius:50px;
    background:linear-gradient(135deg,#ff0000,#8b0000);
    color:white;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    box-shadow:0 0 20px rgba(255,0,0,.4);
}

.vpn-card button:hover{
    box-shadow:0 0 40px rgba(255,0,0,.8);
}

.vpn-form{
    max-width:700px;
    margin:90px auto 0;
    background:rgba(15,15,15,.95);
    border:1px solid rgba(255,0,0,.25);
    border-radius:25px;
    padding:40px;
    position:relative;
    z-index:2;
}

.vpn-form h2{
    color:white;
    margin-bottom:25px;
}

.vpn-form input,
.vpn-form select,
.vpn-form textarea{
    width:100%;
    box-sizing:border-box;
    padding:15px;
    margin:10px 0;
    background:#0b0b0b;
    border:1px solid rgba(255,0,0,.3);
    border-radius:12px;
    color:white;
}

.vpn-form textarea{
    height:120px;
    resize:none;
}

.submit-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,#ff0000,#8b0000);
    color:white;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    box-shadow:0 0 25px rgba(255,0,0,.4);
}

.submit-btn:hover{
    box-shadow:0 0 50px rgba(255,0,0,.8);
}