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

.page-beginner-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-beginner-guide__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title/subtitle */
  border-bottom: 3px solid #FFD700;
}

.page-beginner-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-beginner-guide__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0; /* Light gray for subtitle */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-beginner-guide__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-beginner-guide__btn--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: #000;
  transform: translateY(-3px);
}

.page-beginner-guide__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary */
  border: 2px solid #FFD700;
}

.page-beginner-guide__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-beginner-guide__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-beginner-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-beginner-guide__section:last-of-type {
  border-bottom: none;
}

.page-beginner-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 40px auto;
  color: #B0B0B0;
}

.page-beginner-guide__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-beginner-guide__text-content {
  flex: 1;
}

.page-beginner-guide__text-content p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-beginner-guide__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-beginner-guide__img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide__step-card {
  background-color: #1a2c40; /* Slightly lighter dark blue for cards */
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide__step-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.page-beginner-guide__step-number {
  background-color: #FFD700; /* Gold circle for step numbers */
  color: #0A192F;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-beginner-guide__step-card h3 {
  font-size: 1.8em;
  color: #FFD700; /* Gold for step titles */
  margin: 0;
}

.page-beginner-guide__step-content ol, .page-beginner-guide__step-content ul {
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-beginner-guide__step-content ol li, .page-beginner-guide__step-content ul li {
  margin-bottom: 10px;
}

.page-beginner-guide__step-content h4 {
  font-size: 1.4em;
  color: #FFD700; /* Gold for sub-titles in steps */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-beginner-guide__step-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

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

.page-beginner-guide__game-card {
  background-color: #1a2c40;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-beginner-guide__game-card:hover {
  transform: translateY(-5px);
}

.page-beginner-guide__game-img {
  max-width: 100%;
  height: 180px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide__game-card h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-beginner-guide__game-card p {
  font-size: 0.95em;
  color: #B0B0B0;
  margin-bottom: 20px;
}

.page-beginner-guide__section-subtitle {
  font-size: 2em;
  color: #FFD700;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}

.page-beginner-guide__faq-item {
  background-color: #1a2c40;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-beginner-guide__faq-answer {
  color: #E0E0E0;
  font-size: 1.05em;
}

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

.page-beginner-guide__guide-item {
  background-color: #1a2c40;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-beginner-guide__guide-item:hover {
  transform: translateY(-5px);
}

.page-beginner-guide__guide-item h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-beginner-guide__guide-item h3 a {
  color: #FFD700;
  text-decoration: none;
}

.page-beginner-guide__guide-item h3 a:hover {
  text-decoration: underline;
}

.page-beginner-guide__guide-item p {
  color: #B0B0B0;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-beginner-guide__cta-bottom {
  background: linear-gradient(45deg, #0A192F, #1a3a60);
  padding: 80px 0;
  text-align: center;
  color: #E0E0E0;
  border-top: 3px solid #FFD700;
}

.page-beginner-guide__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-beginner-guide__hero-title {
    font-size: 2.8em;
  }
  .page-beginner-guide__section-title {
    font-size: 2em;
  }
  .page-beginner-guide__content-grid {
    flex-direction: column;
  }
  .page-beginner-guide__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide__hero {
    padding: 80px 0;
  }
  .page-beginner-guide__hero-title {
    font-size: 2.2em;
  }
  .page-beginner-guide__hero-subtitle {
    font-size: 1.1em;
  }
  .page-beginner-guide__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-beginner-guide__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-beginner-guide__section {
    padding: 40px 0;
  }
  .page-beginner-guide__section-title {
    font-size: 1.8em;
  }
  .page-beginner-guide__step-card h3 {
    font-size: 1.5em;
  }
  .page-beginner-guide__step-number {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }
  .page-beginner-guide__game-grid, .page-beginner-guide__guide-list {
    grid-template-columns: 1fr;
  }
  .page-beginner-guide__cta-title {
    font-size: 2em;
  }
  .page-beginner-guide__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide__hero-title {
    font-size: 1.8em;
  }
  .page-beginner-guide__btn {
    width: 90%;
  }
  .page-beginner-guide__section-title {
    font-size: 1.5em;
  }
  .page-beginner-guide__step-card h3 {
    font-size: 1.3em;
  }
  .page-beginner-guide__faq-question {
    font-size: 1.2em;
  }
  .page-beginner-guide__cta-title {
    font-size: 1.8em;
  }
}