/* ===== RESET ===== */
body {
  margin: 0;
  padding: 0;
}

/* ===== MAIN WRAPPER ===== */
.game-detail-page {
  padding: 0; /* remove outer spacing */
  color: #000000;
}

/* ===== HERO ===== */
.game-hero {
  position: relative;
  width: 100%;
  height: 420px; /* 🔥 premium height */
  border-radius: 0; /* remove round corners */
  margin: 0;

  background-size: cover;
  background-position: center;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.8) 40%,
    rgba(0,0,0,0.4) 70%,
    rgba(0,0,0,0.2) 100%
  );
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 40px 60px; /* spacing inside hero */
  max-width: 700px;
}
.hero-content p {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.7;
}

/* TOP ROW */
.hero-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* LOGO */
.game-logo {
  width: 150px;
  height: 150px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

/* TEXT */
.hero-text {
  display: flex;
  flex-direction: column;
}

.hero-text h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.game-category {
  font-size: 14px;
  color: #000000;
  margin-bottom: 4px;
}

.rating {
  font-size: 14px;
  color: gold;
  margin-bottom: 6px;
}

/* PLAY BUTTON */
.play-btn {
  margin-top: 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  padding: 10px 20px;

  background: linear-gradient(90deg, #855102, #855102);
  border-radius: 30px;

  font-weight: 600;
  color: #fff;
  text-decoration: none;

  transition: 0.3s;
}

.play-btn:hover {
  transform: scale(1.05);
}

/* ===== BODY CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;
}

/* ===== BODY ===== */
.game-body {
  display: flex;
  gap: 30px;
}

/* LEFT CONTENT */
.game-content {
  flex: 2;
}

.game-section {
  margin-bottom: 25px;
}

.game-section h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.game-section p,
.game-section li {
  color: #000000;
  line-height: 1.7;
  font-size: 14px;
}

.game-section ul {
  padding-left: 18px;
}

/* ===== SIDEBAR ===== */
.game-sidebar {
  flex: 1;
  padding: 18px;
}

.game-sidebar h3 {
  margin-bottom: 15px;
  font-size: 16px;
}

/* SIMILAR GAME */
.similar-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.25s;
}

.similar-item:hover {
   background: rgba(255,255,255,0.05);
  transform: translateX(4px);
}

.similar-item img {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  object-fit: cover;
}

/* IMAGE */
.similar-item img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
}

/* INFO BLOCK */
.similar-info {
  display: flex;
  flex-direction: column;
}

/* TITLE */
.similar-title {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 4px;
}

/* RATING */
.similar-rating {
  font-size: 12px;
  color: gold;
  margin-bottom: 6px;
}

/* BUTTON */
.similar-btn {
  display: inline-block;
  font-size: 11px;
  color: #000000;
  font-weight: 600;
}

.similar-item span {
  color: #000000;
  font-size: 13px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .game-hero {
    height: 300px;
  }

  .hero-content {
    padding: 20px;
  }

  .hero-top {
    gap: 12px;
  }

  .game-logo {
    width: 150px;
    height: 150px;
  }

  .hero-text h1 {
    font-size: 22px;
  }

  .play-btn {
    padding: 10px 18px;
  }

  .game-body {
    flex-direction: column;
  }

  .game-sidebar {
    margin-top: 20px;
  }
}

.faq-item {
  margin-bottom: 15px;
}

.faq-item h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #000000;
}

.faq-item p {
  font-size: 14px;
  color: #000000;
}

/* SMALL MOBILE */
@media (max-width: 480px) {

  .game-hero {
    height: 260px;
  }

  .hero-text h1 {
    font-size: 20px;
  }

  .game-category,
  .rating {
    font-size: 12px;
  }
}