/* style/beginner-guide.css */
.page-beginner-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

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

.page-beginner-guide__section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-beginner-guide__section-description {
  font-size: 18px;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-beginner-guide__sub-title {
  font-size: 24px;
  color: #F2FFF6;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-beginner-guide__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-beginner-guide__list li {
  margin-bottom: 10px;
}

/* Buttons */
.page-beginner-guide__btn-primary,
.page-beginner-guide__btn-secondary,
.page-beginner-guide__btn-outline {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-beginner-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-beginner-guide__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-beginner-guide__btn-secondary {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-beginner-guide__btn-secondary:hover {
  background-color: #0A4B2C; /* Deep Green */
  border-color: #57E38D; /* Glow */
}

.page-beginner-guide__btn-outline {
  background-color: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-beginner-guide__btn-outline:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Border with some opacity */
  border-color: #57E38D; /* Glow */
}

.page-beginner-guide__btn-center {
  display: block;
  margin: 30px auto 0 auto;
  max-width: 250px;
}

.page-beginner-guide__link {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

.page-beginner-guide__link:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-beginner-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 500px;
  padding-top: 10px; /* Small top padding */
}

.page-beginner-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6);
}

.page-beginner-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  color: #F2FFF6;
}

.page-beginner-guide__main-title {
  font-size: clamp(36px, 5vw, 58px);
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.page-beginner-guide__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #A7D9B8;
}

/* About Section */
.page-beginner-guide__about-zalv888 {
  background-color: #0A4B2C; /* Deep Green */
}

.page-beginner-guide__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-beginner-guide__text-block {
  color: #F2FFF6;
}

.page-beginner-guide__text-block p {
  margin-bottom: 15px;
}

.page-beginner-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.page-beginner-guide__image--bottom {
  margin-top: 40px;
}

/* Registration Guide */
.page-beginner-guide__registration-guide {
  background-color: #08160F;
}

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

.page-beginner-guide__step-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
  border: 1px solid #1E3A2A;
}

.page-beginner-guide__step-title {
  font-size: 22px;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-beginner-guide__step-item .page-beginner-guide__btn-secondary {
  margin-top: 20px;
}

/* Payment Guide */
.page-beginner-guide__payment-guide {
  background-color: #0A4B2C;
}

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

.page-beginner-guide__card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
  border: 1px solid #1E3A2A;
}

.page-beginner-guide__card-title {
  font-size: 22px;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-beginner-guide__card .page-beginner-guide__btn-outline {
  margin-top: 20px;
}

/* Game Exploration */
.page-beginner-guide__game-exploration {
  background-color: #08160F;
}

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

.page-beginner-guide__game-card {
  background-color: #11271B; /* Card BG */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #F2FFF6;
  border: 1px solid #1E3A2A;
}

.page-beginner-guide__game-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-beginner-guide__game-title {
  font-size: 20px;
  color: #F2FFF6;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-beginner-guide__game-card p {
  color: #A7D9B8;
  margin-bottom: 20px;
}

.page-beginner-guide__game-card .page-beginner-guide__btn-outline {
  margin-top: auto;
}

/* Promotions */
.page-beginner-guide__promotions {
  background-color: #0A4B2C;
}

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

.page-beginner-guide__promo-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
  border: 1px solid #1E3A2A;
}

.page-beginner-guide__promo-title {
  font-size: 22px;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-beginner-guide__promo-item p {
  color: #A7D9B8;
}

.page-beginner-guide__promo-cta {
  text-align: center;
  font-size: 18px;
  color: #F2FFF6;
  margin-top: 40px;
}

/* Strategies */
.page-beginner-guide__strategies {
  background-color: #08160F;
}

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

/* Support & FAQ */
.page-beginner-guide__support-faq {
  background-color: #0A4B2C;
}

.page-beginner-guide__support-info {
  background-color: #11271B;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #1E3A2A;
  margin-bottom: 40px;
  color: #F2FFF6;
}

.page-beginner-guide__support-info p {
  margin-bottom: 15px;
}

.page-beginner-guide__support-info .page-beginner-guide__btn-outline {
  margin-right: 15px;
  margin-top: 15px;
}

.page-beginner-guide__faq-list {
  margin-top: 40px;
}

.page-beginner-guide__faq-item {
  background-color: #11271B; /* Card BG */
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #1E3A2A;
  color: #F2FFF6;
}

.page-beginner-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  color: #F2FFF6;
  list-style: none;
  user-select: none;
}

.page-beginner-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-beginner-guide__faq-toggle {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

.page-beginner-guide__faq-item[open] .page-beginner-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-beginner-guide__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8;
  font-size: 16px;
}

.page-beginner-guide__faq-answer p {
  margin-bottom: 10px;
}

/* Conclusion */
.page-beginner-guide__conclusion {
  background-color: #08160F;
  text-align: center;
}

.page-beginner-guide__conclusion-content {
  padding: 40px 20px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-beginner-guide__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-beginner-guide__content-grid .page-beginner-guide__image {
    order: 2;
  }
  .page-beginner-guide__content-grid .page-beginner-guide__text-block {
    order: 1;
  }
  .page-beginner-guide__hero-section {
    min-height: 600px;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide__section {
    padding: 40px 0;
  }

  .page-beginner-guide__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-beginner-guide__hero-content {
    padding: 20px;
  }

  .page-beginner-guide__main-title {
    font-size: 32px;
  }

  .page-beginner-guide__hero-description {
    font-size: 16px;
  }

  .page-beginner-guide__section-title {
    font-size: 24px;
  }

  .page-beginner-guide__section-description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-beginner-guide__sub-title {
    font-size: 20px;
  }

  /* Mobile image responsive */
  .page-beginner-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-beginner-guide__section,
  .page-beginner-guide__card,
  .page-beginner-guide__container,
  .page-beginner-guide__game-card,
  .page-beginner-guide__promo-item,
  .page-beginner-guide__step-item,
  .page-beginner-guide__support-info,
  .page-beginner-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Mobile button responsive */
  .page-beginner-guide__btn-primary,
  .page-beginner-guide__btn-secondary,
  .page-beginner-guide__btn-outline,
  .page-beginner-guide a[class*="button"],
  .page-beginner-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-beginner-guide__hero-content .page-beginner-guide__btn-primary {
    max-width: 280px !important; /* Allow some smaller width for hero CTA */
    margin: 0 auto;
  }

  .page-beginner-guide__game-card .page-beginner-guide__btn-outline {
    margin-top: 15px; /* Adjust margin for game cards */
  }

  .page-beginner-guide__support-info .page-beginner-guide__btn-outline {
    display: block;
    margin-bottom: 10px;
  }

  .page-beginner-guide__support-info .page-beginner-guide__btn-outline:last-of-type {
    margin-bottom: 0;
  }

  .page-beginner-guide__btn-center {
    max-width: 100% !important;
  }

  .page-beginner-guide__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  .page-beginner-guide__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

  .page-beginner-guide__faq-answer {
    padding: 0 20px 15px;
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  .page-beginner-guide__hero-content {
    padding: 60px 20px;
  }
  .page-beginner-guide__game-categories {
    grid-template-columns: repeat(5, 1fr);
  }
  .page-beginner-guide__promo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-beginner-guide__strategy-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}