*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
font-family:Arial,Helvetica,sans-serif;
}

body{
background:#070707;
color:white;
overflow-x:hidden;
}

/* ScrollBar */

::-webkit-scrollbar{
width:8px;
}

::-webkit-scrollbar-track{
background:#111;
}

::-webkit-scrollbar-thumb{
background:#6b00ff;
border-radius:20px;
}

/* Header */

header{
padding:80px 20px;
text-align:center;
}

.title{

font-size:65px;

color:#00bfff;

text-shadow:
0 0 20px #00bfff,
0 0 40px #00bfff;

margin-bottom:20px;

animation:fade 1.5s;

}

.bigtext{

max-width:900px;

margin:auto;

font-size:23px;

line-height:40px;

color:#ddd;

}

/* Sidebar */

#sidebar{

position:fixed;

left:-260px;

top:0;

width:250px;

height:100%;

background:#111;

transition:.5s;

padding-top:80px;

z-index:999;

box-shadow:0 0 30px #6b00ff;

}

#sidebar.active{

left:0;

}

#sidebar a{

display:block;

padding:18px;

text-decoration:none;

color:white;

font-size:18px;

transition:.3s;

}

#sidebar a:hover{

background:#6b00ff;

padding-left:35px;

}

.logo{

font-size:28px;

text-align:center;

margin-bottom:30px;

color:#00bfff;

}

/* Menu */

#menuBtn{

position:fixed;

top:20px;

left:20px;

font-size:35px;

cursor:pointer;

z-index:1000;

background:#6b00ff;

padding:10px 18px;

border-radius:10px;

}

/* Cards */

.cards{

display:flex;

justify-content:center;

flex-wrap:wrap;

gap:35px;

padding:50px;

}

.card{

width:240px;

height:330px;

overflow:hidden;

border-radius:20px;

transition:.5s;

transform-style:preserve-3d;

perspective:1000px;

box-shadow:

0 0 20px #6b00ff;

}

.card img{

width:100%;

height:100%;

object-fit:cover;

transition:.6s;

}

.card:hover{

transform:

rotateY(18deg)

rotateX(8deg)

scale(1.08);

box-shadow:

0 0 35px cyan,

0 0 70px #6b00ff;

}

.card:hover img{

transform:scale(1.15);

}
/* Sections */

section{
    width:90%;
    max-width:1100px;
    margin:80px auto;
    background:#111;
    padding:35px;
    border-radius:20px;
    box-shadow:0 0 20px rgba(0,191,255,.2);
    transition:.4s;
}

section:hover{
    transform:translateY(-8px);
    box-shadow:0 0 30px #6b00ff;
}

section h1{
    color:#00bfff;
    font-size:38px;
    margin-bottom:20px;
    text-shadow:0 0 15px #00bfff;
}

section p{
    color:#ddd;
    line-height:35px;
    font-size:18px;
}

/* Footer */

footer{
    margin-top:100px;
    padding:50px 20px;
    background:#090909;
    text-align:center;
    border-top:2px solid #6b00ff;
}

footer h2{
    color:#00bfff;
    font-size:35px;
    margin-bottom:20px;
}

footer p{
    color:#aaa;
    margin-top:10px;
    font-size:17px;
}

/* Animation */

@keyframes fade{

0%{
opacity:0;
transform:translateY(-50px);
}

100%{
opacity:1;
transform:translateY(0);
}

}

/* Responsive */

@media(max-width:900px){

.title{
font-size:45px;
}

.bigtext{
font-size:18px;
line-height:30px;
}

.cards{
padding:20px;
gap:20px;
}

.card{
width:180px;
height:260px;
}

section{
width:95%;
padding:25px;
}

section h1{
font-size:30px;
}

section p{
font-size:16px;
line-height:28px;
}

#menuBtn{
font-size:28px;
padding:8px 15px;
}

}

@media(max-width:600px){

.title{
font-size:35px;
}

.bigtext{
font-size:16px;
}

.cards{
flex-direction:column;
align-items:center;
display:block;
}

.card{
width:90%;
height:300px;
display:block;
}

footer h2{
font-size:28px;
}
.game-title{
    display:block;
    width:100%;
    text-align:center;
    margin:15px 0 35px;
    color:#fff;
    font-size:28px;
    font-weight:bold;
    text-decoration:none;
    clear:both;
}

}