/* style/resources-shbet-login-tutorial.css */
.page-resources-shbet-login-tutorial {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Main text color for dark body background */
  background-color: #1a1a2e; /* Inherited from body, but explicitly set for clarity */
}

.page-resources-shbet-login-tutorial__hero-section {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  box-sizing: border-box;
}

.page-resources-shbet-login-tutorial__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-shbet-login-tutorial__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-resources-shbet-login-tutorial__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
  color: #ffffff;
}

.page-resources-shbet-login-tutorial__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

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

.page-resources-shbet-login-tutorial__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-resources-shbet-login-tutorial__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0;
}

.page-resources-shbet-login-tutorial__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-shbet-login-tutorial__content-section {
  padding: 80px 0;
}

.page-resources-shbet-login-tutorial__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-shbet-login-tutorial__dark-bg {
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-resources-shbet-login-tutorial__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: center;
}

.page-resources-shbet-login-tutorial__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-shbet-login-tutorial__feature-item {
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-resources-shbet-login-tutorial__feature-item:hover {
  transform: translateY(-10px);
}

.page-resources-shbet-login-tutorial__feature-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-shbet-login-tutorial__feature-description {
  font-size: 1em;
  color: #555555;
}

.page-resources-shbet-login-tutorial__card {
  background: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-resources-shbet-login-tutorial__btn-primary,
.page-resources-shbet-login-tutorial__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
}

.page-resources-shbet-login-tutorial__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-shbet-login-tutorial__btn-primary:hover {
  background: #1e87b7;
  border-color: #1e87b7;
}

.page-resources-shbet-login-tutorial__btn-secondary {
  background: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-shbet-login-tutorial__btn-secondary:hover {
  background: #26A9E0;
  color: #ffffff;
}

.page-resources-shbet-login-tutorial__video-section {
  padding: 80px 0;
  text-align: center;
}

.page-resources-shbet-login-tutorial__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-shbet-login-tutorial__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  cursor: pointer;
}

.page-resources-shbet-login-tutorial__video-cta {
  margin-top: 30px;
}

.page-resources-shbet-login-tutorial__step-by-step {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.page-resources-shbet-login-tutorial__step-item {
  text-align: center;
  padding: 20px;
}

.page-resources-shbet-login-tutorial__step-title {
  font-size: 2em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-shbet-login-tutorial__step-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-resources-shbet-login-tutorial__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-shbet-login-tutorial__inline-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-resources-shbet-login-tutorial__mobile-app-guide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
}

.page-resources-shbet-login-tutorial__mobile-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: center;
}

.page-resources-shbet-login-tutorial__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-shbet-login-tutorial__mobile-steps {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  list-style: none;
  padding: 0;
  text-align: left;
}

.page-resources-shbet-login-tutorial__mobile-steps li {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-shbet-login-tutorial__mobile-step-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-resources-shbet-login-tutorial__mobile-steps li p {
  color: #f0f0f0;
}

.page-resources-shbet-login-tutorial__mobile-cta {
  margin-top: 40px;
  text-align: center;
}

.page-resources-shbet-login-tutorial__troubleshooting-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-resources-shbet-login-tutorial__troubleshooting-list li {
  background-color: #f8f8f8;
  color: #333333;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-shbet-login-tutorial__troubleshooting-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-resources-shbet-login-tutorial__troubleshooting-description {
  font-size: 1em;
  color: #555555;
}

.page-resources-shbet-login-tutorial__support-cta {
  margin-top: 40px;
  text-align: center;
}

.page-resources-shbet-login-tutorial__security-tips-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 50px;
  margin-top: 40px;
}

.page-resources-shbet-login-tutorial__security-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-shbet-login-tutorial__security-tips {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  list-style: none;
  padding: 0;
}

.page-resources-shbet-login-tutorial__security-tips li {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-shbet-login-tutorial__security-tip-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-resources-shbet-login-tutorial__security-tips li p {
  color: #f0f0f0;
}

.page-resources-shbet-login-tutorial__faq-section {
  padding: 80px 0;
}

.page-resources-shbet-login-tutorial__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-shbet-login-tutorial__faq-item {
  background-color: #f8f8f8;
  color: #333333;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-shbet-login-tutorial__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #333333;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.page-resources-shbet-login-tutorial__faq-question h3 {
  margin: 0;
  color: #333333;
}

.page-resources-shbet-login-tutorial__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  transition: transform 0.3s ease;
  color: #26A9E0;
}

.page-resources-shbet-login-tutorial__faq-item.active .page-resources-shbet-login-tutorial__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-shbet-login-tutorial__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #555555;
}

.page-resources-shbet-login-tutorial__faq-item.active .page-resources-shbet-login-tutorial__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px !important;
}

.page-resources-shbet-login-tutorial__faq-answer p {
  margin: 0;
  color: #555555;
}

.page-resources-shbet-login-tutorial__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-resources-shbet-login-tutorial__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-shbet-login-tutorial__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-resources-shbet-login-tutorial__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Override for Login button color */
.page-resources-shbet-login-tutorial__hero-actions .page-resources-shbet-login-tutorial__btn-primary,
.page-resources-shbet-login-tutorial__mobile-cta .page-resources-shbet-login-tutorial__btn-primary,
.page-resources-shbet-login-tutorial__cta-buttons .page-resources-shbet-login-tutorial__btn-primary {
  background: #EA7C07;
  border-color: #EA7C07;
}

.page-resources-shbet-login-tutorial__hero-actions .page-resources-shbet-login-tutorial__btn-primary:hover,
.page-resources-shbet-login-tutorial__mobile-cta .page-resources-shbet-login-tutorial__btn-primary:hover,
.page-resources-shbet-login-tutorial__cta-buttons .page-resources-shbet-login-tutorial__btn-primary:hover {
  background: #d46d06;
  border-color: #d46d06;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-resources-shbet-login-tutorial__hero-title {
    font-size: 2.8em;
  }
  .page-resources-shbet-login-tutorial__section-title,
  .page-resources-shbet-login-tutorial__cta-title {
    font-size: 2em;
  }
  .page-resources-shbet-login-tutorial__feature-item,
  .page-resources-shbet-login-tutorial__troubleshooting-list li,
  .page-resources-shbet-login-tutorial__security-tips li,
  .page-resources-shbet-login-tutorial__faq-item {
    padding: 20px;
  }
  .page-resources-shbet-login-tutorial__hero-actions,
  .page-resources-shbet-login-tutorial__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-shbet-login-tutorial__btn-primary,
  .page-resources-shbet-login-tutorial__btn-secondary {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-resources-shbet-login-tutorial__hero-section {
    height: auto;
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-shbet-login-tutorial__hero-title {
    font-size: 2em;
  }
  .page-resources-shbet-login-tutorial__hero-description {
    font-size: 1em;
  }
  .page-resources-shbet-login-tutorial__section-title,
  .page-resources-shbet-login-tutorial__cta-title {
    font-size: 1.8em;
  }
  .page-resources-shbet-login-tutorial__text-block {
    font-size: 0.95em;
  }
  .page-resources-shbet-login-tutorial__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-shbet-login-tutorial__mobile-app-guide,
  .page-resources-shbet-login-tutorial__security-tips-grid {
    flex-direction: column;
    gap: 30px;
  }
  .page-resources-shbet-login-tutorial__mobile-image-wrapper,
  .page-resources-shbet-login-tutorial__security-image {
    min-width: unset;
    max-width: 100%;
  }
  .page-resources-shbet-login-tutorial__mobile-steps,
  .page-resources-shbet-login-tutorial__security-tips {
    min-width: unset;
    max-width: 100%;
  }
  .page-resources-shbet-login-tutorial__btn-primary,
  .page-resources-shbet-login-tutorial__btn-secondary,
  .page-resources-shbet-login-tutorial a[class*="button"],
  .page-resources-shbet-login-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-shbet-login-tutorial__hero-actions,
  .page-resources-shbet-login-tutorial__cta-buttons,
  .page-resources-shbet-login-tutorial__button-group,
  .page-resources-shbet-login-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;
    flex-direction: column;
  }
  .page-resources-shbet-login-tutorial img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-shbet-login-tutorial__section,
  .page-resources-shbet-login-tutorial__card,
  .page-resources-shbet-login-tutorial__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-shbet-login-tutorial video,
  .page-resources-shbet-login-tutorial__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-shbet-login-tutorial__video-section,
  .page-resources-shbet-login-tutorial__video-container,
  .page-resources-shbet-login-tutorial__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-resources-shbet-login-tutorial__video-wrapper {
    padding-bottom: 56.25% !important;
  }
}