body {
    padding-top: 60px; 
    text-decoration: none;
    text-align: center;
    background-image: url("https://cdn.pixabay.com/photo/2017/02/12/12/42/wall-2059909_640.png");  
    background-size: cover;
    background-blend-mode: overlay;
    font-size: 18px;
    font-family: "Helvetica Neue", sans-serif;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #0fa;
}

header {
    position: fixed;
    width: 100%;
    height: 60px;
    padding: 20px 60px;
    box-sizing: border-box;
    background: #333;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    z-index: 1000;
}

header .nav .menu {
    display: flex;
}

header .nav .menu li {
    list-style: none;
    margin-left: 40px;
}

header .nav .menu li a {
    color: #0fa;
    font-weight: bold;
}

main {
    text-align: center;
}

h2 {
    color: #0fa;
    padding-top: 100px;
}

.game-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.game-item {
    text-align: center;
    max-width: 200px;
}

.game-item img {
    width: 200px; 
    height: 150px; 
    object-fit: fill; 
    display: block;
    margin: 0 auto;
    filter: brightness(0.7);
    transition: filter 0.3s;
}

.game-item img:hover {
    filter: brightness(1);
}

.game-item p {
    margin-top: 10px;
    font-size: 16px;
    color: white;
    text-shadow: 
        0 0 7px #fff,
        0 0 10px #fff,
        0 0 21px #fff,
        0 0 42px #0fa,
        0 0 82px #0fa,
        0 0 92px #0fa,
        0 0 102px #0fa,
        0 0 151px #0fa;
}

footer {
    margin-top: 20px;
    padding: 20px;
    background-image: url("https://cdn.pixabay.com/photo/2017/02/12/12/42/wall-2059909_640.png");  
    background-size: cover;
    background-blend-mode: overlay;
    color: #fff;
}

.btn-backtotop a {
    color: #0fa;
    text-decoration: none;
    font-size: 1.2rem;
}

.neonText {
    color: #fff;
    text-shadow: 
        0 0 7px #fff,
        0 0 10px #fff,
        0 0 21px #fff,
        0 0 42px #0fa,
        0 0 82px #0fa,
        0 0 92px #0fa,
        0 0 102px #0fa,
        0 0 151px #0fa;
}

.loopSlide {
    position: relative;
    display: flex;
    width: 100vw;
    overflow: hidden;
}

.loopSlide ul {
    padding: 0;
    display: flex;
    flex-shrink: 0;
}

.loopSlide ul:first-child {
    animation: slide1 60s -30s linear infinite;
}

.loopSlide ul:last-child {
    animation: slide2 60s linear infinite;
}

.loopSlide ul li {
    display: inline-block;
    width: 100%;
    min-width: 500px;
    margin-right: 20px;
    list-style: none;
    text-align: center;
}

.loopSlide ul li img {
    display: block;
    width: 600px;
    height: 400px;
    object-fit: fill;
    border: 1px solid #ddd;
}

@keyframes slide1 {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes slide2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .container {
        margin-top: 10vh;
    }
}
body {
    background-image: url("https://cdn.pixabay.com/photo/2017/02/12/12/42/wall-2059909_640.png");
    background-size: cover;
    font-family: "Helvetica Neue", sans-serif;
    color: white;
    text-align: center;
    margin-top: 80px;
}

header {
    position: fixed;
    width: 100%;
    height: 60px;
    padding: 20px 60px;
    box-sizing: border-box;
    background: #333;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    z-index: 1000;
}

.menu-toggle {
    display: none;
    font-size: 2rem; 
    color: #0fa;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    header .nav .menu {
        position: fixed;
        top: 60px;
        right: 0;
        background-image: url("https://cdn.pixabay.com/photo/2017/02/12/12/42/wall-2059909_640.png");  
        background-size: cover;
        background-blend-mode: overlay;    
        width: 100%;
        max-width: 300px;
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%); 
        transition: transform 0.3s ease-in-out;
        padding: 20px; 
    }

    header .nav .menu li {
        margin: 20px 0;
    }

    header .nav .menu li a {
        font-size: 1.5rem; 
        color: #0fa;
        font-weight: bold;
        text-decoration: none;
        text-shadow: 
            0 0 5px #fff,   
            0 0 8px #0fa;   
    }

    header .nav .menu.open {
        transform: translateX(0); 
    }
}

@media screen and (max-width: 480px) {
    header {
        padding: 20px 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    header .nav .menu li {
        margin: 15px 0;
    }
}
