.page-blog-how-to-register-wibet {
  background-color: #08160F; /* Background color from custom palette */
  color: #F2FFF6; /* Text Main color */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-how-to-register-wibet__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-register-wibet__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  padding-bottom: 40px; /* Space below content */
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08160F; /* Ensure background matches body */
  overflow: hidden; /* Ensure no overflow from image */
}

.page-blog-how-to-register-wibet__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height of hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px; /* Space between image and content */
}

.page-blog-how-to-register-wibet__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-register-wibet__hero-content {
  position: relative;
  max-width: 900px;
  padding: 0 20px;
  z-index: 2;
}

.page-blog-how-to-register-wibet__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
  color: #F2C14E; /* Gold color */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-blog-how-to-register-wibet__description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary color */
  margin-bottom: 30px;
}

.page-blog-how-to-register-wibet__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main for button text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure button does not overflow */
  box-sizing: border-box; /* Include padding in width */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-blog-how-to-register-wibet__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-how-to-register-wibet__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2rem;
}

/* General Section Styling */
.page-blog-how-to-register-wibet__introduction-section,
.page-blog-how-to-register-wibet__video-section,
.page-blog-how-to-register-wibet__steps-section,
.page-blog-how-to-register-wibet__security-tips-section,
.page-blog-how-to-register-wibet__benefits-section,
.page-blog-how-to-register-wibet__faq-section,
.page-blog-how-to-register-wibet__cta-section {
  padding: 60px 0;
  background-color: #08160F; /* Consistent background */
}

.page-blog-how-to-register-wibet__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #F2C14E; /* Gold color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog-how-to-register-wibet__subtitle {
  font-size: 1.2rem;
  color: #A7D9B8; /* Text Secondary color */
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-how-to-register-wibet p {
  font-size: 1rem;
  color: #F2FFF6; /* Text Main color */
  margin-bottom: 15px;
}

/* Video Section */
.page-blog-how-to-register-wibet__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  width: 100%; /* Desktop width */
  max-width: 100%;
  background: #11271B; /* Card BG color */
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  margin-top: 20px;
  cursor: pointer;
  box-sizing: border-box;
}

.page-blog-how-to-register-wibet__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.page-blog-how-to-register-wibet__video-caption {
  text-align: center;
  margin-top: 20px;
  font-style: italic;
  color: #A7D9B8;
}

/* Steps Section */
.page-blog-how-to-register-wibet__step-card {
  display: flex;
  align-items: flex-start;
  background-color: #11271B; /* Card BG color */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-how-to-register-wibet__step-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 25px;
}

.page-blog-how-to-register-wibet__step-content {
  flex-grow: 1;
}

.page-blog-how-to-register-wibet__step-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-how-to-register-wibet__step-content p {
  color: #F2FFF6; /* Text Main color */
  margin-bottom: 15px;
}

.page-blog-how-to-register-wibet__step-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Security Tips Section */
.page-blog-how-to-register-wibet__tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-how-to-register-wibet__tip-item {
  background-color: #11271B; /* Card BG color */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-how-to-register-wibet__tip-title {
  font-size: 1.3rem;
  color: #57E38D; /* Glow color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-how-to-register-wibet__tip-item p {
  color: #A7D9B8; /* Text Secondary color */
}

.page-blog-how-to-register-wibet__security-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 40px auto 0 auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Benefits Section */
.page-blog-how-to-register-wibet__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-how-to-register-wibet__benefit-card {
  background-color: #11271B; /* Card BG color */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-how-to-register-wibet__benefit-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-register-wibet__benefit-card p {
  color: #A7D9B8; /* Text Secondary color */
  margin-bottom: 15px;
}

.page-blog-how-to-register-wibet__benefit-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 20px auto 0 auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-blog-how-to-register-wibet__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-how-to-register-wibet__faq-item {
  background-color: #11271B; /* Card BG color */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-register-wibet__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main color */
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-register-wibet__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-register-wibet__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #57E38D; /* Glow color */
  margin-left: 15px;
}

.page-blog-how-to-register-wibet__faq-answer {
  padding: 10px 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary color */
  border-top: 1px solid #1E3A2A; /* Divider color */
}

.page-blog-how-to-register-wibet__faq-answer p {
  margin-bottom: 0;
  color: #A7D9B8; /* Ensure consistent text color */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-register-wibet__hero-content {
    padding: 0 40px;
  }
  .page-blog-how-to-register-wibet__step-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-blog-how-to-register-wibet__step-icon {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .page-blog-how-to-register-wibet__tips-list,
  .page-blog-how-to-register-wibet__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-register-wibet__hero-section {
    min-height: 350px;
    padding-bottom: 20px;
    padding-top: 10px !important; /* Small top padding */
  }

  .page-blog-how-to-register-wibet__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-how-to-register-wibet__description {
    font-size: 1rem;
  }

  .page-blog-how-to-register-wibet__cta-button,
  .page-blog-how-to-register-wibet__cta-button--large {
    padding: 12px 20px !important;
    font-size: 1rem !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-blog-how-to-register-wibet__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
  }

  .page-blog-how-to-register-wibet__subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-blog-how-to-register-wibet p,
  .page-blog-how-to-register-wibet__tip-item p,
  .page-blog-how-to-register-wibet__benefit-card p,
  .page-blog-how-to-register-wibet__faq-answer p {
    font-size: 0.95rem;
  }

  .page-blog-how-to-register-wibet__introduction-section,
  .page-blog-how-to-register-wibet__video-section,
  .page-blog-how-to-register-wibet__steps-section,
  .page-blog-how-to-register-wibet__security-tips-section,
  .page-blog-how-to-register-wibet__benefits-section,
  .page-blog-how-to-register-wibet__faq-section,
  .page-blog-how-to-register-wibet__cta-section {
    padding: 40px 0;
  }

  .page-blog-how-to-register-wibet__container {
    padding: 0 15px;
  }

  /* Image responsive */
  .page-blog-how-to-register-wibet img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-register-wibet__hero-image-wrapper,
  .page-blog-how-to-register-wibet__video-wrapper,
  .page-blog-how-to-register-wibet__step-card,
  .page-blog-how-to-register-wibet__tip-item,
  .page-blog-how-to-register-wibet__benefit-card,
  .page-blog-how-to-register-wibet__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  /* Video responsive */
  .page-blog-how-to-register-wibet__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-register-wibet__video-section {
    padding-top: 10px !important;
  }

  .page-blog-how-to-register-wibet__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-blog-how-to-register-wibet__step-card {
    padding: 20px;
  }

  .page-blog-how-to-register-wibet__step-title {
    font-size: 1.3rem;
  }

  .page-blog-how-to-register-wibet__tip-title,
  .page-blog-how-to-register-wibet__benefit-title {
    font-size: 1.2rem;
  }

  .page-blog-how-to-register-wibet__faq-question {
    font-size: 1.05rem;
    padding: 15px 20px;
  }

  .page-blog-how-to-register-wibet__faq-answer {
    padding: 10px 20px 15px 20px;
  }

  .page-blog-how-to-register-wibet__tips-list,
  .page-blog-how-to-register-wibet__benefits-grid {
    grid-template-columns: 1fr;
  }
}