body {
    font-family: 'Montserrat', sans-serif, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: beige;
}
.hero {
    background: url('images/default_banner2.jpg') no-repeat center/cover;
    
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.hero h1 {
    position: relative;
    font-size: 3em;
    color: #ffcc00;
    z-index: 1;
}
.container {
    width: 80%;
    margin: auto;
    padding: 20px;
    background-color: rgba(18, 18, 18, 0.9);
    border-radius: 10px;
    margin-top: -50px;
    position: relative;
    z-index: 1;
}
h1, h2 {
    color: #ffcc00;
    text-align: center;
}
h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
h2 {
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 15px;
}
p {
    line-height: 1.6;
    font-size: 1.1rem;
}
.game-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.game-info img {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(255, 204, 0, 0.5);
}
.game-info ul {
    list-style-type: none;
    padding: 0;
}
.game-info ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.game-info ul li strong {
    color: #ffcc00;
}
.game-features, .game-impact {
    margin-top: 30px;
}
.game-features ul, .game-impact ul {
    list-style-type: square;
    padding-left: 20px;
}
.game-features ul li, .game-impact ul li {
    margin-bottom: 10px;
}
.back-to-main {
    text-align: center;
    margin-top: 30px;
}
.back-to-main a {
    color: #ffcc00;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.back-to-main a:hover {
    color: white;
}