body {
    background-color: #0d0d2e;
}

h1 {
    color: #00ff00;
    text-shadow: 0 0 15px #00ff00;
}

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

.game-demo {
    background-color: #1a1a3a;
    padding: 20px;
    border: 1px solid #00ff00;
    border-radius: 10px;
}

.game-details {
    background-color: #1a1a3a;
    padding: 20px;
    border: 1px solid #9400d3; /* Deep Purple */
    border-radius: 10px;
}

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

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

.screenshot-gallery {
    grid-column: 1 / -1;
    background-color: #1a1a3a;
    padding: 20px;
    border: 1px solid #00ff00;
    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 #9400d3;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #00ff00;
}

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