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

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Vazirmatn',sans-serif;
    direction:rtl;

    background:
    radial-gradient(circle at top,#1d4211 0%,#0b0b0b 45%,#050505 100%);

    color:#fff;

    overflow-x:hidden;

    min-height:100vh;

}

/* نورهای پس زمینه */

body::before,
body::after{

    content:"";

    position:fixed;

    width:450px;
    height:450px;

    border-radius:50%;

    filter:blur(140px);

    z-index:-1;

}

body::before{

    top:-150px;
    right:-120px;

    background:#5eff00;

    opacity:.16;

}

body::after{

    left:-150px;
    bottom:-150px;

    background:#00ff88;

    opacity:.10;

}

.wrap{

    width:100%;

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    padding:40px 20px;

}

.logo{

    width:170px;

    margin-bottom:15px;

    filter:

    drop-shadow(0 0 20px #67ff00)
    drop-shadow(0 0 40px #67ff00);

}

h1{

    font-size:64px;

    font-weight:700;

    letter-spacing:2px;

}

h1 span{

    color:#7cff00;

    text-shadow:

    0 0 10px #7cff00,
    0 0 25px #7cff00;

}

.subtitle{

    margin-top:10px;

    margin-bottom:50px;

    color:#bfbfbf;

    font-size:18px;

}

/* کارت ها */

.grid{

    display:grid;

    grid-template-columns:repeat(2,340px);

    gap:30px;

    justify-content:center;

    align-items:center;

}

.card{

    width:340px;

    height:210px;

    text-decoration:none;

    color:white;

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(18px);

    border:1px solid rgba(124,255,0,.18);

    border-radius:24px;

    padding:28px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
    135deg,
    transparent,
    rgba(124,255,0,.12),
    transparent);

    transform:translateX(-120%);

    transition:.6s;

}

.card:hover::before{

    transform:translateX(120%);

}

.card:hover{

    transform:
    translateY(-10px)
    scale(1.03);

    border-color:#7cff00;

    box-shadow:

    0 0 20px rgba(124,255,0,.25),
    0 0 50px rgba(124,255,0,.15);

}

.icon{

    width:72px;

    height:72px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    background:rgba(124,255,0,.08);

    color:#7cff00;

    box-shadow:0 0 20px rgba(124,255,0,.25);

    margin-bottom:20px;

}

.card h2{

    font-size:24px;

    margin-bottom:10px;

}

.card p{

    color:#b8b8b8;

    line-height:1.9;

    font-size:15px;

}

footer{

    margin-top:60px;

    color:#777;

    font-size:14px;

}

/* موبایل */

@media(max-width:768px){

    .logo{

        width:120px;

    }

    h1{

        font-size:42px;

    }

    .subtitle{

        font-size:15px;

        text-align:center;

        margin-bottom:35px;

    }

    .grid{

        grid-template-columns:1fr;

        max-width:340px;

        gap:20px;

    }

    .card{

        width:100%;

        height:auto;

        min-height:180px;

    }

}
