.page-newbie-guide-game-recommendations {
  font-family: 'Arial', sans-serif;
  color: #e5d1bb; /* Text color for contrast with main dark blue */
  background-color: #1A2E44; /* Main background color */
  line-height: 1.6;
}

.page-newbie-guide-game-recommendations__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-newbie-guide-game-recommendations__hero {
  background: linear-gradient(135deg, #1A2E44 0%, #3a5068 100%); /* Gradient background for hero */
  padding: 100px 0;
  text-align: center;
  border-bottom: 5px solid #FFD700; /* Accent color border */
}

.page-newbie-guide-game-recommendations__title {
  font-size: 3.5em;
  color: #FFD700; /* Accent color for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-newbie-guide-game-recommendations__subtitle {
  font-size: 1.4em;
  color: #e5d1bb; /* Lighter text for subtitle */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-newbie-guide-game-recommendations__section {
  padding: 80px 0;
  text-align: center;
}

.page-newbie-guide-game-recommendations__section--intro {
  background-color: #1A2E44;
}

.page-newbie-guide-game-recommendations__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for section titles */
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-newbie-guide-game-recommendations__text {
  font-size: 1.1em;
  color: #e5d1bb;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.page-newbie-guide-game-recommendations__text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-newbie-guide-game-recommendations__text a:hover {
  text-decoration: underline;
}

.page-newbie-guide-game-recommendations__highlight {
  color: #FFD700;
}

.page-newbie-guide-game-recommendations__btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FFD700; /* Accent color for buttons */
  color: #1A2E44; /* Dark text on accent button */
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 10px;
}

.page-newbie-guide-game-recommendations__btn:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-newbie-guide-game-recommendations__btn--primary {
  background-color: #FFD700;
  color: #1A2E44;
}

.page-newbie-guide-game-recommendations__btn--primary:hover {
  background-color: #e6c200;
}

.page-newbie-guide-game-recommendations__btn--secondary {
  background-color: #3a5068;
  color: #e5d1bb;
  border: 2px solid #FFD700;
}

.page-newbie-guide-game-recommendations__btn--secondary:hover {
  background-color: #2b3a4a;
  border-color: #e6c200;
}

.page-newbie-guide-game-recommendations__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-newbie-guide-game-recommendations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-newbie-guide-game-recommendations__game-card {
  background-color: #2c415a; /* Slightly lighter dark blue for cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-newbie-guide-game-recommendations__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-newbie-guide-game-recommendations__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

.page-newbie-guide-game-recommendations__game-title {
  font-size: 1.8em;
  color: #FFD700; /* Accent color for game titles */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-newbie-guide-game-recommendations__game-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-newbie-guide-game-recommendations__game-title a:hover {
  text-decoration: underline;
}

.page-newbie-guide-game-recommendations__game-description {
  font-size: 1em;
  color: #e5d1bb;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-newbie-guide-game-recommendations__game-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-newbie-guide-game-recommendations__game-features li {
  margin-bottom: 8px;
  color: #e5d1bb;
}

.page-newbie-guide-game-recommendations__game-features li strong {
  color: #FFD700;
}

.page-newbie-guide-game-recommendations__section--guide {
  background-color: #1A2E44;
}

.page-newbie-guide-game-recommendations__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-newbie-guide-game-recommendations__step-card {
  background-color: #2c415a;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-newbie-guide-game-recommendations__step-card:hover {
  transform: translateY(-5px);
}

.page-newbie-guide-game-recommendations__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #FFD700;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-game-recommendations__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-newbie-guide-game-recommendations__step-description {
  font-size: 0.95em;
  color: #e5d1bb;
  margin-bottom: 20px;
}

.page-newbie-guide-game-recommendations__section--tips {
  background-color: #1A2E44;
}

.page-newbie-guide-game-recommendations__flex-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.page-newbie-guide-game-recommendations__tips-list {
  flex: 2;
  min-width: 300px;
  text-align: left;
}

.page-newbie-guide-game-recommendations__tip-item {
  background-color: #2c415a;
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-game-recommendations__tip-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-newbie-guide-game-recommendations__side-image {
  flex: 1;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700;
}

.page-newbie-guide-game-recommendations__section--cta {
  background-color: #2c415a;
  padding: 60px 0;
}

.page-newbie-guide-game-recommendations__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-newbie-guide-game-recommendations__section--faq {
  background-color: #1A2E44;
}

.page-newbie-guide-game-recommendations__faq-item {
  background-color: #2c415a;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-game-recommendations__faq-question {
  font-size: 1.2em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-newbie-guide-game-recommendations__faq-question a {
  color: #FFD700;
  text-decoration: none;
}

.page-newbie-guide-game-recommendations__faq-question a:hover {
  text-decoration: underline;
}

.page-newbie-guide-game-recommendations__faq-answer {
  font-size: 1em;
  color: #e5d1bb;
}

.page-newbie-guide-game-recommendations__faq-answer a {
  color: #FFD700;
  text-decoration: none;
}

.page-newbie-guide-game-recommendations__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-newbie-guide-game-recommendations__title {
    font-size: 2.8em;
  }
  .page-newbie-guide-game-recommendations__section-title {
    font-size: 2em;
  }
  .page-newbie-guide-game-recommendations__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-newbie-guide-game-recommendations__flex-content {
    flex-direction: column;
  }
  .page-newbie-guide-game-recommendations__side-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-newbie-guide-game-recommendations__hero {
    padding: 80px 0;
  }
  .page-newbie-guide-game-recommendations__title {
    font-size: 2.2em;
  }
  .page-newbie-guide-game-recommendations__subtitle {
    font-size: 1.2em;
  }
  .page-newbie-guide-game-recommendations__section {
    padding: 60px 0;
  }
  .page-newbie-guide-game-recommendations__section-title {
    font-size: 1.8em;
  }
  .page-newbie-guide-game-recommendations__grid, .page-newbie-guide-game-recommendations__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-newbie-guide-game-recommendations__game-image {
    height: 180px;
  }
  .page-newbie-guide-game-recommendations__game-title {
    font-size: 1.5em;
  }
  .page-newbie-guide-game-recommendations__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-newbie-guide-game-recommendations__hero {
    padding: 60px 0;
  }
  .page-newbie-guide-game-recommendations__title {
    font-size: 1.8em;
  }
  .page-newbie-guide-game-recommendations__subtitle {
    font-size: 1em;
  }
  .page-newbie-guide-game-recommendations__section {
    padding: 40px 0;
  }
  .page-newbie-guide-game-recommendations__section-title {
    font-size: 1.5em;
  }
  .page-newbie-guide-game-recommendations__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-newbie-guide-game-recommendations__game-card, .page-newbie-guide-game-recommendations__step-card, .page-newbie-guide-game-recommendations__tip-item, .page-newbie-guide-game-recommendations__faq-item {
    padding: 20px;
  }
  .page-newbie-guide-game-recommendations__game-title {
    font-size: 1.3em;
  }
  .page-newbie-guide-game-recommendations__step-title {
    font-size: 1.3em;
  }
  .page-newbie-guide-game-recommendations__tip-title {
    font-size: 1.1em;
  }
  .page-newbie-guide-game-recommendations__faq-question {
    font-size: 1.1em;
  }
}