.page-blog-how-to-register-fu88 {
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-blog-how-to-register-fu88__section {
  padding: 40px 0;
}

.page-blog-how-to-register-fu88__section-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  color: #FFF5E1;
  line-height: 1.2;
}

.page-blog-how-to-register-fu88__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #FFF5E1;
}

/* Hero Section */
.page-blog-how-to-register-fu88__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #7A0E0E;
}

.page-blog-how-to-register-fu88__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-blog-how-to-register-fu88__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-how-to-register-fu88__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-register-fu88__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-how-to-register-fu88__main-title {
  font-weight: bold;
  color: #FFCC66; /* Glow */
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 204, 102, 0.7);
  margin-bottom: 15px;
  font-size: clamp(28px, 5vw, 48px);
}

.page-blog-how-to-register-fu88__intro-text {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #FFF5E1;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-blog-how-to-register-fu88__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
  color: #ffffff; /* White text for contrast on gold */
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid #F2B544; /* Border */
}

.page-blog-how-to-register-fu88__cta-button:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: #FFCC66;
}

.page-blog-how-to-register-fu88__cta-button--small {
  padding: 12px 30px;
  font-size: 16px;
}

.page-blog-how-to-register-fu88__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
}

/* General Content */
.page-blog-how-to-register-fu88__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.page-blog-how-to-register-fu88__text-block {
  flex: 1;
  min-width: 300px;
  color: #FFF5E1;
}

.page-blog-how-to-register-fu88__image-block {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-blog-how-to-register-fu88__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-blog-how-to-register-fu88__list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.page-blog-how-to-register-fu88__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 17px;
  color: #FFF5E1;
}

.page-blog-how-to-register-fu88__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFCC66; /* Glow */
  font-weight: bold;
}

.page-blog-how-to-register-fu88__steps-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.page-blog-how-to-register-fu88__step-item {
  background-color: #D32F2F; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #F2B544;
}

.page-blog-how-to-register-fu88__step-title {
  font-size: 24px;
  color: #FFCC66; /* Glow */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-how-to-register-fu88__step-item img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-how-to-register-fu88__note-block {
  background-color: #7A0E0E; /* Deep Red */
  padding: 30px;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #F2B544;
}

.page-blog-how-to-register-fu88__note-title {
  font-size: 24px;
  color: #FFCC66; /* Glow */
  margin-bottom: 20px;
  text-align: center;
}

.page-blog-how-to-register-fu88__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-how-to-register-fu88__promo-card {
  background-color: #D32F2F; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #F2B544;
}

.page-blog-how-to-register-fu88__promo-card img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.page-blog-how-to-register-fu88__promo-title {
  font-size: 20px;
  color: #FFCC66; /* Glow */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-how-to-register-fu88__button-group {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
.page-blog-how-to-register-fu88__faq-list {
  margin-top: 30px;
}

details.page-blog-how-to-register-fu88__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #F2B544; /* Border */
  overflow: hidden;
  background: #D32F2F; /* Card BG */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
details.page-blog-how-to-register-fu88__faq-item summary.page-blog-how-to-register-fu88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF5E1;
}
details.page-blog-how-to-register-fu88__faq-item summary.page-blog-how-to-register-fu88__faq-question::-webkit-details-marker {
  display: none;
}
details.page-blog-how-to-register-fu88__faq-item summary.page-blog-how-to-register-fu88__faq-question:hover {
  background: #C91F17; /* Main Color for hover */
}
.page-blog-how-to-register-fu88__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF5E1;
}
.page-blog-how-to-register-fu88__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFCC66; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-blog-how-to-register-fu88__faq-item .page-blog-how-to-register-fu88__faq-answer {
  padding: 0 20px 20px;
  background: #7A0E0E; /* Deep Red for answer background */
  border-radius: 0 0 5px 5px;
  color: #FFF5E1;
}

.page-blog-how-to-register-fu88__call-to-action {
  background-color: #C91F17; /* Main Color */
  padding: 60px 20px;
  text-align: center;
  border-top: 5px solid #F2B544;
}

.page-blog-how-to-register-fu88__text-center {
  text-align: center;
}

/* Image and Button Responsive Styles */
.page-blog-how-to-register-fu88 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-blog-how-to-register-fu88__cta-button,
.page-blog-how-to-register-fu88__btn-primary,
.page-blog-how-to-register-fu88__btn-secondary,
.page-blog-how-to-register-fu88 a[class*="button"],
.page-blog-how-to-register-fu88 a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-register-fu88__cta-buttons,
.page-blog-how-to-register-fu88__button-group,
.page-blog-how-to-register-fu88__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-blog-how-to-register-fu88__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-how-to-register-fu88__hero-image img {
    border-radius: 4px;
  }
  
  .page-blog-how-to-register-fu88__main-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .page-blog-how-to-register-fu88__intro-text {
    font-size: 16px;
  }

  .page-blog-how-to-register-fu88__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-blog-how-to-register-fu88__section-title {
    font-size: clamp(22px, 5vw, 30px);
  }

  .page-blog-how-to-register-fu88__section-description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .page-blog-how-to-register-fu88__content-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .page-blog-how-to-register-fu88__text-block, .page-blog-how-to-register-fu88__image-block {
    min-width: unset;
    width: 100%;
  }

  .page-blog-how-to-register-fu88__list li {
    font-size: 16px;
  }

  .page-blog-how-to-register-fu88__steps-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-blog-how-to-register-fu88__step-title {
    font-size: 20px;
  }

  .page-blog-how-to-register-fu88__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  details.page-blog-how-to-register-fu88__faq-item summary.page-blog-how-to-register-fu88__faq-question {
    padding: 15px;
  }
  .page-blog-how-to-register-fu88__faq-qtext {
    font-size: 15px;
  }
  .page-blog-how-to-register-fu88__faq-toggle {
    font-size: 20px;
    width: 24px;
  }
  details.page-blog-how-to-register-fu88__faq-item .page-blog-how-to-register-fu88__faq-answer {
    padding: 0 15px 15px;
  }

  .page-blog-how-to-register-fu88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-how-to-register-fu88__section,
  .page-blog-how-to-register-fu88__container,
  .page-blog-how-to-register-fu88__promo-card,
  .page-blog-how-to-register-fu88__step-item,
  .page-blog-how-to-register-fu88__note-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-register-fu88__cta-button,
  .page-blog-how-to-register-fu88__btn-primary,
  .page-blog-how-to-register-fu88__btn-secondary,
  .page-blog-how-to-register-fu88 a[class*="button"],
  .page-blog-how-to-register-fu88 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-blog-how-to-register-fu88__cta-buttons,
  .page-blog-how-to-register-fu88__button-group,
  .page-blog-how-to-register-fu88__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-blog-how-to-register-fu88__button-group {
    display: flex;
    flex-direction: column;
  }
}