.page-beginner-guide {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

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

.page-beginner-guide__section {
  padding: 40px 0;
}

.page-beginner-guide__hero-section {
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  padding: 0;
  text-align: center;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-beginner-guide__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Match hero image generation size */
}

.page-beginner-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-beginner-guide__hero-content {
  padding: 30px 20px 50px;
  max-width: 900px;
}

.page-beginner-guide__main-title {
  font-weight: bold;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.2;
}

.page-beginner-guide__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #E0EFFF;
}

.page-beginner-guide__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide__cta-button--small {
  padding: 10px 20px;
  font-size: 1rem;
}

.page-beginner-guide__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-beginner-guide__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-beginner-guide__image-wrapper {
  flex: 1;
  min-width: 200px;
}

.page-beginner-guide__image-wrapper--center {
  text-align: center;
  margin-top: 40px;
}

.page-beginner-guide__section-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-beginner-guide__feature-list,
.page-beginner-guide__tips-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-beginner-guide__feature-item,
.page-beginner-guide__tips-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #1F2D3D;
}

.page-beginner-guide__feature-item::before,
.page-beginner-guide__tips-item::before {
  content: '✅';
  margin-right: 10px;
  font-size: 1.2em;
}

.page-beginner-guide__getting-started {
  background-color: #F4F7FB;
}

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

.page-beginner-guide__step-card {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #1F2D3D;
}

.page-beginner-guide__step-title {
  font-size: 1.5rem;
  color: #2F6BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-beginner-guide__step-description {
  font-size: 1rem;
  margin-bottom: 20px;
  flex-grow: 1;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-beginner-guide__step-button {
  display: inline-block;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.3s ease;
  margin-top: auto;
}

.page-beginner-guide__step-button:hover {
  opacity: 0.9;
}

.page-beginner-guide__game-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.page-beginner-guide__game-button {
  background-color: #6FA3FF;
  color: #FFFFFF;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.page-beginner-guide__game-button:hover {
  background-color: #2F6BFF;
}

.page-beginner-guide__tips-section {
  background-color: #F4F7FB;
}

.page-beginner-guide__responsible-gaming-text {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1rem;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-beginner-guide__faq-section {
  background-color: #FFFFFF;
}

.page-beginner-guide__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-beginner-guide__faq-item {
  background-color: #F4F7FB;
  border: 1px solid #D6E2FF;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide__faq-question {
  font-size: 1.25rem;
  color: #2F6BFF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-beginner-guide__faq-answer {
  font-size: 1rem;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-beginner-guide__final-cta {
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  text-align: center;
  color: #FFFFFF;
}

.page-beginner-guide__final-cta-content {
  padding: 50px 20px;
}

.page-beginner-guide__final-cta .page-beginner-guide__section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-beginner-guide__final-cta .page-beginner-guide__description {
  color: #E0EFFF;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-beginner-guide__content-grid {
    flex-direction: column;
  }
  .page-beginner-guide__content-grid--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide__hero-content {
    padding: 20px 15px 40px;
  }
  .page-beginner-guide__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-beginner-guide__description {
    font-size: 1rem;
  }
  .page-beginner-guide__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-beginner-guide__feature-item,
  .page-beginner-guide__tips-item {
    padding: 12px 15px;
    margin-bottom: 10px;
  }
  .page-beginner-guide__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-beginner-guide__step-card {
    padding: 20px;
  }
  .page-beginner-guide__step-title {
    font-size: 1.3rem;
  }
  .page-beginner-guide__game-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-beginner-guide__game-button {
    width: 80%;
    max-width: 200px;
  }
  .page-beginner-guide__faq-question {
    font-size: 1.15rem;
  }
  .page-beginner-guide__section-image {
    max-width: 100%;
    height: auto;
  }
  /* Mobile content image overflow prevention */
  .page-beginner-guide img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide__container {
    padding: 15px;
  }
  .page-beginner-guide__section {
    padding: 30px 0;
  }
  .page-beginner-guide__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-beginner-guide__feature-item::before,
  .page-beginner-guide__tips-item::before {
    font-size: 1em;
  }
}