
li{
    list-style: none;
}
.container{
    max-width: 1180px;
    padding: 10px 20px;
    margin: auto;
}
.flex{
    display: flex;
    align-items: center;
}

.hero-section{
    background-color: #582f0e;
    padding: 75px;
}
.main-text{
/*  margin-top:100px;*/
    color: white;
    font-weight: 700;
    font-size: 4.5rem;
    text-align: center;
    letter-spacing: 2px;
}
.main-para{
    color: white;
    margin-top: 20px;
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 1px;
    padding: 0px 300px;
    font-weight: 200;
}
.app-button-list{
    padding: 0px;
    margin-top: 30px;
    justify-content: center;
    gap:25px;
}
.decorator-btn{
    min-width: 200px;
    min-height: 60px;
    /*border-radius: 8px;*/
    background-color: #fff;
    box-shadow: 1px 2px 0 #000;
}
.store-btn-img{
    max-width: 200px;
    min-height: 60px;
}
.section-heading{
    padding: 15px;
}
.text-section-heading{
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}
.download-app-img{
    border-radius: 5px;
}

.benefits-content{
    gap:30px;
    letter-spacing: 0.5px;
}
.benefit-card{
    margin-bottom: 30px;
    padding: 20px 25px;
    background-color: #fff;
    min-width: 300px;
    min-height: 300px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}
.benefit-title{
    font-weight: 400;
    font-size: 1.75rem;
}
.benefit-desc{
    font-size: 1.25rem;
}

.market-place{
    justify-content: center;
    gap:25px;
}
.market-place-card{
    margin-bottom: 30px;
    padding: 20px 25px;
    background-color: #000;
    min-width: 250px;
    min-height: 220px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}
.market-place-content{
    flex-direction: column;
    align-items: flex-start;
}
.get-it{
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    background-color: #fff;
    color: #000;
}

.games-included{
    background-color:#fff; 
}
.text-section-heading-games{
}

.games-content{
    letter-spacing: 1px;
}
.game-card{
    margin-bottom: 40px;
    padding: 20px 20px;
    background-color: #fff;
    min-width: 300px;
    min-height: 420px;
    border-radius: 6px;
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.5);
}
.game-title{
    margin-top: 15px;
    font-weight: 700;
    font-size: 1.5rem;
}
.game-desc{
    font-size: 1.25rem;
}

.testimonials-content{
    gap:20px;
    justify-content: center;
}
.testimonial-card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px 20px;
    border-radius: 6px;
    background-color: #fff;
    max-width: 350px;
    min-height: 300px;
   /* width: 350px;
    height: 300px;*/
    box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.4);
}
.testimonial-desc{
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.4px;
}
.testimonial-footer{
    margin-top: 20px;
    gap:10px;
}
.testimony-logo{
    width: 30px;
    height: 30px;
    border-radius: 15px;
}
.testimony{
    margin-top: 7px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.4px;
}
@media only screen and (max-width: 767px) {
    .container{
        max-width: 767px;
    }
  /* Styles for mobile devices */
    .hero-section{
        padding: 15px;
    }
    .main-text{
        font-size: 2rem;
        letter-spacing: 0.2px;
    }
    .main-para{
        font-size: 0.9rem;
        padding: 0px 25px;
    }
    .decorator-btn{
        min-width: 120px;
        min-height: 45px;
    }
    .store-btn-img{
        max-width: 120px;
        min-height: 45px;
    }
    
    .section-heading{
        padding: 10px;
    }
    .text-section-heading{
        font-size: 2rem;
    }


    .benefits-content{
        padding-right: 15px; /* Add padding to the right */
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scroll-snap-type: x mandatory; /* Optional: Snap to cards */
    }
    .benefits-content::-webkit-scrollbar {
        display: none;
    }
    .benefit-card{
        min-width: 255px;
        min-height: 250px;
    }
    .benefit-title{
        font-weight: 400;
        font-size: 1.5rem;
    }
    .benefit-desc{
        font-size: 1rem;
    }


    .game-card{
        min-width: 300px;
        min-height: 350px;
    }
    .game-title{
        font-size: 1.5rem;
    }
    .game-desc{
        font-size: 1rem;
    }

    .testimonials-content{
        flex-direction: column;
        gap:10px;
    }
    .testimonial-card{
        min-height: 150px;
/*      width: 250px;
        height: 150px;*/
    }
    .testimonial-desc{
        font-size: 1rem;
        letter-spacing: 0.2px;
    }
    .testimony{
        font-size: 1rem;
        letter-spacing: 0.2px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
    .container{
        max-width: 1024px;
    }
    .hero-section{
        padding: 45px;
    }
    .main-text{
        font-size: 2.5rem;
        letter-spacing: 0.5px;
    }
    .main-para{
        font-size: 1.25rem;
        letter-spacing: 0.5px;
        padding: 0px 40px;
    }
    .decorator-btn{
        min-width: 150px;
        min-height: 50px;
    }
    .store-btn-img{
        max-width: 150px;
        min-height: 50px;
    }

    .section-heading{
        padding: 15px;
    }
    .text-section-heading{
        font-size: 2.5rem;
    }


    .benefits-content{
        padding-right: 17px; /* Add padding to the right */
        overflow-x: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scroll-snap-type: x mandatory; /* Optional: Snap to cards */
    }
    .benefits-content::-webkit-scrollbar {
        display: none;
    }
    .benefit-card{
        min-width: 300px;
        min-height: 300px;
    }
    .benefit-title{
        font-weight: 400;
        font-size: 1.75rem;
    }
    .benefit-desc{
        font-size: 1.25rem;
    }

    .games-content{
        gap:50px;
    }
    .game-card{
        min-width: 300px;
        min-height: 425px;
    }
    .game-title{
        font-size: 1.5rem;
    }
    .game-desc{
        font-size: 1.25rem;
    }

    .testimonials-content{
        flex-direction: column;
        gap:10px;
    }
    .testimonial-card{
        min-width: 500px;
        min-height: 300px;
    }
    .testimonial-desc{
        font-size: 1.25rem;
        letter-spacing: 0.3px;
    }
    .testimony{
        font-size: 1.25rem;
        letter-spacing: 0.3px;
    }
}