/* style/beginner-guide-registration.css */

/* Base Styles for Page Content */
.page-beginner-guide-registration {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

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

.page-beginner-guide-registration__section {
  padding: 60px 0;
  text-align: center;
}

.page-beginner-guide-registration__dark-section {
  background-color: #1a1a2e; /* Inherit from body background */
  color: #ffffff;
}

.page-beginner-guide-registration__section-title {
  font-size: 36px;
  color: #017439; /* Brand color for titles */
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

.page-beginner-guide-registration__dark-section .page-beginner-guide-registration__section-title {
  color: #ffffff; /* White title on dark background */
}

.page-beginner-guide-registration p {
  margin-bottom: 15px;
  font-size: 17px;
  color: #f0f0f0;
}

.page-beginner-guide-registration__dark-section p {
  color: #f0f0f0;
}

.page-beginner-guide-registration__hero-section {
  padding: 120px 20px 80px; /* Adjusted to accommodate header offset */
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero_main:1920x1080:shbet registration,online gambling,vietnam,welcome bonus]') no-repeat center center/cover;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-beginner-guide-registration__hero-section .page-beginner-guide-registration__container {
  max-width: 900px;
}

.page-beginner-guide-registration__main-title {
  font-size: 48px;
  color: #FFFF00; /* Register/Login font color */
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-registration__intro-description {
  font-size: 20px;
  margin-bottom: 40px;
  color: #ffffff;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-registration__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-beginner-guide-registration__btn-primary,
.page-beginner-guide-registration__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;
  word-wrap: break-word;
}

.page-beginner-guide-registration__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-beginner-guide-registration__btn-primary:hover {
  background-color: #a30606;
  border-color: #a30606;
}

.page-beginner-guide-registration__btn-secondary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-beginner-guide-registration__btn-secondary:hover {
  background-color: #005f2e;
  border-color: #005f2e;
}

.page-beginner-guide-registration__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.page-beginner-guide-registration__content-wrapper:last-child {
  margin-bottom: 0;
}

.page-beginner-guide-registration__text-block {
  flex: 1;
}

.page-beginner-guide-registration__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-beginner-guide-registration__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-registration__list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 20px;
}

.page-beginner-guide-registration__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  color: #ffffff;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-registration__list-item strong {
  color: #FFFF00; /* Highlight important text */
  margin-right: 8px;
  flex-shrink: 0;
}

.page-beginner-guide-registration__list-item p {
  margin-bottom: 0;
  color: #f0f0f0;
}

/* Step Cards */
.page-beginner-guide-registration__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-beginner-guide-registration__step-title {
  font-size: 28px;
  color: #FFFF00; /* Register/Login font color */
  margin-bottom: 25px;
  font-weight: bold;
}

.page-beginner-guide-registration__step-card .page-beginner-guide-registration__text-block p {
  color: #f0f0f0;
}

.page-beginner-guide-registration__step-card .page-beginner-guide-registration__btn-primary {
  margin-top: 20px;
}

/* Benefits Grid */
.page-beginner-guide-registration__grid-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-beginner-guide-registration__benefit-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-beginner-guide-registration__benefit-icon {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-beginner-guide-registration__benefit-card p {
  font-size: 16px;
  color: #f0f0f0;
}

/* FAQ Section */
.page-beginner-guide-registration__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-beginner-guide-registration__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-registration__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #017439; /* Brand color for question background */
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-beginner-guide-registration__faq-question:hover {
  background-color: #005f2e;
}

.page-beginner-guide-registration__faq-title {
  margin: 0;
  font-size: 18px;
  color: #ffffff;
}

.page-beginner-guide-registration__faq-toggle {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-beginner-guide-registration__faq-item.active .page-beginner-guide-registration__faq-toggle {
  transform: rotate(45deg);
}

.page-beginner-guide-registration__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-beginner-guide-registration__faq-item.active .page-beginner-guide-registration__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px 25px;
}

.page-beginner-guide-registration__faq-answer p {
  margin-bottom: 0;
  color: #f0f0f0;
}

.page-beginner-guide-registration__conclusion .page-beginner-guide-registration__cta-buttons {
  margin-top: 40px;
}

.page-beginner-guide-registration__cta-buttons--center {
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-beginner-guide-registration__main-title {
    font-size: 40px;
  }

  .page-beginner-guide-registration__section-title {
    font-size: 30px;
  }

  .page-beginner-guide-registration__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-beginner-guide-registration__content-wrapper--reverse-mobile {
    flex-direction: column-reverse;
  }

  .page-beginner-guide-registration__image-wrapper {
    min-width: unset;
    width: 100%;
  }

  .page-beginner-guide-registration__grid-benefits {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-registration {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-beginner-guide-registration__hero-section {
    padding: 100px 15px 60px; /* Adjust for mobile header offset */
    padding-top: var(--header-offset, 120px) !important;
    min-height: 400px;
  }

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

  .page-beginner-guide-registration__intro-description {
    font-size: 18px;
  }

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

  .page-beginner-guide-registration__section-title {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .page-beginner-guide-registration__container,
  .page-beginner-guide-registration__step-card,
  .page-beginner-guide-registration__benefit-card,
  .page-beginner-guide-registration__faq-item {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-beginner-guide-registration__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-beginner-guide-registration__btn-primary,
  .page-beginner-guide-registration__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-beginner-guide-registration__image {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-beginner-guide-registration__image-wrapper,
  .page-beginner-guide-registration__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-beginner-guide-registration__list-item {
    padding: 12px 15px;
    font-size: 15px;
  }

  .page-beginner-guide-registration__step-title {
    font-size: 22px;
  }

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

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

  .page-beginner-guide-registration__faq-answer {
    padding: 15px 20px;
  }
}