.page-game-types-popular-game-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background-color: #1A1A1A;
}

.page-game-types-popular-game-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-types-popular-game-analysis__hero {
  background: linear-gradient(135deg, #2a2a2a, #1A1A1A);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-game-types-popular-game-analysis__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

.page-game-types-popular-game-analysis__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) blur(3px);
}

.page-game-types-popular-game-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-game-types-popular-game-analysis__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-types-popular-game-analysis__hero-subtitle {
  font-size: 1.5em;
  color: #CCCCCC;
  margin-bottom: 40px;
}

.page-game-types-popular-game-analysis__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-types-popular-game-analysis__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-types-popular-game-analysis__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-game-types-popular-game-analysis__section:last-of-type {
  border-bottom: none;
}

.page-game-types-popular-game-analysis__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-game-types-popular-game-analysis__section-title .highlight {
  color: #FFD700;
}

.page-game-types-popular-game-analysis__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-types-popular-game-analysis__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-game-types-popular-game-analysis__introduction .page-game-types-popular-game-analysis__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-types-popular-game-analysis__game-categories .page-game-types-popular-game-analysis__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-game-types-popular-game-analysis__grid-item {
  background-color: #2A2A2A;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-types-popular-game-analysis__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.page-game-types-popular-game-analysis__grid-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-types-popular-game-analysis__grid-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-types-popular-game-analysis__grid-description {
  font-size: 1em;
  color: #CCCCCC;
}

.page-game-types-popular-game-analysis__popular-games-analysis .page-game-types-popular-game-analysis__content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .page-game-types-popular-game-analysis__popular-games-analysis .page-game-types-popular-game-analysis__content-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-game-types-popular-game-analysis__content-block {
  background-color: #2A2A2A;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-game-types-popular-game-analysis__sub-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-game-types-popular-game-analysis__content-image {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-types-popular-game-analysis__why-popular .page-game-types-popular-game-analysis__reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-game-types-popular-game-analysis__reason-item {
  background-color: #2A2A2A;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-game-types-popular-game-analysis__reason-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-types-popular-game-analysis__how-to-join .page-game-types-popular-game-analysis__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-game-types-popular-game-analysis__step-item {
  background-color: #2A2A2A;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-game-types-popular-game-analysis__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #1A1A1A;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-types-popular-game-analysis__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-types-popular-game-analysis__step-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-game-types-popular-game-analysis__step-button:hover {
  background-color: #e6c200;
}

.page-game-types-popular-game-analysis__cta {
  text-align: center;
  background: linear-gradient(90deg, #FFD700, #b39700);
  color: #1A1A1A;
  padding: 80px 0;
  border-radius: 10px;
  margin: 60px auto;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.page-game-types-popular-game-analysis__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #1A1A1A;
}

.page-game-types-popular-game-analysis__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-game-types-popular-game-analysis__cta-button {
  display: inline-block;
  background-color: #1A1A1A;
  color: #FFD700;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-game-types-popular-game-analysis__cta-button:hover {
  background-color: #333333;
  color: #e6c200;
}

.page-game-types-popular-game-analysis__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #1A1A1A;
  color: #1A1A1A;
}

.page-game-types-popular-game-analysis__cta-button--secondary:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: #1A1A1A;
  border-color: #333333;
}

.page-game-types-popular-game-analysis__faq-item {
  background-color: #2A2A2A;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-game-types-popular-game-analysis__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-types-popular-game-analysis__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-game-types-popular-game-analysis__faq-question.active::after {
  transform: rotate(45deg);
}

.page-game-types-popular-game-analysis__faq-answer {
  font-size: 1em;
  color: #CCCCCC;
  display: none;
  padding-top: 10px;
}

.page-game-types-popular-game-analysis__faq-answer.active {
  display: block;
}

.page-game-types-popular-game-analysis .highlight {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-game-types-popular-game-analysis__hero-title {
    font-size: 3em;
  }
  .page-game-types-popular-game-analysis__hero-subtitle {
    font-size: 1.3em;
  }
  .page-game-types-popular-game-analysis__section-title {
    font-size: 2.2em;
  }
  .page-game-types-popular-game-analysis__grid-item, .page-game-types-popular-game-analysis__content-block, .page-game-types-popular-game-analysis__reason-item, .page-game-types-popular-game-analysis__step-item {
    padding: 25px;
  }
  .page-game-types-popular-game-analysis__sub-title {
    font-size: 1.8em;
  }
  .page-game-types-popular-game-analysis__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-game-types-popular-game-analysis__hero {
    padding: 80px 0;
  }
  .page-game-types-popular-game-analysis__hero-title {
    font-size: 2.5em;
  }
  .page-game-types-popular-game-analysis__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-types-popular-game-analysis__hero-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-game-types-popular-game-analysis__section {
    padding: 40px 0;
  }
  .page-game-types-popular-game-analysis__section-title {
    font-size: 2em;
    margin-bottom: 40px;
  }
  .page-game-types-popular-game-analysis__game-categories .page-game-types-popular-game-analysis__grid,
  .page-game-types-popular-game-analysis__why-popular .page-game-types-popular-game-analysis__reason-grid,
  .page-game-types-popular-game-analysis__how-to-join .page-game-types-popular-game-analysis__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-game-types-popular-game-analysis__cta {
    padding: 60px 20px;
  }
  .page-game-types-popular-game-analysis__cta-title {
    font-size: 2em;
  }
  .page-game-types-popular-game-analysis__cta-description {
    font-size: 1.1em;
  }
  .page-game-types-popular-game-analysis__cta-button {
    margin: 10px 0;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-game-types-popular-game-analysis__hero-title {
    font-size: 2em;
  }
  .page-game-types-popular-game-analysis__hero-subtitle {
    font-size: 1em;
  }
  .page-game-types-popular-game-analysis__section-title {
    font-size: 1.8em;
  }
  .page-game-types-popular-game-analysis__grid-title {
    font-size: 1.5em;
  }
  .page-game-types-popular-game-analysis__sub-title {
    font-size: 1.6em;
  }
  .page-game-types-popular-game-analysis__reason-title {
    font-size: 1.4em;
  }
  .page-game-types-popular-game-analysis__step-title {
    font-size: 1.5em;
  }
  .page-game-types-popular-game-analysis__cta-title {
    font-size: 1.8em;
  }
}