.game-display {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  border: 1px solid #eaeaea;
}
.game-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.game-meta ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.game-meta ul li {
  display: inline;
  margin-right: 15px;
  color: #555;
  font-size: 14px;
}
.game-controls {
  text-align: center;
  margin-top: 30px;
}
.game-controls .btn {
  margin: 10px;
  padding: 12px 25px;
  font-size: 18px;
  background-color: #ff4a4a;
  color: #fff;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.game-controls .btn:hover {
  background-color: #e03e3e;
}
.related-games-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}
.related-game {
  text-align: center;
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.related-game:hover {
  transform: translateY(-5px);
}
.related-game img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
  border-radius: 5px;
}
.related-game h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}
.related-game a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  background-color: #007bff;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.related-game a:hover {
  background-color: #ffffff;
  color: #333;
}
.load-more {
  margin: 20px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #fbfbfb;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.load-more:hover {
  background-color: #ffffff;
}
.w3n-float-container {
  position: fixed;
  top: 50vh;
  right: 20px;
  transform: translateY(-50%);
  z-index: 999999;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: right 0.3s;
  animation: 3s ease-in-out 0s infinite normal none running swing;
}
.float-wrapper {
  position: relative;
  display: block;
  text-decoration: none;
}
.w3n-toggle-btn {
  position: absolute;
  top: -13px;
  right: -19px;
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  border-radius: 50%;
}
.float-icon {
  width: 65px;
  height: 65px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 10px;
  position: relative;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.w3n-status-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  color: rgb(255, 255, 255);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
  z-index: 1;
  text-transform: uppercase;
  line-height: 1.2;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  pointer-events: none;
  background: rgb(255, 63, 92);
  padding: 2px 6px;
  border-radius: 4px;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  transition: 0.2s;
  white-space: nowrap;
}
.smart-tooltip {
  left: -250px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.smart-tooltip {
  position: absolute;
  backdrop-filter: blur(10px);
  color: rgb(255, 255, 255);
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 15px;
  width: max-content;
  max-width: 220px;
  background: rgba(22, 24, 28, 0.4);
  padding: 12px;
  border-radius: 8px;
  transition: 0.3s;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.1);
  border-image: initial;
}
