/* Sağlık: Her şey kutu modeliyle çalışsın */
.crypto-custom-section * {
  box-sizing: border-box;
}

/* Ana bölüm */
.crypto-landing {
  background: #0f1e12;
  border-radius: 24px;
  padding: 40px 30px;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

/* Swiper konteyner */
.crypto-custom-section .crypto-mySwiper {
  max-width: 420px;
  margin: 0 auto;
}

/* Her slide */
.crypto-custom-section .swiper-slide {
  display: flex;
  justify-content: center;
}

/* Kart görseli */
.crypto-custom-section .swiper-slide img {
  width: 320px;
  border-radius: 16px;
  transform: scale(1);
  transition: transform 0.3s ease;
}

/* Aktif slide görseli */
.crypto-custom-section .swiper-slide-active img {
  transform: scale(1.08);
}


/* Detay kutusu */
.crypto-custom-section .crypto-details {
  border: 1px solid rgba( 0,255,130,0.08);
  border-radius: 16px;
  padding: 24px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Rozet */
.crypto-custom-section .crypto-details::before {
  content: attr(data-badge);
  position: absolute;
  top: -14px;
  left: 20px;
  background: #00ff80;
  color: #0f1e12;
  font-weight: bold;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 8px;
}

/* Buton */
.crypto-custom-section .crypto-btn-rounded {
  background-color: #00ff80;
  color: #0f1e12;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 999px;
  display: inline-block;
  transition: all 0.25s ease;
  width: auto;
  text-align: center;
  margin: 0 auto;
}

/* Mobil uyum */
@media screen and (max-width: 768px) {
  .crypto-custom-section .crypto-details {
    text-align: center;
    padding: 20px;
  }

  .crypto-custom-section .crypto-details::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .crypto-custom-section .crypto-btn-rounded {
    display: block;
    margin: 0 auto;
  }

  .crypto-landing {
    padding: 15px 30px 0;
  }
}
