.page-beginner-guide-how-to-choose-games {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-beginner-guide-how-to-choose-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-beginner-guide-how-to-choose-games__hero {
  background: linear-gradient(135deg, #1A2B4C 0%, #3a507a 100%); /* Darker blue to slightly lighter blue */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-how-to-choose-games__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-beginner-guide-how-to-choose-games__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
  line-height: 1.2;
}

.page-beginner-guide-how-to-choose-games__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-beginner-guide-how-to-choose-games__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  opacity: 0.2;
  z-index: 0;
}

.page-beginner-guide-how-to-choose-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* General Section Styling */
.page-beginner-guide-how-to-choose-games__section {
  padding: 60px 0;
}

.page-beginner-guide-how-to-choose-games__section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-beginner-guide-how-to-choose-games__section-title {
  font-size: 2.5em;
  color: #1A2B4C;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.page-beginner-guide-how-to-choose-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

/* Introduction */
.page-beginner-guide-how-to-choose-games__introduction p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-beginner-guide-how-to-choose-games__introduction strong {
  color: #1A2B4C;
}

/* Factors Grid */
.page-beginner-guide-how-to-choose-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-beginner-guide-how-to-choose-games__grid-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-how-to-choose-games__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-how-to-choose-games__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-beginner-guide-how-to-choose-games__item-title {
  font-size: 1.5em;
  color: #1A2B4C;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-beginner-guide-how-to-choose-games__grid-item p {
  font-size: 1em;
  color: #555555;
  margin-bottom: 15px;
  text-align: justify;
}

.page-beginner-guide-how-to-choose-games__grid-item ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
}

.page-beginner-guide-how-to-choose-games__grid-item ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 28px;
  margin-bottom: 8px;
  color: #444444;
}

/* Game Types Section */
.page-beginner-guide-how-to-choose-games__game-category {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.page-beginner-guide-how-to-choose-games__category-title {
  font-size: 2em;
  color: #1A2B4C;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-beginner-guide-how-to-choose-games__category-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.page-beginner-guide-how-to-choose-games__category-content--reverse {
  flex-direction: row-reverse;
}

.page-beginner-guide-how-to-choose-games__category-image {
  flex: 1;
  max-width: 45%;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-how-to-choose-games__category-text {
  flex: 1;
  max-width: 55%;
}

.page-beginner-guide-how-to-choose-games__category-text p {
  font-size: 1.05em;
  margin-bottom: 15px;
  color: #444444;
  text-align: justify;
}

/* Strategies Section */
.page-beginner-guide-how-to-choose-games__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-beginner-guide-how-to-choose-games__strategy-list li {
  background-color: #FFFFFF;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: justify;
}

.page-beginner-guide-how-to-choose-games__strategy-title {
  font-size: 1.6em;
  color: #1A2B4C;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-beginner-guide-how-to-choose-games__strategy-list p {
  font-size: 1.05em;
  color: #555555;
}

/* Call to Action Buttons */
.page-beginner-guide-how-to-choose-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.page-beginner-guide-how-to-choose-games__cta-button--primary {
  background-color: #FFD700;
  color: #1A2B4C; /* Dark blue text on gold */
  border: 2px solid #FFD700;
  margin-right: 20px;
}

.page-beginner-guide-how-to-choose-games__cta-button--primary:hover {
  background-color: #e5c100;
  border-color: #e5c100;
  transform: translateY(-2px);
}

.page-beginner-guide-how-to-choose-games__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-beginner-guide-how-to-choose-games__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
  transform: translateY(-2px);
}

.page-beginner-guide-how-to-choose-games__cta-group {
  text-align: center;
  margin-top: 50px;
}

.page-beginner-guide-how-to-choose-games__inline-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #1A2B4C;
  color: #FFD700;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-beginner-guide-how-to-choose-games__inline-cta:hover {
  background-color: #0d1e3a;
  color: #FFFFFF;
}

/* Conclusion Section */
.page-beginner-guide-how-to-choose-games__conclusion p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-beginner-guide-how-to-choose-games__hero-title {
    font-size: 2.5em;
  }
  .page-beginner-guide-how-to-choose-games__hero-subtitle {
    font-size: 1.2em;
  }
  .page-beginner-guide-how-to-choose-games__section-title {
    font-size: 2em;
  }
  .page-beginner-guide-how-to-choose-games__game-category-content {
    flex-direction: column;
  }
  .page-beginner-guide-how-to-choose-games__game-category-content--reverse {
    flex-direction: column;
  }
  .page-beginner-guide-how-to-choose-games__category-image,
  .page-beginner-guide-how-to-choose-games__category-text {
    max-width: 100%;
  }
  .page-beginner-guide-how-to-choose-games__category-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-how-to-choose-games__hero {
    padding: 60px 0;
  }
  .page-beginner-guide-how-to-choose-games__hero-title {
    font-size: 2em;
  }
  .page-beginner-guide-how-to-choose-games__hero-subtitle {
    font-size: 1em;
  }
  .page-beginner-guide-how-to-choose-games__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    margin-right: 10px;
  }
  .page-beginner-guide-how-to-choose-games__section {
    padding: 40px 0;
  }
  .page-beginner-guide-how-to-choose-games__section-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-how-to-choose-games__grid {
    grid-template-columns: 1fr;
  }
  .page-beginner-guide-how-to-choose-games__category-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-how-to-choose-games__category-image {
    max-width: 90%;
    margin: 0 auto 20px auto;
  }
  .page-beginner-guide-how-to-choose-games__category-text {
    max-width: 100%;
  }
  .page-beginner-guide-how-to-choose-games__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-beginner-guide-how-to-choose-games__cta-button {
    width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-how-to-choose-games__hero-title {
    font-size: 1.8em;
  }
  .page-beginner-guide-how-to-choose-games__hero-subtitle {
    font-size: 0.9em;
  }
  .page-beginner-guide-how-to-choose-games__section-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-how-to-choose-games__item-title {
    font-size: 1.3em;
  }
  .page-beginner-guide-how-to-choose-games__category-title {
    font-size: 1.5em;
  }
  .page-beginner-guide-how-to-choose-games__strategy-title {
    font-size: 1.4em;
  }
  .page-beginner-guide-how-to-choose-games__hero-image-wrapper {
    display: none;
  }
}