body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1A1A2E; /* Dark blue background */
    color: #E6E6E6; /* Light text for better contrast */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.banner {
    width: 100%;
    height: 100vh; /* Full viewport height */
    position: fixed; /* Fixed position so it doesn't scroll */
    top: 0;
    left: 0;
    z-index: -1; /* Behind other content */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.banner img {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    opacity: 0.3; /* Reduced opacity to make the text more readable */
}

.content {
    padding: 20px;
    text-align: center;
    margin-top: 40vh; /* Push the content down to be visible below the banner */
    background-color: rgba(26, 26, 46, 0.85); /* Semi-transparent background matching body color */
    position: relative; /* Needed for proper stacking */
    z-index: 1; /* Above the banner */
}

.content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.trailer-container {
    margin: 30px auto;
    max-width: 800px;
    width: 90%;
}

.trailer-container iframe {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.game-info {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: rgba(38, 38, 65, 0.7); /* Slightly lighter than body color */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.game-description {
    margin-bottom: 30px;
    line-height: 1.6;
}

.game-description h2 {
    color: #4CC9F0; /* Light blue accent color */
    font-size: 1.8em;
    margin-bottom: 15px;
}

.game-description p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.game-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.detail-box {
    flex: 1 1 150px;
    max-width: 180px;
    padding: 15px;
    background-color: rgba(255, 215, 0, 0.1); /* Very subtle gold background */
    border-left: 4px solid #FFD700; /* Gold accent */
    border-radius: 5px;
    text-align: left;
}

.detail-box h3 {
    margin-top: 0;
    color: #FFD700; /* Gold color for heading */
    font-size: 1.2em;
}

.detail-box p {
    margin-bottom: 0;
    font-size: 1em;
}

.key-features {
    margin: 40px 0;
    text-align: left;
}

.key-features h2 {
    color: #4CC9F0; /* Light blue accent color */
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

.key-features ul {
    list-style-type: none;
    padding: 0;
}

.key-features li {
    margin-bottom: 15px;
    padding: 10px 15px;
    background-color: rgba(76, 201, 240, 0.1); /* Very subtle blue background */
    border-radius: 5px;
    font-size: 1.1em;
}

.key-features li strong {
    color: #4CC9F0; /* Light blue for emphasis */
    margin-right: 5px;
}

.coming-soon {
    font-size: 2em;
    color: #FFD700; /* Gold color */
    margin: 30px 0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: #E6E6E6;
    text-align: center;
    padding: 15px;
    font-size: 0.9em;
    margin-top: auto; /* Push to bottom */
    position: relative; /* For proper z-index */
    z-index: 1; /* Above the banner */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content {
        margin-top: 30vh;
    }
    
    .content h1 {
        font-size: 2.5em;
    }
    
    .trailer-container iframe {
        height: 300px;
    }
    
    .game-details {
        flex-direction: column;
        align-items: center;
    }
    
    .detail-box {
        max-width: 100%;
        width: 100%;
    }
}