/* General Styles */
.game-page {
    font-family: 'Arial', sans-serif;
    color: #333;
}

/* Hero Section */
.videoBKDiv {

}

.game-hero {
    background: url('Images/game-hero-bg.jpg') no-repeat center center/cover;
    padding: 20px 0;
    text-align: center;
    color: #fff;
}

.game-hero .game-logo {
    width: 150px;
    margin-bottom: 20px;
}

.game-hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.game-hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.game-hero .primary-btn {
    background-color: #ff6f61;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background 0.3s;
}

.game-hero .primary-btn:hover {
    background-color: #e55b50;
}

/* About Section */
.game-about {
    margin: 40px 0;
    padding: 20px 40px;
    text-align: center;
    justify-items: center;
    color: #f9f9f9;
}

.game-about h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.game-about p {
    font-size: 1.4em;
    max-width: 800px;
}

/* Features Section */
.game-features {
    padding: 60px 20px;
    background-color: #eeeeee;
}

.game-features h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.feature-item {
    width: 30%;
    text-align: center;
    margin-bottom: 30px;
}

.feature-item img {
    width: 50px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1em;
}

/* Gallery Section */
.game-gallery {
    padding: 60px 20px;
}

.game-gallery h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: #f9f9f9;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery img {
    width: 30%;
    margin: 10px;
    border-radius: 5px;
}

/* Download Section */
.game-download {
    padding: 60px 20px;
    text-align: center;
    background-color: #ff6f61;
    color: #fff;
}

.game-download h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.download-btn {
    background-color: #fff;
    color: #333;
    padding: 15px 25px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background 0.3s;
    border: 1px solid #ccc;
}

.download-btn img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.download-btn:hover {
    background-color: #f9f9f9;
}

.download-btn.coming-soon {
    pointer-events: none;
    opacity: 0.6;
}

/* Specific Platform Styles */
.download-btn.itch {
    border-color: #FA5C5C;
}

.download-btn.amazon {
    border-color: #FF9900;
}

.download-btn.unity {
    border-color: #000000;
}

.download-btn.google-play {
    border-color: #3DDC84;
}

.download-btn.app-store {
    border-color: #0D96F6;
}
.game-download p {
    font-size: 0.9em;
}

.download-btn.highlight {
    box-shadow: 0 0 10px rgba(255, 223, 0, 0.8);
    /* Golden glow */
}
/* Testimonials Section */
.game-testimonials {
    padding: 60px 20px;
}

.game-testimonials h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    color: aliceblue;
}

.testimonials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial {
    width: 40%;
    background-color: #f9f9f9;
    margin: 10px;
    padding: 20px;
    border-radius: 5px;
}

.testimonial p {
    font-size: 1em;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial h4 {
    text-align: right;
    font-size: 0.9em;
    color: #666;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {

    .features-list,
    .testimonials {
        flex-direction: column;
        align-items: center;
    }

    .feature-item,
    .testimonial {
        width: 80%;
    }

    .gallery img {
        width: 80%;
    }
}