/* Styling based on the provided images: Dark, Cosmic, Gothic */
body {
    background-color: #0d0b14; /* Deep dark purple-black */
    color: #e0d9f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(180deg, #1a152e 0%, #0d0b14 100%);
    padding: 40px 20px;
    text-align: center;
    border-bottom: 2px solid #4a2d8a;
}

header h1 {
    font-size: 2.5rem;
    letter-spacing: 5px;
    color: #a388ee;
    text-shadow: 0 0 15px #6e3ddb;
    margin: 0;
}

nav {
    margin-top: 20px;
}

nav a {
    color: #9cdb9c; /* Acid green touch from images */
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

nav a:hover {
    color: #fff;
    text-shadow: 0 0 10px #9cdb9c;
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.game-card {
    display: flex;
    align-items: center;
    background: #161225;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #332a52;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: scale(1.02);
    border-color: #6e3ddb;
}

.image-box {
    flex: 0 0 300px; /* Limits the width of the image area */
    max-height: 200px;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps image looking good while small */
    filter: saturate(0.8) contrast(1.1);
}

.text-box {
    padding: 20px 30px;
}

.text-box h2 {
    color: #9cdb9c;
    margin-top: 0;
}

.text-box p {
    line-height: 1.6;
    font-size: 0.95rem;
    color: #b0a8c9;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4a2d8a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #6e3ddb;
}

footer {
    text-align: center;
    padding: 40px;
    font-size: 0.8rem;
    color: #554d74;
}

/* Mobile Friendly */
@media (max-width: 768px) {
    .game-card {
        flex-direction: column;
    }
    .image-box {
        flex: none;
        width: 100%;
    }
}