body {
    background-color: #f0f8ff; /* AliceBlue */
    color: #333;
}

h1 {
    color: #2e8b57; /* SeaGreen */
    text-shadow: none;
}

.game-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.game-demo {
    background-color: #fff;
    padding: 20px;
    border: 2px solid #2e8b57;
    border-radius: 10px;
}

.game-details {
    background-color: #fff;
    padding: 20px;
    border: 2px solid #87ceeb; /* SkyBlue */
    border-radius: 10px;
}

.game-trailer {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.game-trailer video {
    width: 100%;
    border: 2px solid #2e8b57;
    border-radius: 10px;
}

.screenshot-gallery {
    grid-column: 1 / -1;
    background-color: #fff;
    padding: 20px;
    border: 2px solid #2e8b57;
    border-radius: 10px;
    margin-top: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border: 2px solid #87ceeb;
    border-radius: 5px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .game-content {
        grid-template-columns: 1fr;
    }
}
