/* AI GAME Page CSS */
.future-ai-stats-game .box{
  background: #000;
  padding: 30px 20px;
  text-align: center;
  border-radius: 18px;
   transition: all 0.35s ease;
  box-shadow: 0 0 0 rgba(244, 122, 20, 0);
  transform: translateY(0) scale(1);
  position: relative;
}

.future-ai-stats-game .box.box-spacing{
  margin-top: 50px;
}

/* HOVER EFFECT */
.future-ai-stats-game .box:hover {
  box-shadow: 0 10px 30px rgba(244, 122, 20, 0.45),
              0 0 25px rgba(244, 122, 20, 0.35);
  transform: translateY(-6px) scale(1.02);
}

.journey-boxes.ai-features-box .box{
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  border-radius: 7px;
  min-height: 330px;
}

.journey-boxes.ai-features-box .box .front-head{
  position: absolute;
  bottom: 0;
  left: 25px;
  width: 100%;
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
}

.journey-boxes.ai-features-box .box h3{
font-size: clamp(0.9375rem, 0.8375rem + 0.5vw, 1.4375rem);
}

/* CONTENT (HIDDEN BY DEFAULT) */
.journey-boxes.ai-features-box .box .content {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(30px); /* small slide effect */
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 30px 20px;
  border-radius: 7px;
}

/* HOVER EFFECT */
.journey-boxes.ai-features-box .box:hover .front-head {
  opacity: 0;
  transform: translateY(20px);
}

.journey-boxes.ai-features-box .box:hover .content {
  opacity: 1;
  transform: translateY(0);
}

.journey-boxes.ai-features-box .box:hover p{
  color: #000;
}

.journey-boxes.human-soul-ai .box{
  border-radius: 22px;
}

/* CARD BASE */
.journey-boxes.human-soul-ai .box.flip-card {
  position: relative;
  height: 300px; /* important for hover area */
}


@media (min-width: 1400px) and (max-width: 1599px) {
    /* future ai stats */

.future-ai-stats-game .box{
  padding: 25px 20px;
}

.future-ai-stats-game .box .icon svg{
  height: 70px;
  width: auto;
}

.journey-boxes.ai-features-box .box{
  min-height: 310px;
}
}



@media (min-width: 1200px) and (max-width: 1399px) {
/* future ai stats */

.future-ai-stats-game .box{
  padding: 25px 20px;
}

.future-ai-stats-game .box .icon svg{
  height: 70px;
  width: auto;
}

.journey-boxes.ai-features-box .box{
  min-height: 300px;
}
}

@media (min-width: 992px) and (max-width: 1199px) {
/* future ai stats */

.future-ai-stats-game .box{
  padding: 25px 20px;
}

.future-ai-stats-game .box .icon svg{
  height: 70px;
  width: auto;
}

.journey-boxes.ai-features-box .box{
  min-height: 300px;
}
}

@media (min-width: 768px) and (max-width: 991px) {
/* future ai stats */

.future-ai-stats-game .box{
  padding: 20px 15px;
}

.future-ai-stats-game .box .icon svg{
  height: 70px;
  width: auto;
}

.journey-boxes.ai-features-box .box{
  min-height: 300px;
  background-image: none !important;
}

.journey-boxes.ai-features-box .box .front-head{
  opacity: 0;
}

.journey-boxes.ai-features-box .box .content{
  opacity: 1;
  transform: none;
}
}


@media (min-width: 0px) and (max-width: 767px) {
    /* future ai stats */

.future-ai-stats-game .box{
  padding: 20px 15px;
  max-width: 60%;
  margin: 0 auto;
}

.future-ai-stats-game .box .icon svg{
  height: 65px;
  width: auto;
}

.future-ai-stats-game .box.box-spacing {
    margin-top: 0px;
}

.journey-boxes.ai-features-box .box{
  min-height: 300px;
  background-image: none !important;
}

.journey-boxes.ai-features-box .box .front-head{
  opacity: 0;
}

.journey-boxes.ai-features-box .box .content{
  opacity: 1;
  transform: none;
}
}