 
  .container {
    max-width: 98%;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    flex-direction: row;
    gap: 15px;
  }

  .left-sidebar {
    width: 150px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .left-sidebar .game-box {
    width: 150px;
    height: 150px;
    background-color: #151927;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

.main-game-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0; /* Aradaki boşluğu kaldırdık */
}

.game-frame.desktop-only {
  width: 100%;
  height: 645px;
  border-radius: 0; /* Yuvarlaklık kaldırıldı */
  overflow: hidden;
  background-color: #000;
}

  .game-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  .game-poster.mobile-only {
  position: relative; /* overlay konumlandırmak için */
  width: 90%;
  margin: 0 auto;
  height: 300px;
  border-radius: 10px 10px 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  display: none;
  margin-bottom:0px;
}
.overlay-shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.2), rgba(0,0,0,0));
  border-radius: 10px 10px 0px 0px;
  z-index: 1;
}

.game-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  background:#151927;
  padding: 5px;
  border-radius: 0; /* Border-radius kaldırıldı */
  margin-top: 0; /* Arada boşluk olmaması için */
  margin-bottom: 22px;
}

  .game-title {
    font-size: 18px;
    font-weight: bold;
  }

  .action-buttons {
    display: flex;
    gap: 10px;
  }

  .action-buttons button {
    background: #151927;
    border: 1px solid #151927;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    transition: 0.2s ease;
    color:#fff;
  }

  .action-buttons button:hover {
    background-color: #111;
  }

  /* Buton yazıları hover ile görünsün */
  .action-buttons button::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: ##151927;
    color: #fff;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }

  .action-buttons button:hover::after {
    opacity: 1;
  }

  .right-sidebar {
    width: 500px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .ad-space {
    width: 95%;
    height: 283px;
    background-color: #111;
    border-radius: 8px;
	padding:10px;
	margin-bottom:17px;
    text-align: center;
  }

  .similar-games {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .similar-games .game-box {
    width: 150px;
    height: 150px; 
    background-color: #fff;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    aspect-ratio: 1 / 1; /* Kare oranı için */
  }

  .game-ad-horizontal {
    width: 728px;
    height: 90px;
    background-color: #111;
    margin: 0 auto;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
  }
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none; /* buton aktif olacaksa kaldır */
  z-index:2;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.play-button {
  width: 60px;
  height: 60px;
  background-color: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: pulse 3.5s infinite ease-in-out;
}

.play-text {
  margin-top: 8px;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
}
.extra-game {
  display:block;} 

.more-games-desktop {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.more-games-desktop .row {
  display: flex;
  gap: 10px;
}

.more-games-desktop .game-box {
  flex: 1;
  height: 150px;
  background-color: #151927;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  aspect-ratio: 1 / 1;
}

.game-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
   border-radius: 8px;
}
.game-box {
  position: relative; /* Bu satır çok önemli */
  overflow: hidden;
}

.game-box span {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #ec8738;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  z-index: 2;
  font-weight: bold;
  display: flex;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.game-box:hover span {
  opacity: 1;
}
.game-about-mobil{
      display: none;
    }
    .more-games-cat {
    display: block;
  }

  @media (max-width: 1420px) {
.game-frame.desktop-only {
  height: 480px;
}
  .similar-games {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .similar-games .game-box {
    width: 100%;
  }
    .right-sidebar {
    width: 280px;
  }
  .extra-game {
    display: none !important;
  }

  }

  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
  .hidden-mobil{
    display: none !important;
  }
    .left-sidebar {
      display: none;
    }

    .game-ad-horizontal {
      display: none;
    }
     .ad-space {
      display: none;
    }
    .desktop-only {
      display: none !important;
    }

    .mobile-only {
      display: block !important;
    }
    .game-actions {
      display: none;
    }

    .right-sidebar {
      width: 100%;
    }

    .similar-games {
      grid-template-columns: repeat(3, 1fr);
      gap: 15px; /* Daha az boşluk */
    }

    .similar-games .game-box {
      width: 100%; /* hücre genişliğine uyumlu */
      height: auto;
      aspect-ratio: 1 / 1; /* Kare, yükseklik otomatik */
    }

    .game-actions {
      flex-direction: column;
      align-items: flex-start;
    }
 

  .more-games-desktop {
    display: none;
  }
  .more-games-cat {
    display: none !important;
  }
  .game-about-mobil {
   width: 84%;
   padding:3%;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  background-color: #151927;
  border-radius: 0px 0px 10px 10px;
  box-shadow: -1px 2px 2px rgb(0 0 0 / 44%);
  font-size:22px;
  font-weight:bold;
  align-items: center;
  justify-content: center;
  text-align: center;
  display: block !important;
}
        .action-buttons {
    display: flex;
    gap: 40px;
    margin-top:5px;
  }

      
  }


