/* ----------- ΒΑΣΙΚΟ LAYOUT ----------- */
.btn-imgs-mobile{
    display: none;
}
.btn-imgs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* επιτρέπει σπάσιμο */
  padding: 0px;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 0;
  min-height: 80vh;
}

/* ----------- Κάθε παιδί div ----------- */
.btn-imgs > div {
  flex: 1 1 300px; /* responsive συμπεριφορά */
  text-align: center;
}

/* ----------- ΠΑΙΚΤΕΣ ----------- */
.player {
  width: 100%;
  max-width: 650px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
 transform: scale(1.5);
}

#player-left {
  margin-left: 25%; /* μετακινείται δεξιά */
}

#player-right {
  margin-left: -25%; /* μετακινείται αριστερά */
}


/* ----------- PROMO TEXT ----------- */
.text-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto 60px;
}





.button:hover {
  background-color: #cc002a;
}

/* ----------- ΓΕΝΙΚΕΣ ΕΙΚΟΝΕΣ ----------- */
img {
  vertical-align: top;
  border: none;
  padding: 0;
  margin: 0;
  display: block;
}

/* Επόμενο section */
.center-wrapper {
  margin-top: -150px;
  padding-top: 0;
  text-align: center;
}

.button-container {
  margin: 0 auto;
}


/* ----------- RESPONSIVE BREAKPOINTS ----------- */

@media (max-width: 1024px) {

.btn-imgs-desktop{
    display: none;
}

  .btn-imgs-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-top: 100px;
  }

  .btn-imgs-mobile .text-content {
    text-align: center;
    margin-bottom: 20px;
  }

  .btn-imgs-mobile .players-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
  }

  .btn-imgs-mobile .img1,
  .btn-imgs-mobile .img2 {
    flex: 1 1 45%;
    max-width: 50%;
  }

  .btn-imgs-mobile .player {
    width: 100%;
    height: auto;
     transform: scale(1.2);
    
  }
  .center-wrapper {
  margin-top: 0px;
  padding-top: 0;
  text-align: center;
}


}

@media (max-width: 600px) {
     .btn-imgs-mobile .player {
   
    scale: 1.5!important;
  }


 .btn-imgs-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-top: 10px;
    
  }

  .center-wrapper {
  margin-top: 0px;
  padding-top: 0;
  text-align: center;
}

}









