/* style/index-hot-games-overview.css */
.page-index-hot-games-overview {
  font-family: 'Arial', sans-serif;
  color: #2C3E50; /* Auxiliary dark color for text */
  line-height: 1.6;
}

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

.page-index-hot-games-overview__highlight {
  color: #FFD700; /* Primary gold color */
}

.page-index-hot-games-overview__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-hot-games-overview__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #2C3E50;
  font-weight: bold;
}

.page-index-hot-games-overview__section-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #4A5B6C; /* Slightly lighter dark for body text */
}

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

.page-index-hot-games-overview__btn--primary {
  background-color: #FFD700; /* Primary gold */
  color: #2C3E50; /* Dark text for contrast */
  margin: 10px;
}

.page-index-hot-games-overview__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-hot-games-overview__btn--secondary {
  background-color: #2C3E50; /* Auxiliary dark color */
  color: #FFD700; /* Gold text for contrast */
  border: 2px solid #FFD700;
  margin: 10px;
}

.page-index-hot-games-overview__btn--secondary:hover {
  background-color: #3d5268;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-hot-games-overview__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-index-hot-games-overview__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Hero Section */
.page-index-hot-games-overview__hero-section {
  background: linear-gradient(135deg, #2C3E50, #4A5B6C);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-index-hot-games-overview__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-index-hot-games-overview__hero-section .page-index-hot-games-overview__container {
  position: relative;
  z-index: 2;
}

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

.page-index-hot-games-overview__hero-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-index-hot-games-overview__hero-buttons {
  margin-top: 30px;
}

.page-index-hot-games-overview__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.7);
}

/* About Win79 Section */
.page-index-hot-games-overview__about-win79 {
  background-color: #f8f8f8;
}

.page-index-hot-games-overview__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Game Categories */
.page-index-hot-games-overview__game-categories {
  background-color: #fff;
}

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

.page-index-hot-games-overview__game-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-hot-games-overview__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-index-hot-games-overview__game-card-image {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #eee;
}

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

.page-index-hot-games-overview__game-card-description {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Highlights Section */
.page-index-hot-games-overview__highlights {
  background-color: #2C3E50;
  color: #f0f0f0;
}

.page-index-hot-games-overview__highlights .page-index-hot-games-overview__section-title {
  color: #FFD700;
}

.page-index-hot-games-overview__highlights .page-index-hot-games-overview__section-text {
  color: #ccc;
}

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

.page-index-hot-games-overview__highlight-item {
  background-color: #3d5268; /* Slightly lighter dark background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-index-hot-games-overview__highlight-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-index-hot-games-overview__highlight-title {
  font-size: 1.7em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-hot-games-overview__highlight-description {
  font-size: 0.95em;
  color: #e0e0e0;
}

/* CTA Section */
.page-index-hot-games-overview__cta-section {
  background-color: #f8f8f8;
}

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

.page-index-hot-games-overview__step-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-hot-games-overview__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #2C3E50;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-index-hot-games-overview__step-title {
  font-size: 1.6em;
  color: #2C3E50;
  margin-bottom: 15px;
}

.page-index-hot-games-overview__step-description {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-index-hot-games-overview__image--large {
  margin-top: 60px;
}

/* Responsible Gambling Section */
.page-index-hot-games-overview__responsible-gambling {
  background-color: #2C3E50;
  color: #f0f0f0;
}

.page-index-hot-games-overview__responsible-gambling .page-index-hot-games-overview__section-title {
  color: #FFD700;
}

.page-index-hot-games-overview__responsible-gambling .page-index-hot-games-overview__section-text {
  color: #ccc;
}

.page-index-hot-games-overview__responsible-tips {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-hot-games-overview__responsible-tips li {
  background-color: #3d5268;
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.1em;
  color: #e0e0e0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-hot-games-overview__icon {
  color: #FFD700;
  font-size: 1.5em;
  margin-right: 15px;
}

/* FAQ Section */
.page-index-hot-games-overview__faq-section {
  background-color: #fff;
}

.page-index-hot-games-overview__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

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

.page-index-hot-games-overview__faq-answer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-hot-games-overview__faq-answer a:hover {
  text-decoration: underline;
}

/* Final CTA Section */
.page-index-hot-games-overview__final-cta {
  background: linear-gradient(135deg, #FFD700, #e6c200);
  color: #2C3E50;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-index-hot-games-overview__final-cta .page-index-hot-games-overview__section-title {
  color: #2C3E50;
}

.page-index-hot-games-overview__final-cta .page-index-hot-games-overview__section-text {
  color: #555;
}

.page-index-hot-games-overview__btn--pulse {
  background-color: #E74C3C; /* High contrast red for CTA */
  color: #fff;
  box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
  animation: page-index-hot-games-overview__pulse 2s infinite;
}

.page-index-hot-games-overview__btn--pulse:hover {
  background-color: #c0392b;
}

@keyframes page-index-hot-games-overview__pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(231, 76, 60, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

.page-index-hot-games-overview__image--full-width {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-top: 50px;
  border-radius: 0;
  box-shadow: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-hot-games-overview__hero-title {
    font-size: 2.8em;
  }

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

  .page-index-hot-games-overview__game-grid,
  .page-index-hot-games-overview__highlight-grid,
  .page-index-hot-games-overview__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-hot-games-overview__hero-section,
  .page-index-hot-games-overview__section,
  .page-index-hot-games-overview__final-cta {
    padding: 60px 0;
  }

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

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

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

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

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

  .page-index-hot-games-overview__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-index-hot-games-overview__hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-index-hot-games-overview__hero-buttons .page-index-hot-games-overview__btn {
    width: 80%;
    margin: 10px 0;
  }
}

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

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

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

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

  .page-index-hot-games-overview__btn {
    font-size: 0.9em;
  }

  .page-index-hot-games-overview__hero-buttons .page-index-hot-games-overview__btn {
    width: 90%;
  }

  .page-index-hot-games-overview__faq-question {
    font-size: 1.2em;
  }
}