.slider-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.slider-btn {
  background: #111;
  color: #fff;
  border: none;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  z-index: 1;
}

#oyunSlider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 10px;
}

#oyunSlider::-webkit-scrollbar {
  display: none; /* scrollbar gizle */
}
.slider-container .logo-container {
    background: #030c11a8;
    border: 2px solid #1c343f !important;
    border-radius:30px;
}
.adenoyun {
  flex: 0 0 auto;
  width: 120px;
  text-align: center;
}

.adenoyun img {
  width: 100%;
  border-radius: 10px;
}

.game-title {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  color: #fff;
}

* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    .slider-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      width: 100%;
      overflow: hidden;
    }

    .anasayfagame {
      display: flex;
      gap: 15px;
      overflow: hidden;
      scroll-behavior: smooth;
      width: 100%;
      padding: 10px 0;
    }

    .adenoyun {
      flex: 0 0 auto;
      width: 250px;
      aspect-ratio: 16 / 9;
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      transition: transform 0.3s ease;
    }

    .adenoyun a {
      display: block;
      width: 100%;
      height: 80%;
      text-decoration: none;
      color: white;
      position: relative;
    }

    .adenoyun img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 12px;
    }

    .game-title {
      position: absolute;
      bottom: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.6);
      padding: 8px;
      font-weight: bold;
      font-size: 0.95rem;
      text-align: center;
    }

    .adenoyun:hover {
      transform: scale(1.05);
    }

    .slider-btn {
      background-color: rgba(0, 0, 0, 0.6);
      color: white;
      border: none;
      font-size: 2rem;
      cursor: pointer;
      padding: 8px 14px;
      border-radius: 50%;
      z-index: 10;
      transition: background 0.3s;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
    }

    .slider-btn:hover {
      background-color: rgba(255, 255, 255, 0.2);
    }

    .left-btn {
      left: 5px;
    }

    .right-btn {
      right: 5px;
    }

    @media (max-width: 600px) {
      .adenoyun {
        width: 180px;
      }
      .slider-btn {
        font-size: 1.5rem;
        padding: 6px 10px;
      }
    }



.floating-social-box {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 30px;
  }

  .floating-social-box a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .floating-social-box a:hover {
    background-color: #444;
    transform: scale(1.1);
  }

  .floating-social-close {
    background-color: #000 !important;
    font-size: 18px;
  }

  /* Mobilde gizle */
  @media screen and (max-width: 768px) {
    .floating-social-box {
      display: none !important;
    }
  }



  .floating-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    color: #fff;
    font-weight: bold;
    padding: 10px 40px 10px 10px;
    z-index: 9999;
    overflow: hidden;
    box-sizing: border-box;
    font-size: 14px;
  }

  .floating-banner span {
    display: inline-block;
    white-space: nowrap;
    animation: scrollText 15s linear infinite;
    animation-play-state: running;
  }

  .floating-banner:hover span {
    animation-play-state: paused;
  }

  @keyframes scrollText {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
  }

  .floating-banner a {
    color: #00ffff;
    text-decoration: underline;
  }

  .close-banner {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
  }

  .close-banner:hover {
    color: #ccc;
  }

  @media (max-width: 600px) {
    .floating-banner {
      font-size: 12px;
      /* padding: 8px 35px 8px 8px; */
    }

    .close-banner {
      font-size: 18px;
      top: 6px;
      right: 8px;
    }
  }


.menu-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 0;
  background-color: transparent; /* Beyaz arka planı kaldırdık */
  box-sizing: border-box;
}

/* Masaüstü menüsü */
.desktop-menu {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;          /* Sayfaya tam yayılması için genişlik 100% */
  max-width: 1200px;    /* İstersen max genişlik verebilirsin */
}

.desktop-menu .menu-item {
  cursor: pointer;
  flex: 1 1 0;          /* Esnek büyüme ve küçülme */
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease;
}

.desktop-menu .menu-item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.desktop-menu .menu-item:hover img {
  transform: scale(1.1);
}

/* Mobil menüsü */
.mobile-menu {
  display: none;
  gap: 15px;
  align-items: center;
  width: 100%;
  max-width: 600px;
  padding: 0 10px;
}

.mobile-menu .menu-item {
  cursor: pointer;
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease;
}

.mobile-menu .menu-item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.mobile-menu .menu-item:hover img {
  transform: scale(1.1);
}

/* Responsive - Mobilde mobil menüyü göster, masaüstü menüyü gizle */
@media screen and (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
  .mobile-menu {
    display: flex;
  }
}

  .logo-container {
    overflow: hidden;
    white-space: nowrap;
    background: #transparent;
    padding: 5x 0;
    user-select: none;
  }
  .logo-list {
    display: inline-flex;
    gap: 15px;
    animation: scrollLeft 120s linear infinite;
  }
  .logo-list:hover {
    animation-play-state: paused;
  }
  .logo-item {
    display: inline-block;
    vertical-align: middle;
  }
  .logo-item img {
    display: block;
    height: 35px;
    width: auto;
    filter: drop-shadow(0 0 1px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
  }
  .logo-item img:hover {
    transform: scale(1.1);
  }

  @keyframes scrollLeft {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }




.product-banner-container-bc.col-4 {
    grid-template-columns: repeat(6, 1fr) !important;
}

.product-banner-container-bc.col-4.product-banner-without-titles {
    display: flex !important;
    flex-direction: row-reverse !important;
    margin-right: auto !important;
    margin-left: auto !important;
    width: 90% !important;
}

@keyframes slideOut {
    0% {
        transform: perspective(100rem) translateX(0) rotateY(50deg);
        opacity: 1;
        z-index: 0;
    }
    50% {
        transform: perspective(100rem) translateX(50px) rotateY(50deg);
        opacity: 1;
        z-index: 1;
    }
    100% {
        transform: perspective(100rem) translateX(-0px) rotateY(0deg) scale(1.2);
        opacity: 1;
        z-index: 10; /* Ãƒâ€“ne getir */
    }
}

@keyframes slideIn {
    0% {
        transform: perspective(100rem) translateX(0) rotateY(0deg);
        opacity: 1;
        z-index: 1;
    }
    50% {
        transform: perspective(100rem) translateX(50px) rotateY(50deg);
        opacity: 1;
        z-index: 0;
    }
    100% {
        transform: perspective(200rem) translateX(0) rotateY(-40deg);
        opacity: 1;
        z-index: 0;
    }
}

.product-banner-container-bc.col-4.product-banner-without-titles img {
    transform: perspective(100rem) translateX(0) rotateY(0deg);
    opacity: 1;
    transition: transform 0.4s ease, opacity 0.6s ease, z-index 0.6s ease;
    width: 80% !important;
    border: unset !important;
    margin-bottom: 25px !important;
    margin-top: 30px !important;
    position: relative; /* Ãƒâ€“ne ÃƒÂ§Ã„Â±kmak iÃƒÂ§in gerekli */
    z-index: 1;
}

.product-banner-container-bc.col-4.product-banner-without-titles img:hover {
    animation: slideOut 0.4s forwards;
    z-index: 100; /* Hover olunca en ÃƒÂ¼stte olacak */
}

.product-banner-container-bc.col-4.product-banner-without-titles img:not(:hover) {
    animation: slideIn 0.4s forwards;
    z-index: 1; /* Geri gÃƒÂ¶nder */
}

.product-banner-container-bc.product-banner-without-titles .product-banner-info-bc {
    margin-left: -40px;
    margin-right: -40px;
}

.hm-row-bc:nth-of-type(5) {
    border: none !important;
}

.product-banner-container-bc.product-banner-without-titles .product-banner-info-bc
Specificity: (0,3,0)
 {
    height: 100%;
}

.product-banner-container-bc.product-banner-without-titles {
    overflow: visible !important; /* GÃ¶rsel dÄ±ÅŸarÄ± taÅŸabilsin */
}
.product-banner-container-bc.col-4.product-banner-without-titles img {
   transform-origin: center center;  /* BÃ¼yÃ¼me merkezden olsun */
}

