/* style/resources-loto188-com-registration-tutorial.css */
.page-resources-loto188-com-registration-tutorial {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text should be light */
  background-color: var(--black-color); /* Inherited from shared, which is dark */
}

.page-resources-loto188-com-registration-tutorial__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-loto188-com-registration-tutorial__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.page-resources-loto188-com-registration-tutorial__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-resources-loto188-com-registration-tutorial__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.page-resources-loto188-com-registration-tutorial__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.page-resources-loto188-com-registration-tutorial__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-loto188-com-registration-tutorial__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

/* General Section Styling */
.page-resources-loto188-com-registration-tutorial__introduction-section,
.page-resources-loto188-com-registration-tutorial__notes-section,
.page-resources-loto188-com-registration-tutorial__faq-section,
.page-resources-loto188-com-registration-tutorial__cta-section {
  padding: 80px 0;
}

.page-resources-loto188-com-registration-tutorial__steps-section,
.page-resources-loto188-com-registration-tutorial__after-reg-section {
  padding: 80px 0;
  background-color: #26A9E0; /* Brand color as background */
  color: #FFFFFF;
}

.page-resources-loto188-com-registration-tutorial__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-resources-loto188-com-registration-tutorial__dark-bg {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-resources-loto188-com-registration-tutorial__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherit color from section background */
}

.page-resources-loto188-com-registration-tutorial__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

.page-resources-loto188-com-registration-tutorial__sub-title,
.page-resources-loto188-com-registration-tutorial__step-title,
.page-resources-loto188-com-registration-tutorial__note-title,
.page-resources-loto188-com-registration-tutorial__column-title {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: inherit;
}

.page-resources-loto188-com-registration-tutorial__text-block p {
  margin-bottom: 15px;
  color: inherit;
}

/* Buttons */
.page-resources-loto188-com-registration-tutorial__btn-primary,
.page-resources-loto188-com-registration-tutorial__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-resources-loto188-com-registration-tutorial__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-resources-loto188-com-registration-tutorial__btn-primary:hover {
  background-color: #d46a00;
  border-color: #d46a00;
}

.page-resources-loto188-com-registration-tutorial__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0; /* Brand color for secondary action */
  border: 2px solid #26A9E0;
}

.page-resources-loto188-com-registration-tutorial__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1e87c0;
  border-color: #1e87c0;
}

/* Inline links */
.page-resources-loto188-com-registration-tutorial__inline-link {
  color: #EA7C07; /* Login color for visibility */
  text-decoration: underline;
}

.page-resources-loto188-com-registration-tutorial__inline-link:hover {
  color: #d46a00;
}

/* Steps Grid */
.page-resources-loto188-com-registration-tutorial__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-loto188-com-registration-tutorial__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-loto188-com-registration-tutorial__step-icon {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #EA7C07;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 3px solid #FFFFFF;
}

.page-resources-loto188-com-registration-tutorial__step-image,
.page-resources-loto188-com-registration-tutorial__note-image,
.page-resources-loto188-com-registration-tutorial__column-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  object-fit: cover;
  max-width: 100%; /* Ensure images are responsive */
  display: block;
}

/* Notes Section */
.page-resources-loto188-com-registration-tutorial__notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-loto188-com-registration-tutorial__note-item {
  background-color: #FFFFFF;
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* After Registration Section */
.page-resources-loto188-com-registration-tutorial__grid-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-resources-loto188-com-registration-tutorial__column-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* FAQ Section */
.page-resources-loto188-com-registration-tutorial__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-loto188-com-registration-tutorial__faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-loto188-com-registration-tutorial__faq-question {
  background-color: #f9f9f9;
  color: #333333;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-loto188-com-registration-tutorial__faq-question:hover {
  background-color: #eaeaea;
}

.page-resources-loto188-com-registration-tutorial__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-loto188-com-registration-tutorial__faq-item.active .page-resources-loto188-com-registration-tutorial__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-loto188-com-registration-tutorial__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #FFFFFF;
  color: #333333;
}

.page-resources-loto188-com-registration-tutorial__faq-item.active .page-resources-loto188-com-registration-tutorial__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px;
}

.page-resources-loto188-com-registration-tutorial__btn-contact {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* Call to Action Section */
.page-resources-loto188-com-registration-tutorial__cta-section {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-loto188-com-registration-tutorial__hero-title {
    font-size: 3em;
  }
  .page-resources-loto188-com-registration-tutorial__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-loto188-com-registration-tutorial {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-resources-loto188-com-registration-tutorial__hero-section {
    height: 450px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-loto188-com-registration-tutorial__hero-title {
    font-size: 2em;
  }
  .page-resources-loto188-com-registration-tutorial__hero-description {
    font-size: 1em;
  }
  .page-resources-loto188-com-registration-tutorial__introduction-section,
  .page-resources-loto188-com-registration-tutorial__steps-section,
  .page-resources-loto188-com-registration-tutorial__notes-section,
  .page-resources-loto188-com-registration-tutorial__after-reg-section,
  .page-resources-loto188-com-registration-tutorial__faq-section,
  .page-resources-loto188-com-registration-tutorial__cta-section {
    padding: 40px 0;
  }
  .page-resources-loto188-com-registration-tutorial__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-loto188-com-registration-tutorial__section-description {
    margin-bottom: 40px;
  }
  .page-resources-loto188-com-registration-tutorial__sub-title,
  .page-resources-loto188-com-registration-tutorial__step-title,
  .page-resources-loto188-com-registration-tutorial__note-title,
  .page-resources-loto188-com-registration-tutorial__column-title {
    font-size: 1.4em;
  }

  /* Image Responsive */
  .page-resources-loto188-com-registration-tutorial img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-loto188-com-registration-tutorial__container,
  .page-resources-loto188-com-registration-tutorial__hero-content,
  .page-resources-loto188-com-registration-tutorial__steps-grid,
  .page-resources-loto188-com-registration-tutorial__notes-grid,
  .page-resources-loto188-com-registration-tutorial__grid-columns,
  .page-resources-loto188-com-registration-tutorial__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

  /* Button Responsive */
  .page-resources-loto188-com-registration-tutorial__btn-primary,
  .page-resources-loto188-com-registration-tutorial__btn-secondary,
  .page-resources-loto188-com-registration-tutorial a[class*="button"],
  .page-resources-loto188-com-registration-tutorial 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;
  }
  .page-resources-loto188-com-registration-tutorial__cta-buttons,
  .page-resources-loto188-com-registration-tutorial__button-group,
  .page-resources-loto188-com-registration-tutorial__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-resources-loto188-com-registration-tutorial__hero-content .page-resources-loto188-com-registration-tutorial__btn-primary {
    width: auto !important; /* Allow button to size naturally if not full width */
    max-width: 250px !important;
  }
  .page-resources-loto188-com-registration-tutorial__btn-contact {
    width: 100% !important;
    max-width: 300px !important;
  }
}

@media (max-width: 480px) {
  .page-resources-loto188-com-registration-tutorial__hero-title {
    font-size: 1.8em;
  }
  .page-resources-loto188-com-registration-tutorial__hero-section {
    height: 350px;
  }
  .page-resources-loto188-com-registration-tutorial__step-item,
  .page-resources-loto188-com-registration-tutorial__note-item,
  .page-resources-loto188-com-registration-tutorial__column-item {
    padding: 20px;
  }
  .page-resources-loto188-com-registration-tutorial__step-icon {
    width: 60px;
    height: 60px;
    font-size: 2em;
  }
}