*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
background:#0f0f0f;
color:white;
font-family:Arial,sans-serif;
line-height:1.6;
}

a{
text-decoration:none;
color:inherit;
}

img{
max-width:100%;
display:block;
}

.site-wrapper{
min-height:100vh;
display:flex;
flex-direction:column;
}

.container{
width:100%;
max-width:1400px;
margin:auto;
padding:20px;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
background:#151515;
position:sticky;
top:0;
z-index:999;
border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo{
font-size:32px;
font-weight:900;
letter-spacing:1px;
color:white;
}

@keyframes ggAnim{

0%{
background-position:0% center;
}

100%{
background-position:300% center;
}

}

.hero{
padding:80px 20px;
text-align:center;
}

.hero h1{
font-size:52px;
margin-bottom:20px;
font-weight:900;
}

.hero p{
font-size:18px;
opacity:0.8;
max-width:800px;
margin:auto;
}

.content-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
gap:25px;
margin-top:40px;
}

.content-card{
background:#171717;
border-radius:22px;
overflow:hidden;
transition:0.3s;
border:1px solid rgba(255,255,255,0.05);
}

.content-card:hover{
transform:translateY(-5px);
border-color:#ff3c78;
}

.content-image{
width:100%;
background:#000;
display:flex;
justify-content:center;
align-items:center;
overflow:auto;
}

.content-image img{
width:auto;
max-width:100%;
height:auto;
object-fit:contain;
}

.content-body{
padding:22px;
}

.content-title{
font-size:24px;
font-weight:800;
margin-bottom:12px;
}

.content-desc{
font-size:15px;
opacity:0.8;
margin-bottom:18px;
}

.content-meta{
display:flex;
justify-content:space-between;
align-items:center;
font-size:14px;
opacity:0.7;
}

.details-btn{
margin-top:22px;
display:inline-block;
padding:13px 22px;
background:#ff3c78;
border-radius:14px;
font-weight:bold;
transition:0.3s;
}

.details-btn:hover{
opacity:0.8;
}

.section-title{
font-size:38px;
margin-bottom:35px;
font-weight:900;
}

.faq-section{
margin-top:80px;
}

.faq-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
gap:20px;
}

.faq-box{
background:#171717;
padding:25px;
border-radius:20px;
transition:0.3s;
border:1px solid rgba(255,255,255,0.05);
}

.faq-box:hover{
transform:translateY(-5px);
border-color:#8b5cf6;
}

.faq-box h3{
margin-bottom:15px;
font-size:22px;
}

.pagination{
display:flex;
justify-content:center;
align-items:center;
gap:10px;
margin-top:50px;
flex-wrap:wrap;
}

.pagination a{
padding:12px 18px;
background:#171717;
border-radius:12px;
transition:0.3s;
}

.pagination a:hover{
background:#ff3c78;
}

.footer{
margin-top:auto;
padding:50px 20px;
text-align:center;
background:#151515;
border-top:1px solid rgba(255,255,255,0.05);
}

.footer p{
opacity:0.7;
}

@media(max-width:768px){

.navbar{
padding:15px;
}

.logo{
font-size:26px;
}

.hero{
padding:60px 20px;
}

.hero h1{
font-size:36px;
}

.content-grid{
grid-template-columns:1fr;
}

}