body {
  display: block !important;
  width: 100% !important;
}

#game-detail-container {
  font-family: 'Poppins', sans-serif !important;
  background-color: #0f111a !important;
  color: #ffffff !important;
  padding: 0 !important;
  max-width: 1200px !important;
  margin: 0 auto 30px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

footer {
  clear: both !important;
  width: 100% !important;
  display: block !important;
}

.game-hero {
  position: relative !important;
  height: 400px !important;
  width: 100% !important;
  overflow: hidden !important;
}

.hero-bg {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.hero-overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  background: linear-gradient(to top, #0f111a 10%, rgba(15, 17, 26, 0.3) 100%) !important;
  display: flex !important;
  align-items: flex-end !important;
  padding: 40px !important;
}

.hero-text-content h1 {
  font-size: 3rem !important;
  font-weight: 800 !important;
  margin: 10px 0 0 0 !important;
  color: #ffffff !important;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8) !important;
}

.game-genre-badge {
  background-color: #00ffcc !important;
  color: #0f111a !important;
  padding: 5px 12px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  text-transform: uppercase !important;
}

/* add flex items-center justify-center gap-2 */
#live-play-btn {
  display: flex !important;
  background-color: #05ae19 !important;
  height: 3rem !important;
  font-size: 1.2rem !important;
  align-items: center !important;
  justify-content: space-evenly !important;
  border-radius: 24px !important;
}

#live-play-btn img {
  height: 2.7rem !important;
  width: auto !important;
  color: #0088cc;
  display: inline-block !important;
}

#live-play-btn:hover{
background-color: rgb(205, 55, 55) !important;
}

#play-area {
  display: none;
  position: fixed !important;
  top: 64px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  transform-origin: top center !important;
}

#play-area iframe {
  width: 100% !important;
  height: 800px !important;
}

.close-play-btn {
  position: absolute;
  top: 15px;
  right: 15px;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: #dc2626;
  color: white;

  font-size: 22px;
  font-weight: bold;

  cursor: pointer;
  z-index: 1000;

  transition: 0.2s;
}

.close-play-btn:hover {
  background: #b91c1c;
}

.game-main-layout {
  display: flex !important;
  gap: 40px !important;
  padding: 0.5rem 40px !important;
}

.game-left-col {
  flex: 2 !important;
}

.game-right-col {
  flex: 1 !important;
}

.game-section {
  margin-bottom: 35px !important;
}

.game-play {
  /* padding: .6rem 2rem !important; */
  text-align: center !important;
}

.game-section h2 {
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  text-align: center !important;
  color: #00ffcc !important;
  /* border-bottom: 2px solid #2d313f !important; */
  padding-bottom: 8px !important;
  margin-bottom: 10px !important;
}

.game-section p {
  color: #cbd5e0 !important;
  line-height: 1.7 !important;
  font-size: 1.05rem !important;
  margin-bottom: 15px !important;
}

.features-list {
  list-style: none !important;
  padding: 0 !important;
}

.features-list li {
  margin-bottom: 12px !important;
  color: #cbd5e0 !important;
  position: relative !important;
  padding-left: 20px !important;
}

.features-list li::before {
  content: "▹" !important;
  position: absolute !important;
  left: 0 !important;
  color: #00ffcc !important;
}

.store-box {
  background-color: #1a1c23 !important;
  border: 1px solid #2d313f !important;
  border-radius: 8px !important;
  padding: 25px !important;
  position: sticky !important;
  top: 20px !important;
}

.store-box h3 {
  text-align: center !important;
  background-color: gold !important;
  color: #0f111a !important;
  font-weight: 700 !important;
  padding: 8px 0 !important;
  border-radius: 20px !important;
  margin-top: 0 !important;
  font-size: 1.3rem !important;
  margin-bottom: 10px !important;
  animation: goldGlow 1.5s infinite ease-in-out !important;
  /* animation: flashTitle 1s infinite !important; */
}


/***
 * Keyframes for the animations.
 * This creates an animation effect to draw attention.
 */
@keyframes goldGlow {

  0%,
  100% {
    box-shadow: 0 0 8px rgb(255, 128, 0);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 30px rgb(255, 215, 0), 0 0 50px rgb(255, 140, 0);
    transform: scale(1.05);
  }
}

@keyframes flashTitle {

  0%,
  100% {
    background-color: gold;
  }

  50% {
    background: #ff3b30;
    color: white;
  }
}

/***
 * End of keyframes for the animations.
 */
.fa-brands.fa-microsoft {
  margin-right: .5rem !important;
}

.fa-brands:hover {
  font-size: 1.5rem !important;
}

.store-box p {
  color: #a0aec0 !important;
  font-size: 0.9rem !important;
  margin-bottom: 20px !important;
}

.links-stack {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.store-link {
  display: block !important;
  text-align: center !important;
  padding: 12px !important;
  border-radius: 24px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  transition: opacity 0.2s ease !important;
}

.store-link:hover {
  transform: scale(1.1) !important;
}

.social-icon.facebook>i:hover {
  background-color: #1877F2 !important;
}

.store-link:hover {
  opacity: 0.9 !important;
}

.android-btn {
  background-color: #3ddc84 !important;
  color: #000000 !important;
}

.apple-btn {
  background-color: #000000 !important;
  border: 1px solid #ffffff !important;
}

.microsoft-btn {
  background-color: #0a3eb7 !important;
}

.itch-btn {
  background-color: #fa5c5c !important;
}

.section-divider {
  border: 0 !important;
  height: 1px !important;
  background-color: #2d313f !important;
  margin: 0 40px .7rem !important;
}

.media-section {
  padding: 40px !important;
}

.video-container {
  position: relative !important;
  padding-bottom: 56.25% !important;
  /* 16:9 aspect ratio */
  height: 0 !important;
  overflow: hidden !important;
  margin-bottom: 30px !important;
  border-radius: 8px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5) !important;
}

.video-container iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.screenshot-gallery {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 20px !important;
}

.screenshot-item img {
  width: auto !important;
  max-width: 100% !important;
  max-height: 60vh !important;
  object-fit: contain !important;
  border-radius: 6px !important;
  border: 1px solid #2d313f !important;
  transition: transform 0.2s ease !important;
  cursor: pointer !important;
}

.screenshot-item img:hover {
  transform: scale(1.03) !important;
}

/* STREAMING_CHUNK: Adding Lightbox Modal Styles */
.lightbox-modal {
  display: none !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.9) !important;
  z-index: 2000 !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 20px !important;
  box-sizing: border-box !important;
}

.lightbox-img {
  max-width: 90vw !important;
  max-height: 90vh !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.7) !important;
  animation: zoomIn 0.3s ease !important;
}

.lightbox-close {
  position: absolute !important;
  top: 20px !important;
  right: 30px !important;
  color: #ffffff !important;
  font-size: 45px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  z-index: 2001 !important;
  transition: color 0.2s !important;
  line-height: 1 !important;
}

.lightbox-close:hover {
  color: #00ffcc !important;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8) !important;
    opacity: 0 !important;
  }

  to {
    transform: scale(1) !important;
    opacity: 1 !important;
  }
}

/* STREAMING_CHUNK: Adding animated background layer */
.animated-bg-container {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: -1 !important;
  background: linear-gradient(135deg, #0f111a 0%, #1a1c23 100%) !important;
  overflow: hidden !important;
}

.wave {
  position: absolute !important;
  width: 200% !important;
  height: 200% !important;
  top: -50% !important;
  left: -50% !important;
  background: radial-gradient(circle, rgba(0, 255, 204, 0.05) 0%, transparent 70%) !important;
  animation: rotate 20s linear infinite !important;
}

.wave:nth-child(2) {
  animation: rotate 30s linear infinite reverse !important;
  background: radial-gradient(circle, rgba(66, 153, 225, 0.05) 0%, transparent 70%) !important;
}

@keyframes rotate {
  from {
    transform: rotate(0deg) !important;
  }

  to {
    transform: rotate(360deg) !important;
  }
}

/* STREAMING_CHUNK: Social Sharing Styles */
.share-section {
  margin-top: 20px !important;
  padding: 20px !important;
  background: #1a1c23 !important;
  border-radius: 12px !important;
  border: 1px solid #2d313f !important;
  text-align: center !important;
  /* Making the social buttons arranged in a grid of three columns and 2 rows */

}

.share-buttons {
  display: grid !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-top: 15px !important;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-template-rows: repeat(2, 1fr) !important;
}

.share-btn {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  color: #fff !important;
  text-decoration: none !important;
  transition: transform 0.2s, background 0.2s !important;
  font-size: 1.1rem !important;
}

.grid {
  display: grid !important;
  place-items: center !important;
}

.share-btn:hover {
  transform: scale(1.15) !important;
}

.share-whatsapp {
  background: #25D366 !important;
}

.share-twitter {
  background: #000000 !important;
  color: white !important;
}

.share-facebook {
  background: #4267B2 !important;
}

.share-linkedin {
  background: #0077b5 !important;
}

.share-reddit {
  background: #FF4500 !important;
}

.share-telegram {
  background: #0088cc !important;
}

/* Mobile Responsive Adjustments */
@media (max-width: 900px) {
  .game-main-layout {
    flex-direction: column !important;
  }

  .store-box {
    position: static !important;
  }
}

@media (max-width: 600px) {
  .game-hero {
    height: 250px !important;
  }

  .hero-overlay {
    padding: 20px !important;
  }

  .hero-text-content h1 {
    font-size: 2rem !important;
  }

  .game-main-layout,
  .media-section {
    padding: 20px !important;
  }

  .section-divider {
    margin: 0 20px !important;
  }
}