/* style/index-hot-games.css */
.page-index-hot-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-index-hot-games__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-hot-games__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,gaming,light_effect]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 1;
}

.page-index-hot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  z-index: 2;
  color: #fff;
}

.page-index-hot-games__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  color: #e0e0e0;
}

.page-index-hot-games__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

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

.page-index-hot-games__btn--primary {
  background-color: #ffc107;
  color: #0056b3;
  border: 2px solid #ffc107;
}

.page-index-hot-games__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-3px);
}

.page-index-hot-games__btn--secondary {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-index-hot-games__btn--secondary:hover {
  background-color: #ffc107;
  color: #0056b3;
  transform: translateY(-3px);
}

.page-index-hot-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 30px;
}

.page-index-hot-games__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-hot-games__featured-games-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.page-index-hot-games__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 20px;
  color: #007bff;
  font-weight: bold;
}

.page-index-hot-games__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

.page-index-hot-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-hot-games__game-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}

.page-index-hot-games__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.page-index-hot-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 5px solid #ffc107;
}

.page-index-hot-games__game-title {
  font-size: 1.8em;
  margin: 25px 0 15px;
  color: #007bff;
  padding: 0 20px;
}

.page-index-hot-games__game-title a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-hot-games__game-title a:hover {
  color: #0056b3;
}

.page-index-hot-games__game-text {
  font-size: 1em;
  color: #666;
  padding: 0 20px;
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-index-hot-games__game-card .page-index-hot-games__btn {
  margin-top: auto;
  align-self: center;
}

.page-index-hot-games__why-choose-us-section {
  padding: 80px 0;
  background-color: #e9ecef;
}

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

.page-index-hot-games__feature-item {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-hot-games__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-index-hot-games__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 123, 255, 0.3));
}

.page-index-hot-games__feature-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index-hot-games__feature-text {
  font-size: 1em;
  color: #666;
}

.page-index-hot-games__cta-banner {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  padding: 60px 0;
  text-align: center;
  margin-top: 60px;
}

.page-index-hot-games__cta-content {
  max-width: 900px;
}

.page-index-hot-games__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-index-hot-games__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

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

.page-index-hot-games__faq-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.page-index-hot-games__faq-list {
  margin-top: 50px;
}

.page-index-hot-games__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-index-hot-games__faq-item:hover {
  border-color: #007bff;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
}

.page-index-hot-games__faq-question {
  font-size: 1.4em;
  color: #007bff;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-index-hot-games__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #ffc107;
  transition: transform 0.3s ease;
}

.page-index-hot-games__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-hot-games__faq-answer {
  font-size: 1em;
  color: #555;
  padding: 0 20px 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-index-hot-games__faq-answer.active {
  max-height: 500px; /* Adjust as needed */
  padding: 0 20px 20px;
}

.page-index-hot-games__responsible-gambling-section {
  padding: 80px 0;
  background-color: #0056b3;
  color: #fff;
  text-align: center;
}

.page-index-hot-games__responsible-gambling-section .page-index-hot-games__section-title {
  color: #ffc107;
}

.page-index-hot-games__responsible-gambling-section .page-index-hot-games__section-description {
  color: #e0e0e0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-index-hot-games .highlight {
  color: #ffc107;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-hot-games__hero-title {
    font-size: 2.8em;
  }
  .page-index-hot-games__section-title {
    font-size: 2.2em;
  }
  .page-index-hot-games__cta-title {
    font-size: 2.5em;
  }
  .page-index-hot-games__game-grid, .page-index-hot-games__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-hot-games__hero-section {
    padding: 80px 0;
  }
  .page-index-hot-games__hero-title {
    font-size: 2.2em;
  }
  .page-index-hot-games__hero-description {
    font-size: 1em;
  }
  .page-index-hot-games__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-hot-games__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-index-hot-games__section-title {
    font-size: 1.8em;
  }
  .page-index-hot-games__section-description {
    font-size: 0.95em;
  }
  .page-index-hot-games__cta-title {
    font-size: 2em;
  }
  .page-index-hot-games__cta-text {
    font-size: 1em;
  }
  .page-index-hot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-hot-games__btn--large {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-index-hot-games__hero-title {
    font-size: 1.8em;
  }
  .page-index-hot-games__section-title {
    font-size: 1.5em;
  }
  .page-index-hot-games__cta-title {
    font-size: 1.6em;
  }
  .page-index-hot-games__game-grid, .page-index-hot-games__features-grid {
    grid-template-columns: 1fr;
  }
  .page-index-hot-games__game-card, .page-index-hot-games__feature-item {
    margin: 0 10px;
  }
  .page-index-hot-games__btn {
    width: 90%;
  }
  .page-index-hot-games__btn--large {
    width: 90%;
  }
}