.page-index-hot-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-index-hot-games__hero-section {
  background: linear-gradient(135deg, #0A2463, #3b5998);
  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,geometric,pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-index-hot-games__hero-section .page-index-hot-games__container {
  position: relative;
  z-index: 1;
}

.page-index-hot-games__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-hot-games__subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

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

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

.page-index-hot-games__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-index-hot-games__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-index-hot-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-index-hot-games__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-index-hot-games__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-index-hot-games__sub-section-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-top: 30px;
  margin-bottom: 20px;
}

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

.page-index-hot-games__intro-section, 
.page-index-hot-games__games-overview, 
.page-index-hot-games__guide-section, 
.page-index-hot-games__promo-section, 
.page-index-hot-games__responsibility-section, 
.page-index-hot-games__final-cta-section {
  padding: 80px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index-hot-games__intro-section {
  background-color: #f0f4f7;
}

.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 {
  text-align: center;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px 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, 0, 0, 0.1));
}

.page-index-hot-games__feature-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-index-hot-games__game-category {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 50px;
}

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

.page-index-hot-games__game-card:hover {
  transform: translateY(-8px);
}

.page-index-hot-games__game-card:nth-child(even) {
  flex-direction: row-reverse;
}

.page-index-hot-games__game-image {
  width: 45%;
  height: 400px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-index-hot-games__game-content {
  padding: 40px;
  width: 55%;
}

.page-index-hot-games__game-title {
  font-size: 2em;
  color: #0A2463;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-index-hot-games__sub-game-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-index-hot-games__game-content p {
  margin-bottom: 15px;
  color: #444;
}

.page-index-hot-games__game-content ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #444;
}

.page-index-hot-games__game-content ul li {
  margin-bottom: 8px;
}

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

.page-index-hot-games__step-item {
  text-align: center;
  padding: 40px 20px;
  background-color: #f7faff;
  border: 1px solid #e0e7ed;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.page-index-hot-games__step-item:hover {
  background-color: #e6f0f8;
  border-color: #cce0f0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-index-hot-games__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-index-hot-games__step-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

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

.page-index-hot-games__promo-card {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-hot-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-index-hot-games__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-hot-games__promo-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-index-hot-games__promo-card p {
  padding: 0 25px 25px;
  color: #555;
}

.page-index-hot-games__promo-final-text {
  text-align: center;
  font-size: 1.2em;
  color: #0A2463;
  margin-top: 40px;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-index-hot-games__final-cta-section {
  background-color: #0A2463;
  color: #fff;
  text-align: center;
  padding: 100px 0;
  border-radius: 0;
  box-shadow: none;
}

.page-index-hot-games__final-cta-section .page-index-hot-games__section-title {
  color: #FFD700;
}

.page-index-hot-games__final-cta-section .page-index-hot-games__section-title::after {
  background-color: #FFD700;
}

.page-index-hot-games__final-cta-section .page-index-hot-games__description {
  color: #f0f0f0;
  margin-bottom: 50px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index-hot-games__main-title {
    font-size: 2.8em;
  }
  .page-index-hot-games__section-title {
    font-size: 2em;
  }
  .page-index-hot-games__game-card {
    flex-direction: column;
  }
  .page-index-hot-games__game-card:nth-child(even) {
    flex-direction: column;
  }
  .page-index-hot-games__game-image {
    width: 100%;
    height: 300px;
  }
  .page-index-hot-games__game-content {
    width: 100%;
    padding: 30px;
  }
  .page-index-hot-games__game-title {
    font-size: 1.8em;
  }
  .page-index-hot-games__sub-game-title {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-index-hot-games__hero-section {
    padding: 80px 0;
  }
  .page-index-hot-games__main-title {
    font-size: 2.2em;
  }
  .page-index-hot-games__subtitle {
    font-size: 1em;
  }
  .page-index-hot-games__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-hot-games__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-index-hot-games__section-title {
    font-size: 1.8em;
  }
  .page-index-hot-games__description {
    font-size: 0.95em;
  }
  .page-index-hot-games__intro-section, 
  .page-index-hot-games__games-overview, 
  .page-index-hot-games__guide-section, 
  .page-index-hot-games__promo-section, 
  .page-index-hot-games__responsibility-section, 
  .page-index-hot-games__final-cta-section {
    padding: 50px 0;
  }
  .page-index-hot-games__features-grid, 
  .page-index-hot-games__guide-steps, 
  .page-index-hot-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-index-hot-games__feature-item, 
  .page-index-hot-games__step-item, 
  .page-index-hot-games__promo-card {
    padding: 25px;
  }
  .page-index-hot-games__game-image {
    height: 250px;
  }
  .page-index-hot-games__game-content {
    padding: 25px;
  }
  .page-index-hot-games__game-title {
    font-size: 1.5em;
  }
  .page-index-hot-games__step-title {
    font-size: 1.4em;
  }
  .page-index-hot-games__promo-title {
    font-size: 1.5em;
  }
  .page-index-hot-games__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-index-hot-games__hero-section {
    padding: 60px 0;
  }
  .page-index-hot-games__main-title {
    font-size: 1.8em;
  }
  .page-index-hot-games__subtitle {
    font-size: 0.9em;
  }
  .page-index-hot-games__btn {
    width: 95%;
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-index-hot-games__section-title {
    font-size: 1.5em;
  }
  .page-index-hot-games__game-image {
    height: 200px;
  }
  .page-index-hot-games__game-title {
    font-size: 1.3em;
  }
  .page-index-hot-games__sub-game-title {
    font-size: 1.1em;
  }
  .page-index-hot-games__feature-title, .page-index-hot-games__step-title, .page-index-hot-games__promo-title {
    font-size: 1.2em;
  }
}