            /* RESET */
*{margin:0;padding:0;box-sizing:border-box;font-family:Arial,sans-serif;}

/* HEADER */
.site-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 30px;
background: linear-gradient(90deg,#0a3d62,#27ae60);
color:#fff;
position: relative;
}
.site-header .logo{font-size:24px;font-weight:bold;}
.site-header .menu a{
color:#fff;
text-decoration:none;
margin-left:20px;
font-weight:500;
}
.site-header .menu a:hover{text-decoration:underline;}
.menu-toggle{display:none;font-size:28px;cursor:pointer;color:#fff;}

/* CATEGORY SECTION */
.category-section{padding:40px 20px;background:#f4f6f8;}
.category-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
gap:20px;
max-width:1200px;
margin:auto;
}
.category-card{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
height:120px;
border-radius:12px;
color:#fff;
font-weight:bold;
font-size:18px;
text-decoration:none;
transition:transform 0.3s, box-shadow 0.3s;
text-align:center;
padding:10px;
}
.category-card .icon{font-size:28px;margin-bottom:5px;}
.category-card:hover{
transform: translateY(-5px);
box-shadow:0 10px 20px rgba(0,0,0,0.2);
}
/* CATEGORY GRADIENTS */
.category-card:nth-child(1){background: linear-gradient(135deg,#ff7e5f,#feb47b);}
.category-card:nth-child(2){background: linear-gradient(135deg,#6a11cb,#2575fc);}
.category-card:nth-child(3){background: linear-gradient(135deg,#43cea2,#185a9d);}
.category-card:nth-child(4){background: linear-gradient(135deg,#ff512f,#dd2476);} /* Ticket */
.category-card:nth-child(5){background: linear-gradient(135deg,#1f4037,#99f2c8);}
.category-card:nth-child(6){background: linear-gradient(135deg,#f7971e,#ffd200);}
.category-card:nth-child(7){background: linear-gradient(135deg,#c6ffdd,#fbd786);}
.category-card:nth-child(8){background: linear-gradient(135deg,#f953c6,#b91d73);}
.category-card:nth-child(9){background: linear-gradient(135deg,#3a1c71,#d76d77);}
.category-card:nth-child(10){background: linear-gradient(135deg,#11998e,#38ef7d);}

/* ADS */
.ad-box{max-width:800px;margin:30px auto;text-align:center;}

/* ITEM DETAILS */
.item-details img{max-width:100%;border-radius:10px;margin:20px 0;}
.download-btn{
display:inline-block;
margin-top:20px;
padding:10px 20px;
background:#27ae60;
color:#fff;
border-radius:6px;
text-decoration:none;
font-weight:bold;
}

/* FOOTER */
footer{
background:#111;
color:#fff;
text-align:center;
padding:20px;
margin-top:30px;
}
footer p{margin:5px 0;}

/* MOBILE */
@media(max-width:768px){
.menu-toggle{display:block;}
.menu{
display:none;
flex-direction:column;
background: linear-gradient(90deg,#0a3d62,#27ae60);
position:absolute;
top:60px;
right:0;
width:200px;
padding:10px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
z-index:1000;
}
.menu.active{display:flex;}
.menu a{margin:10px 0;}
}