/* style/blog-how-to-register-i9bet41.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-color: #EA7C07;
  --background-color: #0a0a0a; /* From body background info */
  --text-light-color: #ffffff;
  --text-dark-color: #333333;
  --border-color: #e0e0e0;
}

.page-blog-how-to-register-i9bet41 {
  color: var(--text-light-color); /* Body is dark, so text is light */
  background-color: var(--background-color);
}

.page-blog-how-to-register-i9bet41__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom */
  text-align: center;
  overflow: hidden;
  background-color: var(--background-color);
}

.page-blog-how-to-register-i9bet41__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-blog-how-to-register-i9bet41__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-top: 40px; /* Separates content from image */
  padding: 0 20px;
}

.page-blog-how-to-register-i9bet41__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-light-color);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
}

.page-blog-how-to-register-i9bet41__description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.page-blog-how-to-register-i9bet41__cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow word breaking */
  box-sizing: border-box;
}

.page-blog-how-to-register-i9bet41__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-how-to-register-i9bet41__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
  transform: translateY(-2px);
}

.page-blog-how-to-register-i9bet41__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 15px;
}

.page-blog-how-to-register-i9bet41__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.page-blog-how-to-register-i9bet41__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

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

.page-blog-how-to-register-i9bet41__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-blog-how-to-register-i9bet41__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-blog-how-to-register-i9bet41__highlight {
  color: var(--primary-color);
  font-weight: 600;
}

.page-blog-how-to-register-i9bet41__link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.page-blog-how-to-register-i9bet41__link:hover {
  text-decoration: underline;
}

/* Background and text color for sections */
.page-blog-how-to-register-i9bet41__dark-bg {
  background-color: var(--background-color);
  color: var(--text-light-color);
}

.page-blog-how-to-register-i9bet41__dark-bg .page-blog-how-to-register-i9bet41__section-title,
.page-blog-how-to-register-i9bet41__dark-bg .page-blog-how-to-register-i9bet41__text-block {
  color: var(--text-light-color);
}

.page-blog-how-to-register-i9bet41__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark-color);
}

.page-blog-how-to-register-i9bet41__light-bg .page-blog-how-to-register-i9bet41__section-title,
.page-blog-how-to-register-i9bet41__light-bg .page-blog-how-to-register-i9bet41__text-block {
  color: var(--text-dark-color);
}

/* Why Choose Section */
.page-blog-how-to-register-i9bet41__why-choose-section .page-blog-how-to-register-i9bet41__section-title {
  color: var(--text-light-color);
}

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

.page-blog-how-to-register-i9bet41__feature-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-light-color);
}

.page-blog-how-to-register-i9bet41__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-blog-how-to-register-i9bet41__feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Registration Guide Section */
.page-blog-how-to-register-i9bet41__registration-guide-section .page-blog-how-to-register-i9bet41__section-title {
  color: var(--text-dark-color);
}

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

.page-blog-how-to-register-i9bet41__step-item {
  background-color: var(--secondary-color);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-dark-color);
  border: 1px solid var(--border-color);
}

.page-blog-how-to-register-i9bet41__step-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Constrain image width */
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-register-i9bet41__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-blog-how-to-register-i9bet41__step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark-color);
  margin-bottom: 20px;
}

.page-blog-how-to-register-i9bet41__note {
  background-color: #fff3cd;
  color: #856404;
  padding: 15px;
  border-left: 5px solid #ffc107;
  border-radius: 5px;
  margin-top: 30px;
  font-size: 0.95rem;
}

/* Deposit Guide Section */
.page-blog-how-to-register-i9bet41__deposit-guide-section .page-blog-how-to-register-i9bet41__section-title {
  color: var(--text-light-color);
}

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

.page-blog-how-to-register-i9bet41__list-item {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: var(--text-light-color);
}

.page-blog-how-to-register-i9bet41__list-item::before {
  content: '✔';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Games Section */
.page-blog-how-to-register-i9bet41__games-section .page-blog-how-to-register-i9bet41__section-title {
  color: var(--text-dark-color);
}

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

.page-blog-how-to-register-i9bet41__game-card {
  background-color: var(--secondary-color);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  color: var(--text-dark-color);
  border: 1px solid var(--border-color);
}

.page-blog-how-to-register-i9bet41__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-how-to-register-i9bet41__game-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 15px 10px 10px 10px;
  line-height: 1.4;
}

.page-blog-how-to-register-i9bet41__game-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-blog-how-to-register-i9bet41__game-title a:hover {
  text-decoration: underline;
}

.page-blog-how-to-register-i9bet41__game-description {
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0 15px 20px 15px;
  color: var(--text-dark-color);
}

/* Promotions Section */
.page-blog-how-to-register-i9bet41__promotions-section .page-blog-how-to-register-i9bet41__section-title {
  color: var(--text-light-color);
}

.page-blog-how-to-register-i9bet41__promo-banner {
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin: 30px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-blog-how-to-register-i9bet41__promotions-section .page-blog-how-to-register-i9bet41__list-item {
  color: var(--text-light-color);
}

/* App Download Section */
.page-blog-how-to-register-i9bet41__app-download-section .page-blog-how-to-register-i9bet41__section-title {
  color: var(--text-dark-color);
}

.page-blog-how-to-register-i9bet41__app-download-section .page-blog-how-to-register-i9bet41__list-item {
  color: var(--text-dark-color);
}

/* Support & FAQ Section */
.page-blog-how-to-register-i9bet41__support-faq-section .page-blog-how-to-register-i9bet41__section-title {
  color: var(--text-light-color);
}

.page-blog-how-to-register-i9bet41__support-channels {
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-blog-how-to-register-i9bet41__support-channels p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-blog-how-to-register-i9bet41__support-channels .page-blog-how-to-register-i9bet41__list-item {
  color: var(--text-light-color);
}

.page-blog-how-to-register-i9bet41__support-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  margin: 30px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-blog-how-to-register-i9bet41__faq-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  color: var(--primary-color);
}

.page-blog-how-to-register-i9bet41__faq-list {
  margin-top: 20px;
}

.page-blog-how-to-register-i9bet41__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-light-color);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-blog-how-to-register-i9bet41__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-light-color);
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-register-i9bet41__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-register-i9bet41__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-blog-how-to-register-i9bet41__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.page-blog-how-to-register-i9bet41__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* Conclusion Section */
.page-blog-how-to-register-i9bet41__conclusion-section .page-blog-how-to-register-i9bet41__section-title {
  color: var(--text-dark-color);
}

.page-blog-how-to-register-i9bet41__conclusion-section .page-blog-how-to-register-i9bet41__text-block {
  color: var(--text-dark-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-how-to-register-i9bet41__hero-content {
    max-width: 700px;
  }
  .page-blog-how-to-register-i9bet41__main-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-register-i9bet41__main-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

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

  .page-blog-how-to-register-i9bet41__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important; /* Remove margin for single column */
  }

  .page-blog-how-to-register-i9bet41__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-how-to-register-i9bet41__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .page-blog-how-to-register-i9bet41__text-block,
  .page-blog-how-to-register-i9bet41__list-item,
  .page-blog-how-to-register-i9bet41__feature-description,
  .page-blog-how-to-register-i9bet41__step-description,
  .page-blog-how-to-register-i9bet41__game-description,
  .page-blog-how-to-register-i9bet41__faq-answer p {
    font-size: 0.95rem;
  }

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

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

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

  /* Image responsiveness */
  .page-blog-how-to-register-i9bet41 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-how-to-register-i9bet41__section,
  .page-blog-how-to-register-i9bet41__card,
  .page-blog-how-to-register-i9bet41__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-how-to-register-i9bet41__hero-section {
    padding-top: 10px !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-how-to-register-i9bet41__hero-content {
    padding: 0;
  }

  .page-blog-how-to-register-i9bet41__game-image {
    height: 180px; /* Adjust height for smaller screens */
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-register-i9bet41__main-title {
    font-size: clamp(1.6rem, 7vw, 2.5rem);
  }

  .page-blog-how-to-register-i9bet41__section-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }

  .page-blog-how-to-register-i9bet41__cta-button {
    font-size: 0.95rem;
  }

  .page-blog-how-to-register-i9bet41__game-image {
    height: 150px;
  }
}