/* style/index-hot-games-overview.css */
.page-index-hot-games-overview {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A1A1A; /* Dark background */
}

.page-index-hot-games-overview__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-hot-games-overview__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
}

.page-index-hot-games-overview__section-title .highlight {
  color: #8B0000; /* Deep red for highlight */
}

.page-index-hot-games-overview__text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: #CCCCCC; /* Slightly lighter gray for body text */
}

.page-index-hot-games-overview__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-index-hot-games-overview__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A1A1A; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-index-hot-games-overview__btn--primary:hover {
  background-color: #E6C200; /* Darker gold on hover */
  color: #000000;
  transform: translateY(-2px);
}

.page-index-hot-games-overview__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-index-hot-games-overview__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-2px);
}

.page-index-hot-games-overview__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #8B0000; /* Deep red button */
  color: #FFD700; /* Gold text */
  border: 2px solid #8B0000;
}

.page-index-hot-games-overview__btn--small:hover {
  background-color: #A30000; /* Darker red on hover */
  color: #FFFFFF;
}

/* Hero Section */
.page-index-hot-games-overview__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2A0000, #4D0000); /* Dark red gradient background */
  padding: 80px 20px;
  gap: 40px;
}

.page-index-hot-games-overview__hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.page-index-hot-games-overview__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-hot-games-overview__hero-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-index-hot-games-overview__hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-hot-games-overview__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-hot-games-overview__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Intro Section */
.page-index-hot-games-overview__intro {
  padding: 60px 0;
  background-color: #1A1A1A;
}

/* Game Categories Section */
.page-index-hot-games-overview__game-categories {
  padding: 60px 0;
  background-color: #0F0F0F;
}

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

.page-index-hot-games-overview__category-card {
  background-color: #282828;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px 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-index-hot-games-overview__category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-index-hot-games-overview__card-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-hot-games-overview__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-hot-games-overview__card-description {
  font-size: 0.95em;
  color: #B0B0B0;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Why Choose Section */
.page-index-hot-games-overview__why-choose {
  padding: 60px 0;
  background-color: #1A1A1A;
}

.page-index-hot-games-overview__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-hot-games-overview__feature-item {
  background-color: #282828;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.page-index-hot-games-overview__feature-item:hover {
  transform: scale(1.03);
}

.page-index-hot-games-overview__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  /* No filter property to change color */
}

.page-index-hot-games-overview__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-hot-games-overview__feature-description {
  font-size: 0.95em;
  color: #B0B0B0;
  line-height: 1.6;
}

.page-index-hot-games-overview__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-index-hot-games-overview__cta-bottom .page-index-hot-games-overview__text {
  font-size: 1.2em;
  color: #FFD700;
  margin-bottom: 30px;
}

/* How To Section */
.page-index-hot-games-overview__how-to {
  padding: 60px 0;
  background-color: #0F0F0F;
}

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

.page-index-hot-games-overview__step-item {
  background-color: #282828;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-index-hot-games-overview__step-number {
  width: 50px;
  height: 50px;
  background-color: #8B0000;
  color: #FFD700;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-index-hot-games-overview__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-hot-games-overview__step-description {
  font-size: 0.95em;
  color: #B0B0B0;
  line-height: 1.6;
}

.page-index-hot-games-overview__cta-download {
  text-align: center;
  margin-top: 60px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Bug-bytes Section */
.page-index-hot-games-overview__bug-bytes {
  padding: 60px 0;
  background-color: #1A1A1A;
}

/* FAQ Section */
.page-index-hot-games-overview__faq {
  padding: 60px 0;
  background-color: #0F0F0F;
}

.page-index-hot-games-overview__faq-item {
  background-color: #282828;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-hot-games-overview__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
}

.page-index-hot-games-overview__faq-answer {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-hot-games-overview__hero {
    flex-direction: column;
    text-align: center;
  }

  .page-index-hot-games-overview__hero-content,
  .page-index-hot-games-overview__hero-image-wrapper {
    max-width: 100%;
  }

  .page-index-hot-games-overview__hero-title {
    font-size: 2.8em;
  }

  .page-index-hot-games-overview__hero-actions {
    justify-content: center;
  }

  .page-index-hot-games-overview__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-index-hot-games-overview__hero {
    padding: 60px 15px;
  }

  .page-index-hot-games-overview__hero-title {
    font-size: 2.5em;
  }

  .page-index-hot-games-overview__hero-description {
    font-size: 1.1em;
  }

  .page-index-hot-games-overview__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-hot-games-overview__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-index-hot-games-overview__category-grid,
  .page-index-hot-games-overview__features-grid,
  .page-index-hot-games-overview__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-index-hot-games-overview__card-image {
    height: 150px;
  }

  .page-index-hot-games-overview__card-title {
    font-size: 1.4em;
  }

  .page-index-hot-games-overview__feature-title,
  .page-index-hot-games-overview__step-title,
  .page-index-hot-games-overview__faq-question {
    font-size: 1.3em;
  }

  .page-index-hot-games-overview__cta-bottom .page-index-hot-games-overview__text {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index-hot-games-overview__hero-title {
    font-size: 2em;
  }

  .page-index-hot-games-overview__hero-description {
    font-size: 1em;
  }

  .page-index-hot-games-overview__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-hot-games-overview__btn {
    width: 100%;
  }

  .page-index-hot-games-overview__section-title {
    font-size: 1.6em;
  }

  .page-index-hot-games-overview__text {
    font-size: 0.95em;
  }

  .page-index-hot-games-overview__cta-download {
    flex-direction: column;
  }
}