.page-exclusive-games {
  padding-top: 10px; /* Small top padding for the first section */
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-exclusive-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-exclusive-games__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}

.page-exclusive-games__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for aesthetic */
  overflow: hidden;
}

.page-exclusive-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-exclusive-games__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin-top: 20px; /* Space between image and text */
  background-color: #111111; /* Card BG */
  border-radius: 15px;
  border: 1px solid #3A2A12; /* Border color */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transform: translateY(-50px); /* Slightly lift content over the image area */
  position: relative;
  z-index: 1;
}

.page-exclusive-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #F2C14E; /* Main color */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-exclusive-games__description {
  font-size: 1.2rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-exclusive-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-exclusive-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-exclusive-games__btn--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

.page-exclusive-games__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(242, 193, 78, 0.6);
}

.page-exclusive-games__btn--secondary {
  background-color: transparent;
  border: 2px solid #F2C14E; /* Main color */
  color: #F2C14E;
}

.page-exclusive-games__btn--secondary:hover {
  background-color: #F2C14E;
  color: #111111;
  transform: translateY(-3px);
}

.page-exclusive-games__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #FFD36B; /* Auxiliary color */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-exclusive-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F2C14E; /* Main color */
  border-radius: 2px;
}

.page-exclusive-games__text-content {
  font-size: 1.1rem;
  color: #FFF6D6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-exclusive-games__introduction-section,
.page-exclusive-games__why-choose-us-section,
.page-exclusive-games__getting-started-section,
.page-exclusive-games__faq-section {
  background-color: #111111; /* Card BG */
  border-radius: 15px;
  padding: 50px 20px;
  margin-bottom: 40px;
  border: 1px solid #3A2A12; /* Border color */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-exclusive-games__content-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-exclusive-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-exclusive-games__game-card {
  background-color: #0A0A0A; /* Background */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 1px solid #3A2A12; /* Border color */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-exclusive-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.2);
}

.page-exclusive-games__game-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12; /* Border color */
}

.page-exclusive-games__game-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-exclusive-games__game-description {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-exclusive-games__btn--small {
  padding: 10px 20px;
  font-size: 0.95rem;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  box-shadow: 0 3px 8px rgba(242, 193, 78, 0.3);
}

.page-exclusive-games__btn--small:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 193, 78, 0.5);
}

.page-exclusive-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-exclusive-games__feature-item {
  background-color: #0A0A0A; /* Background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid #3A2A12; /* Border color */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.page-exclusive-games__feature-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px #FFD36B); /* Glow */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-exclusive-games__feature-title {
  font-size: 1.6rem;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-exclusive-games__feature-description {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
}

.page-exclusive-games__steps-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.page-exclusive-games__step-item {
  background-color: #0A0A0A; /* Background */
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #3A2A12; /* Border color */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.page-exclusive-games__step-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #F2C14E; /* Main color */
  line-height: 1;
  flex-shrink: 0;
  padding-right: 15px;
  border-right: 2px solid #3A2A12; /* Border color */
}

.page-exclusive-games__step-title {
  font-size: 1.6rem;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 10px;
}

.page-exclusive-games__step-description {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
}

.page-exclusive-games__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-exclusive-games__btn--large {
  padding: 18px 40px;
  font-size: 1.2rem;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.5);
}

.page-exclusive-games__btn--large:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.7);
}

.page-exclusive-games__faq-item {
  background-color: #0A0A0A; /* Background */
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12; /* Border color */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-exclusive-games__faq-question {
  font-size: 1.3rem;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-exclusive-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #FFD36B;
}

.page-exclusive-games__faq-answer {
  font-size: 1rem;
  color: #FFF6D6; /* Text Main */
  display: none; /* Hidden by default, toggle with JS */
  padding-top: 10px;
  border-top: 1px dashed #3A2A12;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .page-exclusive-games__hero-content {
    padding: 30px 15px;
    transform: translateY(-30px);
  }

  .page-exclusive-games__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .page-exclusive-games__description {
    font-size: 1rem;
  }

  .page-exclusive-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-exclusive-games__btn {
    width: 100%;
    text-align: center;
  }

  .page-exclusive-games__section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .page-exclusive-games__text-content {
    font-size: 0.95rem;
  }

  .page-exclusive-games__game-grid {
    grid-template-columns: 1fr;
  }

  .page-exclusive-games__feature-icon {
    width: 100px;
    height: 100px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
  }

  .page-exclusive-games__feature-title {
    font-size: 1.4rem;
  }

  .page-exclusive-games__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-exclusive-games__step-number {
    border-right: none;
    padding-right: 0;
    margin-bottom: 10px;
  }

  .page-exclusive-games__faq-question {
    font-size: 1.1rem;
  }

  .page-exclusive-games__faq-answer {
    font-size: 0.9rem;
  }

  .page-exclusive-games img {
    max-width: 100%;
    height: auto;
  }

  /* Mobile content area images must not cause overflow */
  .page-exclusive-games__hero-image,
  .page-exclusive-games__content-image,
  .page-exclusive-games__game-thumbnail,
  .page-exclusive-games__feature-icon {
    max-width: 100%;
    height: auto;
  }

  /* Ensure no image falls below 200px display width/height in content sections */
  .page-exclusive-games__game-thumbnail,
  .page-exclusive-games__feature-icon {
    width: 100%; /* Occupy full width */
    height: auto; /* Maintain aspect ratio */
    min-width: 200px; /* Explicit minimum */
    min-height: 200px; /* Explicit minimum */
  }
}