@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html,
body {
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  height: 100%;
}

@media (max-width:899px) {

  html,
  body {
    overflow-x: hidden;
  }
  .body-scroll-lock {
  overflow: hidden;
  touch-action: none;
}
}

@media (min-width:899px) {
  .profile-mobile-menu__side-menu {
    display: none;
  }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #151211;
  /* isteğe bağlı: arka plan rengi */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#preloader img {
  max-width: 300px;
  height: auto;
}

body {

  font-family: Lato, sans-serif;
  background: #151414;
  margin: 0;
  padding: 0;
  color: #fff;
}

body:has(.vip-wrapper),
body:has(.main-casino) {
  background: #151414;
}

.text-underline {
  text-decoration: underline;
}

/* HEADER */
.frame-start {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.frame-end {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.animate .frame-start {
  opacity: 0;
}

.animate .frame-end {
  opacity: 1;
}

header {
  position: relative;
}

header nav {
  padding: 15px 30px 15px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

header nav .logo {
  flex: 1;
}

header nav .menu-area {
  flex: 0;
}

header nav .menu-area ul {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}

header nav .menu-area ul li {
  color: #fff;
  list-style: none;
  height: 35px;
  padding-right: 0;
}

header nav .menu-area ul li a {
  display: flex;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-shadow: unset;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  line-height: unset;
  height: 100%;
  position: relative;
  white-space: nowrap;
  align-items: center;
}

header nav .menu-area ul li a:hover {
  border: 1px solid #fbb203 !important;
  border-radius: 5px;
}

header nav .menu-area ul li a.active {
  border: 1px solid #fbb203 !important;
  border-radius: 5px;
}

header nav .amount-btn {
  color: #000;
  background: #fff;
  border-radius: 5px;
  height: 35px;
  padding: 0 20px;
}

header nav .deposit-button {
  background: #33ae33;
  border-radius: 5px;
  height: 35px;
  padding: 0 20px;
}

.auth-area {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.auth-area .btn.btn-signup {
  color: #fff;
  background: #33ae33 !important;
  border: 2px solid #33ae33 !important;
  padding: 8px 30px !important;
  font-size: 13px;
  font-weight: 500;
  transition: 0.4s ease-out;
}


.auth-area .btn.btn-signin {
  color: #000;
  padding: 8px 30px !important;
  background: #fff !important;
  border: 2px solid #fff;
  font-size: 13px;
  font-weight: 500;
  transition: 0.4s ease-out;
}

.auth-area .btn.btn-signin:hover,
.auth-area .btn.btn-signup:hover {
  background: #fbb203 !important;
  color: #000;
  transition: 0.4s ease-out;
}

.auth-area i.toggle-password {
  position: absolute;
  right: 20px;
  top: 44%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #acacac;
}

/*dropdown*/
.auth-area {
  position: relative;
  display: inline-block;
}

.auth-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #1b1817;
  padding: 0 0 15px 0;
  border-radius: 8px;

  width: 370px;
  z-index: 10;
  max-height: 0;
  /* başta kapalı */
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.auth-dropdown.open {
  max-height: 500px;
  /* İçeriğin sığacağı kadar, test edip artırabilirsin */
  opacity: 1;
}

.auth-tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 1px solid #33ae33;
}

.auth-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

.auth-tab.active {
  background: #33ae33;
  color: #fff;
  border-radius: 5px;
}

.auth-content {
  padding: 0 15px;
}

.auth-content input {
  width: 100%;
  padding: 8px;
  margin-bottom: 8px;
  border-radius: 4px;
  border: none;
  background: #fff;
  color: #000;
}

.auth-content input[type="checkbox"] {
  background: transparent;
  border: 1px solid #acacac;
  width: 20px;
  height: 20px;
  accent-color: #fbb203;
  /* modern tarayıcılarda onay rengi */
}

.auth-content input[type="checkbox"]:checked {
  content: "+";
  background-color: #fbb203;
  /* modern tarayıcılarda onay rengi */
  color: #000;
}

.auth-content label {
  color: #acacac;
}

.auth-content a {
  color: #acacac;
  text-decoration: none;
}

.auth-content .text-center {
  display: flex;
  justify-content: center;
}

.auth-content .btn {
  width: max-content;
  margin: 0 auto;
  background: #fff;
  color: #000;
  border: none;
  padding: 10px 35px;
  border-radius: 4px;
  font-weight: normal;
  display: flex;
  justify-content: center;
}

#authed-user-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  color: #fff;
  width: 370px;
}

#authed-user-dropdown .auth-user-header {
  background: #FDB203;
  border-radius: 5px 5px 0 0;
  text-align: center;
  color: #000;
  padding: 10px 15px;
}

#authed-user-dropdown .auth-user-footer {
  display: flex;
  justify-content: space-between;
  background: #FDB203;
  border-radius: 0 0 5px 5px;
  text-align: center;
  color: #000;
  padding: 7px;
}

#authed-user-dropdown ul {
  text-align: center;
  margin: 0;
}

#authed-user-dropdown ul li .res-dd span {
  padding: 5px 20px;
  border-radius: 5px;
  background: #33ae33;
}

#authed-user-dropdown ul li .res-dd.defect {
  color: #acacac;
}

#authed-user-dropdown .line-dd:first-of-type,
#authed-user-dropdown .line-dd:last-of-type {
  margin: 10px 10px 10px 10px;
}

#authed-user-dropdown .line-dd {
  font-weight: 700;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  margin: 20px 10px 20px 10px;
}

@media (max-width: 1399px) {
  header nav {
    flex-wrap: wrap;
  }

  .auth-area,
  .authed-user-area {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    display: flex;
  }

  .auth-dropdown,.authed-user-dropdown {
    right: 35%!important;
  }

  .menu-area {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}

@media (max-width: 899px) {
  .menu-area {
    display: none;
  }

  header nav {
    flex-wrap: nowrap;
  }

  header nav .logo svg {
    height: 30px;
  }

  .no-mobile {
    display: none;
  }

  .auth-area,
  .authed-user-area {
    width: 100%;
    justify-content: end;
    align-items: center;
    margin-top: 0;
    display: flex;
    gap: 0.5rem !important;
  }

  .authed-user-dropdown {
    display: none !important;
  }

  .auth-dropdown {
    display: none !important;
  }

  .desktop-btn {
    display: none !important;
  }

  .modal-login {
    padding: 0 15px;
  }

  #mobileLoginModal .modal-content {
    height: 100% !important;
  }

  .modal-login input {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    border-radius: 4px;
    border: none;
    background: #fff;
    color: #000;
  }

  .modal-login label {
    color: #acacac;
  }

  .modal-login a {
    color: #fdd203;
    text-decoration: underline;
  }

  .modal-login .btn {
    width: max-content;
    margin: 0 auto;
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 35px;
    border-radius: 4px;
    font-weight: normal;
    display: flex;
    justify-content: center;
  }

  .modal-signup {
    padding: 0 15px;
  }

  #mobileSignupModal .modal-content {
    height: 100% !important;
  }

  #mobileSignupModal,
  #mobileLoginModal {
    --bs-modal-margin: 0.5rem !important;
  }

  .modal-signup input {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    border-radius: 4px;
    border: none;
    background: #fff;
    color: #000;
  }

  .modal-signup label {
    color: #acacac;
  }

  .modal-signup a {
    color: #acacac;
    text-decoration: none;
  }

  .modal-signup .btn {
    width: max-content;
    margin: 0 auto;
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 35px;
    border-radius: 4px;
    font-weight: normal;
    display: flex;
    justify-content: center;
  }

  .modal-signup input[type="checkbox"] {
    background: transparent;
    border: 1px solid #acacac;
    width: 20px;
    height: 20px;
    accent-color: #fbb203;
    /* modern tarayıcılarda onay rengi */
  }

  .modal-signup input[type="checkbox"]:checked {
    content: "+";
    background-color: #fbb203;
    /* modern tarayıcılarda onay rengi */
    color: #000;
  }

  /* Arka plan karartma */
  .profile-mobile-menu__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
  }

  /* Sağ menü */
  .profile-mobile-menu__side-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 75%;
    max-width: 400px;
    background-color: #1b1a18;
    color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    padding: 20px;
    overflow-y: auto;
  }
.profile-mobile-menu__side-menu.active {
  transform: translateX(0%);
}
  .gold {
    color: #fbb203;
  }

  .green {
    color: #3aa438;
  }


  .profile-mobile-menu__side-menu.active {
    transform: translateX(0);
  }

  .profile-mobile-menu__side-menu h2 {
    margin-top: 0;
  }

  .profile-mobile-menu__close-btn {
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
  }

  .profile-mobile-menu__side-menu h3 {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .profile-mobile-menu__side-menu h4 {
    font-size: 14px;
  }

  .pm-mobile {
    display: flex;
    flex-direction: column;
    font-size: 22px;
    gap: 10px;
    margin-top: 5px;
  }

  .pm-hr {
    background: #fff;
  }

  .pm-message {
    gap: 10px;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
  }

  .pm-mobile a {
    display: flex;
    justify-content: space-between;
    color: #fff;
    text-decoration: none;
    font-size:16px;
  }

  .pm-mobile i {
    color: #2ba92e;
  }

  .pm-mobile .fa-solid.fa-right-from-bracket {
    background: #b98304;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 3px 0 0 7px;
    position: relative;
    left: 5px;
  }

  .message-bottom {
    background: #000;
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 15px;
    border-top: 1px solid #fff;
  }

  header nav {
    padding: 15px 15px 5px 10px;
  }

  header nav .deposit-button,
  header nav .amount-btn {
    font-size: 12px;
  }

  .pm-underline {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .pm-item {
    border-bottom: 2px solid #000;
    padding: 0;
  }

  .pm-item span {
    font-size: 14px;
  }
}

@media (min-width: 900px) {
  .mobile-btn {
    display: none !important;
  }

  #mobileLoginModal {
    display: none !important;
  }
}



/* HEADER */
/* MAIN SLIDER */
.glide {
  padding: 0 30px 0 30px;
}

.glide__slide {
  position: relative;
}

a.btn-slider {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  text-decoration: none;
  padding: 10px 30px;
  background: #fbb203;
  color: #000;
  border-radius: 5px;
  width: 120px;
  height: 40px;
}

/* MAIN SLIDER */
/* banner under */
.slide-under-banner {
  color: white;
  background-color: #242223;
  margin: 10px 15px -10px 15px;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
  border-left: 3px solid #fbb203;
  border-right: 3px solid #fbb203;
  border-bottom: 1px solid #333;
  border-top: 1px solid #333;
}

.slide-under-banner span {
  color: #000;
  margin-left: 5px;
  font-size: 17px;
  background-color: #fbb203;
  border-radius: 14px;
  padding: 2px 10px;
  font-weight: 700;
}

@media (max-width:768px) {
  .glide.mx-auto.my-10.glide--ltr.glide--carousel.glide--swipeable.my-10 {
    margin-block: 15px;
  }

  .glide.mx-auto.my-10.glide--ltr.glide--carousel.glide--swipeable .glide__slide img {
    height: 200px;
  }

  .glide.mx-auto.my-10.glide--ltr.glide--carousel.glide--swipeable .glide__arrows,
  .glide.mx-auto.my-10.glide--ltr.glide--carousel.glide--swipeable .glide__bullets {
    display: none !important;
  }

  .glide.mx-auto.my-10.glide--ltr.glide--carousel.glide--swipeable .glide__slide a.btn-slider {
    top: 70%;
  }
}

/* banner under */
/* widgets */

.widgets-area.row img {
  max-height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.widgets-area.row .col-6,
.widgets-area.row .col-lg-3 {
  position: relative;
}

.widgets-area.row .over-text {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 15px;
  left: 33%;
  right: 33%;
  width: max-content;
  text-align: center;
  border-radius: 17px;
  padding: 5px 40px 5px 15px;
}

.widgets-area.row .over-text:after {
  content: "➔";
  position: absolute;
  width: 20px;
  height: 20px;
  right: 15px;
  top: 4px;
}

.widgets-area.row .over-text:hover {
  background: #000000e6;
}

.widgets-area.row .over-text:hover:after {
  right: 10px;
  color: #fbb203;
}

@media (max-width:899px) {
    .slide-under-banner{
        margin: 10px 15px -25px 15px!important;
    }
  .widgets-area.row.mt-5 {
    padding: 0 20px;
    margin-top:0!important;
  }

  .widgets-area.row .over-text {
    font-size: 14px;
    transform: translate(-50%, -50%);
    left: 50%;
    right: 0;
    bottom: 0;
  }

  .widgets-area.row img {
    object-fit: contain;
    height: 180px;
  }

  .widgets-area .col-6:first-of-type {
    /* Örneğin sabit yükseklik */
    overflow: hidden;
    position: relative;
  }

  .widgets-area .col-6:first-of-type img {
    object-fit: contain;
    scale: 2;
    transform-origin: 15%;

  }
}

/* widgets */
/* last winners*/
.winners-glide {
  width: 100%;
  padding: 0 15px;
  border-radius: 10px;
  background-color: #262425;
}

.winners-glide .glide__slide {
  padding: 20px 30px;
}

.winners-glide .glide__slide:before {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 2px;
  height: 80%;
  background-color: #5b5659;
  border-radius: 3px;
}

.winners-glide .glide__slide .col-3 img {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  object-fit: cover;
  max-width: max-content;
}

.name-gl {
  font-size: 15px;
}

.gain-amount {
  color: #fbb203;
  font-size: 22px;
}

.winners-glide .glide__slide a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: #fff;
}

.winners-glide .glide__slide a:hover {
  text-decoration: underline;
}

.winners-glide .glide__slide i {
  color: #fbb203;
}

.winners-glide .glide__slide a .icon {
  text-decoration: none;
  /* ikonu etkileme */
}

.winners-glide .glide__slide a:hover .icon {
  text-decoration: none;
  /* hover'da da underline olmasın */
}


/* last winners*/
/* games-placement  */
.games-placement {
  height: auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-gap: 30px;
  background-color: #1c1a19;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.games-placement.main-casino {

  grid-template-columns: auto 1fr;
  grid-gap: 30px;

}

.game-title {

  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 25px;
  margin-bottom: 0;
  border-radius: 10px;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;

  background-size: cover;
}

.game-title.popular {
  background-image: url(/frontend/images/slot/kop.png);
  /* background: url(/frontend/images/slot/kop1.png) left top 50% no-repeat; */
}

.game-title.casino {
  background-image: url(/frontend/images/slot/cas.png);
  /* background: url(/frontend/images/slot/cas1.png) left top 50% no-repeat; */
}

.game-title p {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.game-title .title-link {
  color: #000;
  font-size: 10px;
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  padding: 7px 10px;
  margin: 0 auto;
  min-width: 110px;
  min-height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}


.games {
  grid-template-columns: repeat(6, 1fr [item]);
  grid-gap: 10px;
  display: grid;
  width: 100%;
}

.games img {
  clip-path: inset(0 0 round 10px);
  margin: 0;
}

.item {
  position: relative;
  overflow: hidden;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  /* zoom için geçiş */
}

.item:hover img {
  transform: scale(1.15);
  /* resme zoom efekti */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  padding: 10px;
  text-align: center;
}

.item:hover .overlay {
  opacity: 1;
}

/* Başlık */
.overlay h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Butonlar */
.overlay .buttons {
  display: flex;
  gap: 10px;
}

.overlay .buttons a {
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}

/* Oyna Butonu */
.play-btn {
  background-color: #28a745;
  color: white;
}

/* Demo Butonu */
.demo-btn {
  background-color: #ffc107;
  color: black;
}

.play-btn:hover {
  background-color: #218838;
}

.demo-btn:hover {
  background-color: #e0a800;
}

@media (max-width:899px) {
  .games-placement {
    margin: 20px;
    grid-template-columns: auto;
    background: #1b1a18;
  }
 .games-placement .item {
    height: 110px;
    overflow: hidden;
  }
  .games-placement .mobile-title {
    color: #fff;
    font-size: 16px;
    margin: 2px 0 -5px 0;
    text-align: center;
  }
  .games-placement .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .games-placement .game-title.popular,
  .games-placement .game-title.casino {
    display: none;
  }

.games-placement .games {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 110px; /* her satır 110px olacak */
    padding: 10px;
  }
}

/* games-placement  */

/*footer*/
footer {
  margin-top: 20px;
  color: #fff;
  background: #1c1a19;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

footer .footer-header {
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  font-size: 16px;
  color: #ae926c;
  background: #151414;
}

footer .text-1 {
  color: #fbb204;
}

footer .footer-menu-section {
  margin: 30px 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0 40px;
}

.footer-menu-section label {
  color: #8493a1;
}

.footer-menu-section .email-div {
  color: #fbb203;
}

.fmenu-title {
  color: yellow;
  border-bottom: 1px solid yellow;
  padding-bottom: 20px;
}

.right-foot {
  display: flex;
  flex-wrap: wrap;
  flex-basis: auto;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  font-size: 1.6rem;
}

.license {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.container-foot {
  max-width: 1390px;
}

.spons-footer,
.payment-footer {
  display: flex;
  gap: 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 20px 0;
}

.spons-footer {
  max-width: initial;
  padding: initial;
}

.payment-item img {
  filter: invert(1);
  width: 100%;
  height: 100%;
  max-height: 35px;
  max-width: 100px;
}

.spons-item img {
  filter: invert(62%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(100%);
}


.spons-item {
  -webkit-box-flex: 0;
  flex: 0 0 65px;
  width: 100%;
  height: 100%;
}

.placeholder {
  visibility: hidden;
  /* Görünmez ama yer kaplar */
}

@media (max-width: 899px) {

  .spons-footer,
  .payment-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* Tüm öğeler sola yaslı kalsın */
    gap: 10px;
    padding: 20px;
  }

  .spons-item,
  .payment-item {
    flex: 0 0 calc((100% - 4 * 10px) / 5);
    display: flex;
    justify-content: center;
  }



  .payment-footer .payment-item:nth-last-child(2):nth-child(5n+1),
  .payment-footer .payment-item:nth-last-child(1):nth-child(5n+2) {
    margin-inline: auto;
  }


  /* Son 4 öğe varsa */
  .spons-footer .spons-item:nth-last-child(4):nth-child(5n+1),
  .spons-footer .spons-item:nth-last-child(3):nth-child(5n+2),
  .spons-footer .spons-item:nth-last-child(2):nth-child(5n+3),
  .spons-footer .spons-item:nth-last-child(1):nth-child(5n+4) {
    margin-inline: auto;
  }

  .payment-footer {
    order: 3;
  }

  .hr-class {
    order: 2;
  }

  .spons-footer {
    order: 1;
  }

  .spons-item img,
  .payment-item img {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }
}


/* Varsayılan olarak gizli */
.mobile-bottom-nav {
  display: none;
}

/* Sadece mobilde görünür */
@media (max-width: 899px) {
  footer {
    margin-bottom: 60px;
  }

  footer .footer-menu-section {
    display: none;
  }

  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #212121;
    border-top: 1px solid #333;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 999;
  }

  .mobile-bottom-nav .nav-item {
    flex: 1;
    text-align: center;
    color: #eee;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-bottom-nav .nav-item i {
    font-size: 18px;
    margin-bottom: 4px;
  }
}

/*footer*/
/*CASINO PAGE*/
.filters-section {
  justify-content: center;
  align-items: baseline;
}

.filters-section.casino {
  padding: 0 30px;
  justify-content: space-between;
  align-items: baseline;
}

.swiper {
  overflow: visible;
}

.swiper-wrapper {
  display: flex;
}

.swiper a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: white;
  height: 100px;
  /* yatayda biraz boşluk */
  white-space: normal;
  /* satır kayabilir */
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  overflow: hidden;
  width: auto;
  line-height: 1.2;
}

.swiper a span {
  display: block;
  margin-bottom: 10px;
  height: 40px;
  /* sabit ikon yüksekliği tanımla */
}

.swiper a span svg {
  height: 100%;
  width: auto;
  display: block;
  margin: 0 auto;
  vertical-align: top;
  /* 🔥 svg'yi yukarı iten en kritik kural */
}

.swiper-slide {
  white-space: nowrap;
  flex-shrink: 0;
  /* 👈 Daralmayı engelle */
  width: auto !important;
}

.swiper-slide:first-child {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.swiper a:hover {
  color: #fbb203;

}

.swiper a:hover svg {
  color: #fbb203;
}

.buttons-sect .btn-group,
.buttons-sect input {
  height: 40px;
}

.buttons-sect button {
  font-size: 14px;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: max-content;
  padding: 10px;
}

.buttons-sect svg {
  margin: 0 5px 0 0;
}

/*CASINO PAGE*/
/*VIP*/


.vip-wrapper {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1390px;

}

.vip-wrapper .title-area {
  font-size: 14px;
  padding: 15px 20px;
  border-radius: 14px;
  border: 2px solid #111;
  margin-bottom: 40px;
  background: #1c1a19;
}

.vip-wrapper .title-area h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FDB203;
}

.vip-wrapper .title-area p {
  margin-bottom: 14px;
  text-align: justify;
}

.vip-wrapper .title-area .div-badge {
  margin: auto;
  display: table;
  background: rgba(0, 0, 0, .8);
  padding: 4px 12px;
  border-radius: 21px;
  line-height: 22px;
  color: #909090;
  margin-bottom: -30px;
  text-align: center;
}

.item-t {
  background-image: url(/frontend/images/treasure.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  position: relative;
  padding: 15px 74px 0 235px;
  grid-template-rows: 100px 35px 110px 30px 50px;
  background-color: #151211;
  margin-bottom: 20px;
  grid-auto-columns: 1fr;
  display: flex;
  flex-direction: column;
}


.badger {
  grid-area: level;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: start;
  grid-area: level;
  padding: 0 0 70px 15px;
  margin-bottom: 35px;

}

.number-badge {
  min-width: 65px;
  height: 65px;
  background: #fdab0f;
  color: #000;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  font-weight: 700;
  margin-right: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.number-badge:before {
  position: absolute;
  content: "";
  display: block;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: url(/frontend/images/tr2.png);
  width: 43px;
  height: 15px;
  background-repeat: no-repeat;
}

.badge-text {
  max-width: 400px;
  justify-content: start;
  display: flex;
  flex-direction: column;
}

.badge-text h4 {
  justify-content: start;
  padding-left: 5px;
  display: flex;
  color: #fbb203;
  font-size: 24px;
  margin: 0;
}

.badge-text span {
  justify-content: start;
  display: flex;
  font-size: 12px;
  text-transform: none;
  margin-top: 5px;
  padding-bottom: 15px;
  text-align: left;
}

.boxes-material {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  bottom: 70px;
}

.mat-box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 16px;
  position: relative;
  padding: 30px 77px;
}

.mat-box::after {
  content: "";
  /* Bu satır şart */
  background-color: transparent;
  bottom: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 10px;
  width: 3px;
  position: absolute;
  /* Bu da gerekli olabilir */
}

.mat-box:before {
  bottom: 0;
  left: 0;
  position: absolute;
  content: "";
  display: block;
  height: 45px;
  width: 45px;
  background-size: cover !important;
  margin: 10px 5px;
}



.bronze-box {
  background: linear-gradient(180deg, #1c1a19 -32.83%, #1c1a19 59.03%, #ff690c 135.01%, #f0701b 184.91%);
}

.silver-box {
  background: linear-gradient(180deg, #1c1a19 -32.83%, #1c1a19 59.03%, #aaa 135.01%, #ccc 184.91%);
}

.gold-box {
  background: linear-gradient(180deg, #1c1a19 -32.83%, #1c1a19 59.03%, #fbb203 135.01%, #f7d004 184.91%);
}

.plat-box {
  background: linear-gradient(180deg, #1c1a19 -32.83%, #1c1a19 59.03%, #3f3dca 135.01%, #0e74e0 184.91%);
}

.dia-box {
  background: linear-gradient(180deg, #1c1a19 -32.83%, #1c1a19 59.03%, #c809d2 135.01%, #ff43ff 184.91%);
}

.bronze-box:before {
  background: url(/frontend/images/bronze.png) center center no-repeat;
}

.silver-box:before {
  background: url(/frontend/images/silver.png) center center no-repeat;
}

.gold-box:before {
  background: url(/frontend/images/gold.png) center center no-repeat;
}

.plat-box:before {
  background: url(/frontend/images/plat.png) center center no-repeat;
}

.dia-box:before {
  background: url(/frontend/images/dia.png) center center no-repeat;
}

.mat-box .textes {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 16px;
}

.mat-box .point {
  font-size: 20px;
  font-weight: bold;
}

.mat-box .title {
  text-shadow: 3px 3px 10px black;
  z-index: 1;
  font-size: 14px;
  font-weight: normal;
}

@media (max-width:1349px) {
  .mat-box {
    padding: 30px 60px;
  }
}

@media (max-width:1170px) {
  .mat-box {
    padding: 30px 50px;
  }

  .mat-box:before {
    display: none;

  }
}

@media (max-width:1091px) {
  .mat-box {
    padding: 30px 40px;
  }


}

@media (max-width:991px) {
  .vip-wrapper {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .treasure-section {
    display: contents;
  }

  .item-t {
    background-image: none;
    padding: 0;
  }

  .badge-text {
    max-width: max-content;
  }

  .badger {
    padding: 0 0 20px 15px;
    margin-bottom: 0;
  }

  .boxes-material-m {
    display: flex !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .boxes-material {
    display: none;
  }
}

.boxes-material-m {
  display: none;
}

/*VIP*/
/*BONUS*/
.bonus-page-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

@media (max-width:1199px) {
  .bonus-page-wrapper {

    grid-template-columns: repeat(4, 1fr);

  }
}

@media (max-width:991px) {
  .bonus-page-wrapper {

    grid-template-columns: repeat(3, 1fr);

  }
}

@media (max-width:889px) {
  .bonus-page-wrapper {
    margin-top: 15px;
  }
}

@media (max-width:768px) {
  .bonus-page-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:491px) {
  .bonus-page-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.bonus-overlay {
  display: contents;
  /* Grid alanını bozmasın */
}

.bonus-inner {
  display: grid;
  grid-template-rows: auto 1fr auto;
  /* başlık, içerik, butonlar */
  border: 2px solid #fbb203;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  padding: 10px;
  background-color: #1b1817;
  margin-bottom: 20px;
  min-height: 350px;
  /* İstediğiniz yüksekliği ayarlayın */
}

.bonus-overlay h2 {
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  color: #fbb203;
  padding: 10px 15px;
}

.bonus-buttons {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: grid;
  grid-template-columns: auto;
  gap: 10px;
  padding: 10px 5px;
  margin-top: auto;
}

.btn-bonus {
  font-weight: 400;
  color: #000;
  text-transform: uppercase;
  background: #fbb203;
  border-radius: 5px;
  padding: 8px 30px !important;
  font-size: 14px;
  width: 100%;
}

/*BONUS*/

/* deposit modal*/
#depositModal.modal {
  --bs-modal-footer-border-color: transparent !important;
  --bs-modal-footer-border-width: none !important;
}

#depositModal .modal-content,
#bonusModal .modal-content,
#paymentModal .modal-content,
#cryptoModal .modal-content,
#mobileLoginModal .modal-content,
#mobileSignupModal .modal-content {
  background: #151211;
}

#depositModal .modal-header,
#bonusModal .modal-header,
#paymentModal .modal-header,
#cryptoModal .modal-header,
#mobileLoginModal .modal-header,
#mobileSignupModal .modal-header {
  background: #fbb203;
  color: #000;
}

#depositModal .nav-link {
  color: #fff;
}

#depositModal .nav-link.active {
  background: transparent !important;
  color: #fff !important;
  border: none !important;
  border-bottom: 2px solid #fbb203 !important;
}

.btn-select {
  border: 1px solid;
  border-radius: 10px;
  width: max-content;
  justify-content: center;
  display: flex;
  text-align: center;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  padding: 5px 15px;
}

.btn-select.v-first {
  padding: 15px 50px;
  position: relative;
}

.v-first i {
  position: absolute;
  right: 20px;
}

/* Seçim yapılınca aktif sınıf */
.btn-select.selected {
  position: relative;
  height: 60px;
  background-size: 120px;
  background-position: center;
  background-repeat: no-repeat;
  width: 260px;
  background-color: #fff;
  border: 1px solid #acacac;
}

.btn-select.selected i {
  right: 15px;
  position: absolute;
  color: #acacac;
}

#tab1 h4 ,#tab2 h4 {
  color: #FDB203;
  font-size: 16px;
  margin-top: 20px;
  text-align: center;

}

#tab1 .col-12:first-of-type {
  border-bottom: 1px solid #fff;
  padding-bottom: 25px;
}

#tab1 .col-12 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: auto;
  margin: 0 auto;
  width: 730px;
}

#tab1 .col-12 select {
  width: max-content;
  justify-content: center;
  align-self: center;
}

#tab1 .col-6 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: auto;
  margin: 0 auto;
}

#tab1 .col-6 button {
  justify-content: center;
  align-items: center;
  display: flex;
  width: max-content;
  margin: 0px auto;
  padding: 5 15px;
}

#tab1 .col-6 select {
  width: max-content;
  justify-content: center;
  align-self: center;
}

#tab1 .col-6 .limit-section,#tab2 .col-6 .limit-section {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  margin: 10px auto;
}
#tab2 .col-6 .limit-section {
padding: 0 90px;
}
#miktarInputAlani {
  width: max-content;
  margin: 0 auto;

}

#miktarInputAlani input {
  border-radius: 25px;
  border: 2px solid #acacac;
}

.payment-desc {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 25px;
}

#miktarInput {
  text-align: center;
}

.payment-desc i {
  border-radius: 50%;
  border: 2px solid #fff;
  width: 27px;
  height: 27px;
  position: relative;
  padding: -16px;
  font-weight: bold;
  font-style: normal;
  padding: 0;
  transform: translateY(25%);

}

.payment-desc ul {
  width: 200px;
  font-size: 12px;
  text-align: left;
  list-style: disc;
  margin: 15px 0 5px 0;
  line-height: 12px;
  padding-left: 1.5rem;
}

#bonusModal .bonus-select {
  display: flex;
}

#bonusModal .bonus-select img {
  max-width: 150px;
}
#paymentModalLabel {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  font-size: 16px !important;
}
#paymentModal .payment-method {
  display: flex;
  gap: 20px;
  padding: 15px 60px;
  border-bottom: 1px solid #fff;
}

#paymentModal .payment-method img {
  padding: 12px;
}

#paymentModal .payment-method .payment-logo {
  max-width: 150px;
  background: #fff;
  border-radius: 10px;
}

#paymentModal .payment-method .text span {
  color: #fbb203;
}

#cryptoModal .modal-body {
  margin: auto;
  padding: 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#cryptoModal .modal-body img {
  margin: 20px auto;
}

#cryptoModal .input-area-amount {
  position: relative;
  display: flex;
  background: transparent;
  width: 100%;
}

#cryptoModal .input-area-amount .form-control {
  background: transparent;
  color: #fff;
  border-bottom: 1px solid #acacac;
  border: none;
  border-bottom-width: medium;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  border-bottom: 1px solid #acacac;
}

#cryptoModal .input-area-amount span {
  position: absolute;
  right: 15px;
  font-size: 20px;
}

#cryptoModal .amount-row {
  width: 100%;
}

#cryptoModal .copyable-input {
  display: flex;
  position: relative;
}

#cryptoModal .crypto-area .form-control {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  font-size: 16px;
}

#cryptoModal .copyable-input span {
  color: #fff;
  position: absolute;
  color: #000;
  right: 0px;
  font-size: 20px;
  top: 0;
  background: #fdd203;
  padding: 9px 20px;
  border-radius: 10px;
}

.plain-text {
  line-height: 18px;
  font-weight: bold;
  font-size: 15px;

}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.sl-text {
  font-size: 12px;
  color: #8493a1;

}

.copyright {
  color: #fff;
  font-size: 12px;
}

.sl-text-mb {
  display: none;

}

.copyright-mb {

  display: none;
}

.mobile-endpoint {
  display: none;
}

@media (max-width:899px) {
    .btn-select.selected {

  height: 50px;
  width: 250px;
}
#miktarInputAlani{

  width: 250px;
}
    .btn-select {
  font-size:12px;
}
  .widgets-area.row.mt-5 {
    margin-top: 1.5rem !important;
  }

  .last-winners {
    padding: 0 20px;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .mobile-endpoint {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
  }

  .mobile-endpoint .cr-area {
    display: flex;
    flex-direction: column;
    padding: 30px;
    text-align: center;
    gap: 20px;
  }

  .sl-text-mb {
    display: block !important;
    color: #8493a1;
    font-size: 12px;
  }

  .copyright-mb {
    color: #fff;
    font-size: 12px;
    display: block !important;
  }
}