.page-beginner-guide-choose-first-game {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A1A2E; /* Main dark background */
  line-height: 1.6;
}

.page-beginner-guide-choose-first-game .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-beginner-guide-choose-first-game .hero-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #3a1c4e 50%, #E94560 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-choose-first-game .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(233, 69, 96, 0.7);
}

.page-beginner-guide-choose-first-game .hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #F0F0F0;
}

.page-beginner-guide-choose-first-game .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-choose-first-game .btn-primary {
  background-color: #E94560; /* Accent color */
  color: #FFFFFF;
  border: 2px solid #E94560;
}

.page-beginner-guide-choose-first-game .btn-primary:hover {
  background-color: #FF6B81;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.page-beginner-guide-choose-first-game .btn-secondary {
  background-color: transparent;
  color: #E94560;
  border: 2px solid #E94560;
}

.page-beginner-guide-choose-first-game .btn-secondary:hover {
  background-color: rgba(233, 69, 96, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.2);
}

.page-beginner-guide-choose-first-game .section-title {
  font-size: 2.5em;
  color: #E94560; /* Accent color for titles */
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
  position: relative;
}

.page-beginner-guide-choose-first-game .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E94560;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-beginner-guide-choose-first-game .introduction-section,
.page-beginner-guide-choose-first-game .how-to-choose-section,
.page-beginner-guide-choose-first-game .tips-section,
.page-beginner-guide-choose-first-game .responsible-gaming-section,
.page-beginner-guide-choose-first-game .cta-section,
.page-beginner-guide-choose-first-game .faq-section {
  padding: 60px 0;
  background-color: #1A1A2E;
}

.page-beginner-guide-choose-first-game .game-categories-section {
  background-color: #0F0F1A; /* Slightly darker for contrast */
  padding: 80px 0;
}

.page-beginner-guide-choose-first-game p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #D0D0D0;
}

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

.page-beginner-guide-choose-first-game .game-item {
  background-color: #2A2A3E;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-choose-first-game .game-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(233, 69, 96, 0.3);
}

.page-beginner-guide-choose-first-game .game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-beginner-guide-choose-first-game .game-title {
  font-size: 1.8em;
  color: #E94560;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-beginner-guide-choose-first-game .game-description {
  font-size: 1em;
  color: #C0C0C0;
  padding: 0 20px;
  margin-bottom: 25px;
}

.page-beginner-guide-choose-first-game .btn-game {
  background-color: #E94560;
  color: #FFFFFF;
  padding: 10px 25px;
  font-size: 1em;
  border-radius: 6px;
  border: none;
}

.page-beginner-guide-choose-first-game .btn-game:hover {
  background-color: #FF6B81;
}

.page-beginner-guide-choose-first-game .checklist,
.page-beginner-guide-choose-first-game .numbered-list,
.page-beginner-guide-choose-first-game .responsible-gaming-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 30px;
}

.page-beginner-guide-choose-first-game .checklist li,
.page-beginner-guide-choose-first-game .numbered-list li,
.page-beginner-guide-choose-first-game .responsible-gaming-list li {
  background-color: #2A2A3E;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #E94560;
  border-radius: 8px;
  font-size: 1.1em;
  color: #F0F0F0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-choose-first-game .checklist li strong,
.page-beginner-guide-choose-first-game .numbered-list li strong,
.page-beginner-guide-choose-first-game .responsible-gaming-list li strong {
  color: #E94560;
}

.page-beginner-guide-choose-first-game .cta-section {
  text-align: center;
  background-color: #0F0F1A;
  padding: 80px 0;
}

.page-beginner-guide-choose-first-game .cta-section .section-title {
  color: #FFFFFF;
}

.page-beginner-guide-choose-first-game .cta-section .section-title::after {
  background-color: #E94560;
}

.page-beginner-guide-choose-first-game .cta-buttons {
  margin-top: 40px;
}

.page-beginner-guide-choose-first-game .btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-beginner-guide-choose-first-game .btn-download-app {
  background-color: #1A1A2E;
  color: #E94560;
  border: 2px solid #E94560;
}

.page-beginner-guide-choose-first-game .btn-download-app:hover {
  background-color: #E94560;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.page-beginner-guide-choose-first-game .faq-item {
  background-color: #2A2A3E;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-choose-first-game .faq-question {
  font-size: 1.3em;
  color: #E94560;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-beginner-guide-choose-first-game .faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #E94560;
  transition: transform 0.3s ease;
}

.page-beginner-guide-choose-first-game .faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-beginner-guide-choose-first-game .faq-answer {
  font-size: 1em;
  color: #C0C0C0;
  margin-top: 15px;
  display: none;
}

.page-beginner-guide-choose-first-game .faq-answer.open {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-beginner-guide-choose-first-game .hero-title {
    font-size: 2.5em;
  }

  .page-beginner-guide-choose-first-game .hero-subtitle {
    font-size: 1em;
  }

  .page-beginner-guide-choose-first-game .section-title {
    font-size: 2em;
  }

  .page-beginner-guide-choose-first-game .game-grid {
    grid-template-columns: 1fr;
  }

  .page-beginner-guide-choose-first-game .btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-beginner-guide-choose-first-game .btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-beginner-guide-choose-first-game .faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-choose-first-game .hero-title {
    font-size: 2em;
  }

  .page-beginner-guide-choose-first-game .btn {
    display: block;
    margin: 10px auto;
  }

  .page-beginner-guide-choose-first-game .cta-buttons .btn {
    width: 90%;
  }
}