* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}
body { 
    font-family: Arial, Helvetica, sans-serif; 
      background: #212121 no-repeat center top; 
    color: #cccccc; 
}

header { 
    background: linear-gradient(to bottom, #1f1f1f 0%, #000000 100%); 
    padding: 15px 0; 
    text-align: center; 
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5); 
    border-bottom: 2px solid #333333; 
}
header img { 
    width: 400px; 
    height: auto; 
}

.container { 
    width: 960px; 
    margin: 40px auto; 
    padding: 20px; 
    background: rgba(0, 0, 0, 0.7); 
    border: 1px solid #333333; 
    border-radius: 10px; 
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.6); 
}
.container p { 
    font-size: 16px; 
    line-height: 1.8; 
    color: #dddddd; 
}
.container a.btn { 
    display: inline-block; 
    padding: 12px 25px; 
    background: #333333; 
    color: #ffffff; 
    text-decoration: none; 
    border: 2px solid #666666; 
    border-radius: 5px; 
    text-transform: uppercase; 
    transition: background 0.3s; 
}
.container a.btn:hover { 
    background: #555555; 
    border-color: #999999; 
}

.games-container, .other-container { 
    margin: 40px auto; 
    padding: 20px; 
    background: #2a2a2a; 
    border: 1px solid #444444; 
    border-radius: 10px; 
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.6); 
}
.games-title, .other-title { 
    font-size: 22px; 
    color: #ffffff; 
    text-shadow: 1px 1px 5px #000000; 
    padding: 10px; 
    border-radius: 5px; 
    text-align: center; 
}
.games-title { 
    background: linear-gradient(135deg, #4e9e32, #378a1f); 
}
.other-title { 
    background: linear-gradient(135deg, #3b3bdb, #1a1a98); 
}
.game-link, .other-link { 
    display: block; 
    margin: 15px 0; 
    color: #7bb7e6; 
    text-decoration: none; 
    font-size: 18px; 
}
.game-link:hover, .other-link:hover { 
    color: #ff8a32; 
    text-decoration: underline; 
}
.dead-game-link { 
    color: #dd2222; 
    font-style: italic; 
}
.dead-game-link:hover { 
    color: #ff3333; 
}

footer { 
    background: #111111; 
    padding: 10px 0; 
    text-align: center; 
    border-top: 2px solid #444444; 
    color: #777777; 
    font-size: 12px; 
}
.footer p { 
    margin: 0; 
}

body::-webkit-scrollbar { 
    width: 12px; 
}
body::-webkit-scrollbar-thumb { 
    background: #444444; 
    border-radius: 6px; 
}
body::-webkit-scrollbar-thumb:hover { 
    background: #555555; 
}


@media (max-width: 960px) {
    .container {
        width: 90%;
    }
    header img {
        width: 80%; 
    }
    .games-title, .other-title {
        font-size: 20px; 
    }
    .game-link, .other-link {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 15px; 
    }
    header img {
        width: 100%;
    }
    .games-title, .other-title {
        font-size: 18px; 
    }
    .game-link, .other-link {
        font-size: 14px;
    }
}
