/* ===========================
   RESET
=========================== */

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

:root{

    --primary:#2F6BFF;
    --primary2:#5B8CFF;

    --gold:#D8B35E;

    --bg:#EEF2F8;

    --card:#ffffff;

    --text:#1E293B;

    --muted:#64748B;

    --border:#E2E8F0;

    --shadow:
        0 10px 25px rgba(15,23,42,.08);

    --radius:22px;

}

html{

scroll-behavior:smooth;

}

body{

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

background:linear-gradient(135deg,#eef3fb,#f7f8fc);

min-height:100vh;

color:var(--text);

padding:35px;

overflow-x:hidden;

}

/* ===========================
BACKGROUND
=========================== */

.background{

position:fixed;

inset:0;

background:

radial-gradient(circle at top right,#b9d2ff 0%,transparent 35%),

radial-gradient(circle at bottom left,#d8b35e33 0%,transparent 35%);

z-index:-1;

}

/* ===========================
CONTAINER
=========================== */

.container{

max-width:1200px;

margin:auto;

}

/* ===========================
HEADER
=========================== */

header{

background:white;

padding:35px;

border-radius:28px;

box-shadow:var(--shadow);

margin-bottom:30px;

}

header h1{

font-size:34px;

font-weight:800;

text-align:center;

color:#183153;

}

.line{

width:120px;

height:5px;

margin:18px auto 0;

border-radius:100px;

background:linear-gradient(90deg,var(--primary),var(--gold));

}

/* ===========================
GRID
=========================== */

.grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

}

/* ===========================
COLUMN
=========================== */

.column{

display:flex;

flex-direction:column;

gap:14px;

}

/* ===========================
ITEM
=========================== */

.item{

display:flex;

align-items:center;

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

border:1px solid var(--border);

border-radius:18px;

padding:15px 18px;

transition:.35s;

backdrop-filter:blur(12px);

}

.item:hover{

transform:translateY(-4px);

box-shadow:

0 15px 35px rgba(47,107,255,.12);

border-color:var(--primary);

}

.title{

white-space:nowrap;

font-size:17px;

font-weight:600;

}

.dots{

flex:1;

margin:0 10px;

border-bottom:2px dotted #cbd5e1;

}

.page{

min-width:58px;

height:38px;

display:flex;

align-items:center;

justify-content:center;

background:linear-gradient(135deg,var(--primary),var(--primary2));

color:white;

font-weight:700;

border-radius:999px;

font-size:14px;

box-shadow:

0 8px 18px rgba(47,107,255,.25);

}

/* ===========================
SCROLLBAR
=========================== */

::-webkit-scrollbar{

width:9px;

}

::-webkit-scrollbar-thumb{

background:var(--primary);

border-radius:50px;

}

::-webkit-scrollbar-track{

background:#e8edf8;

}

/* ===========================
TABLET
=========================== */

@media(max-width:992px){

body{

padding:20px;

}

.grid{

grid-template-columns:1fr;

}

header{

padding:25px;

}

header h1{

font-size:28px;

}

}

/* ===========================
MOBILE
=========================== */

@media(max-width:600px){

body{

padding:15px;

}

header{

padding:20px;

border-radius:20px;

}

header h1{

font-size:23px;

}

.item{

padding:14px;

}

.title{

font-size:15px;

}

.page{

min-width:48px;

height:34px;

font-size:13px;

}

}

.item{

display:flex;
align-items:center;

text-decoration:none;
color:inherit;

cursor:pointer;

transition:.35s;

}

.item:hover{

transform:translateY(-4px);

box-shadow:0 10px 25px rgba(0,0,0,.12);

}

.item:active{

transform:scale(.98);

}

/* ===========================
LARGE SCREEN
=========================== */

@media(min-width:1500px){

.container{

max-width:1450px;

}

.title{

font-size:18px;

}

.item{

padding:18px 22px;

}

}