/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
background:#07111f;
font-family:Inter,sans-serif;
color:#fff;
overflow-x:hidden;
}

/* LINK */
a{
text-decoration:none;
color:inherit;
}

/* HEADER */
.site-header{
position:fixed;
top:0;
left:0;
right:0;
height:80px;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 25px;
background:rgba(8,17,31,.9);
backdrop-filter:blur(10px);
z-index:999;
border-bottom:1px solid rgba(255,255,255,.05);
}

.logo{
font-size:28px;
font-weight:800;
color:#00d4ff;
}

.search-box{
flex:1;
max-width:600px;
margin:0 25px;
}

.search-box input{
width:100%;
height:48px;
border:none;
outline:none;
background:#10213a;
border-radius:30px;
padding:0 20px;
font-size:15px;
color:#fff;
}

/* SIDEBAR */
.sidebar{
position:fixed;
top:80px;
left:0;
width:85px;
height:100vh;
background:#08111f;
padding-top:20px;
display:flex;
flex-direction:column;
align-items:center;
gap:18px;
border-right:1px solid rgba(255,255,255,.04);
}

.sidebar a{
width:52px;
height:52px;
display:flex;
align-items:center;
justify-content:center;
background:#10213a;
border-radius:16px;
font-size:22px;
transition:.25s;
}

.sidebar a:hover{
background:#00d4ff;
transform:translateY(-4px);
}

/* CONTENT */
.main-content{
margin-left:85px;
padding:110px 30px 40px;
width:calc(100% - 85px);
max-width:1600px;
}

/* SECTION */
.section{
margin-bottom:50px;
}

.section-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
}

.section-header h2{
font-size:28px;
font-weight:700;
}

.section-header a{
color:#00d4ff;
}

/* GRID */
.game-slider{
display:grid;
grid-template-columns:repeat(6,minmax(0,1fr));
gap:20px;
align-items:start;
}

/* CARD */
.card{
display:block;
width:100%;
background:#10213a;
border-radius:20px;
overflow:hidden;
transition:.25s;
position:relative;
}

.card img{
width:100%;
height:160px;
object-fit:cover;
display:block;
}

.card span{
display:block;
padding:12px;
font-size:14px;
font-weight:700;
line-height:1.5;
}

/* SINGLE GAME */
.game-frame{
position:relative;
width:100%;
padding-top:56.25%;
border-radius:20px;
overflow:hidden;
background:#000;
}

.game-frame iframe{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
border:none;
}

.btn-fullscreen{
margin-top:20px;
background:#00d4ff;
color:#fff;
border:none;
padding:12px 20px;
border-radius:14px;
cursor:pointer;
font-weight:700;
}

/* FOOTER */
.site-footer{
margin-left:85px;
background:#08111f;
margin-top:60px;
padding:50px 30px 20px;
border-top:1px solid rgba(255,255,255,.05);
}

.footer-inner{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:40px;
}

.footer-brand h2{
font-size:28px;
margin-bottom:15px;
}

.footer-brand p{
opacity:.7;
line-height:1.7;
}

.footer-menu h3{
margin-bottom:15px;
}

.footer-menu ul{
list-style:none;
padding:0;
margin:0;
}

.footer-menu li{
margin-bottom:10px;
}

.footer-menu a{
opacity:.7;
transition:.2s;
}

.footer-menu a:hover{
opacity:1;
color:#00d4ff;
}

.footer-bottom{
margin-top:40px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,.05);
opacity:.6;
text-align:center;
}