*{box-sizing:border-box;font-family:Tahoma,Vazirmatn,Arial,sans-serif}

body{
background:#f3f3f3;
margin:0;
color:#333;
}

#wrapper{
width:900px;
max-width:95%;
margin:auto;
}


/* هدر */
#titlebox{
background:linear-gradient(135deg,#ffffff,#e8edf2);
border-radius:16px;
padding:25px;
margin:25px 0 20px;
box-shadow:0 8px 25px rgba(0,0,0,.12);
border:1px solid #ddd;
text-align:right;
}

#titlebox h1{
margin:0 0 10px;
}

#titlebox a{
color:#222;
font-size:24px;
font-weight:bold;
text-decoration:none;
}

#titlebox h2{
margin:0;
color:#777;
font-size:14px;
font-weight:normal;
}


/* آرشیوها */
#result{
direction:rtl;
padding:15px;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:14px;
}

#result br{
display:none;
}


#result a{
height:70px;
display:flex;
align-items:center;
justify-content:center;

background:linear-gradient(135deg,#fff,#e6e6e6);

color:#222;

border-radius:10px;
border:1px solid #d0d0d0;

font-size:15px;
font-weight:bold;

text-decoration:none;

box-shadow:
0 5px 15px rgba(0,0,0,.12),
inset 0 1px 0 #fff;

transition:.3s;

position:relative;
overflow:hidden;
}


/* خط قرمز اسپرت */
#result a:before{
content:"";
position:absolute;
top:0;
right:0;
width:100%;
height:4px;
background:#e10600;
}


#result a:hover{
background:#222;
color:#fff;
transform:translateY(-6px);
box-shadow:0 15px 30px rgba(0,0,0,.25);
}


/* آرشیوهای جدید */
#result a[href*="1405"],
#result a[href*="1404"]{
border-right:5px solid #e10600;
}


/* لینک های پایین */
#wrapper>a{
display:inline-block;
margin:18px 5px;
padding:9px 20px;

background:#222;
color:#fff;

border-radius:25px;

font-size:13px;

text-decoration:none;

transition:.3s;
}


#wrapper>a:hover{
background:#e10600;
}


/* فوتر */
#copyright{

margin-top:20px;

padding:15px;

background:#222;

border-radius:12px;

color:#aaa;

font-size:12px;

text-align:center;

box-shadow:0 5px 15px rgba(0,0,0,.15);
}


#copyright a{
color:#fff;
text-decoration:none;
}


/* موبایل */
@media(max-width:900px){

#wrapper{
width:100%;
}

#result{
grid-template-columns:repeat(3,1fr);
}

}


@media(max-width:600px){

#titlebox{
padding:18px;
}

#titlebox a{
font-size:20px;
}


#result{
grid-template-columns:repeat(2,1fr);
gap:10px;
}


#result a{
height:58px;
font-size:12px;
}

}