.page-blog-mibet-access-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark body background */
  background-color: var(--black-color); /* Inherit from shared.css */
}

.page-blog-mibet-access-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: var(--black-color);
  overflow: hidden;
}

.page-blog-mibet-access-guide__hero-image {
  width: 100%;
  height: auto;
  max-height: 675px;
  object-fit: cover;
  display: block;
}

.page-blog-mibet-access-guide__hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: 40px;
}

.page-blog-mibet-access-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-mibet-access-guide__description {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.page-blog-mibet-access-guide__section {
  padding: 60px 0;
  background-color: #1a1a1a;
  color: #f0f0f0;
}

.page-blog-mibet-access-guide__section:nth-child(even) {
  background-color: var(--black-color);
}

.page-blog-mibet-access-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-mibet-access-guide__section-title {
  font-size: 2.2rem;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-mibet-access-guide__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px 0;
  display: block;
  object-fit: cover;
}

.page-blog-mibet-access-guide__security-image {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-mibet-access-guide__method-list,
.page-blog-mibet-access-guide__steps,
.page-blog-mibet-access-guide__game-categories {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.page-blog-mibet-access-guide__method-list {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-blog-mibet-access-guide__steps {
  grid-template-columns: 1fr 1fr;
}

.page-blog-mibet-access-guide__game-categories {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-blog-mibet-access-guide__method-item,
.page-blog-mibet-access-guide__step-item,
.page-blog-mibet-access-guide__game-card {
  background-color: #2a2a2a;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
}

.page-blog-mibet-access-guide__method-title,
.page-blog-mibet-access-guide__step-title,
.page-blog-mibet-access-guide__game-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-mibet-access-guide__game-card p {
  margin-bottom: 20px;
}

.page-blog-mibet-access-guide__read-more {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog-mibet-access-guide__read-more:hover {
  color: #FFFFFF;
}

.page-blog-mibet-access-guide__note {
  font-style: italic;
  color: #bbb;
  margin-top: 15px;
}

.page-blog-mibet-access-guide__promotion-section {
  background-color: #26A9E0;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-top: 60px;
  color: #FFFFFF;
}

.page-blog-mibet-access-guide__promotion-title {
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-blog-mibet-access-guide__security-list,
.page-blog-mibet-access-guide__faq-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-mibet-access-guide__security-list li {
  background-color: #2a2a2a;
  padding: 15px 20px;
  border-radius: 5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #f0f0f0;
}

.page-blog-mibet-access-guide__security-list li strong {
  color: #26A9E0;
  margin-right: 8px;
}

.page-blog-mibet-access-guide__contact-info p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #f0f0f0;
  text-align: center;
}

.page-blog-mibet-access-guide__contact-info strong {
  color: #26A9E0;
}

.page-blog-mibet-access-guide__faq-item {
  background-color: #2a2a2a;
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  color: #f0f0f0;
}

.page-blog-mibet-access-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #3a3a3a;
  cursor: pointer;
  font-weight: bold;
  color: #FFFFFF;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-mibet-access-guide__faq-question:hover {
  background-color: #4a4a4a;
}

.page-blog-mibet-access-guide__faq-qtext {
  flex-grow: 1;
  color: #FFFFFF;
}

.page-blog-mibet-access-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-blog-mibet-access-guide__faq-answer {
  padding: 0 20px 20px 20px;
  background-color: #2a2a2a;
  color: #f0f0f0;
}

.page-blog-mibet-access-guide__faq-answer p {
  margin: 0;
}

/* Details element specific styling */
.page-blog-mibet-access-guide__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-mibet-access-guide__faq-item summary {
  list-style: none;
}

.page-blog-mibet-access-guide__conclusion {
  text-align: center;
  background-color: #1a1a1a;
  padding-bottom: 80px;
}

.page-blog-mibet-access-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
  border: 2px solid transparent;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-mibet-access-guide__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-blog-mibet-access-guide__btn-primary:hover {
  background-color: #1e87c2;
}

.page-blog-mibet-access-guide__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border-color: #26A9E0;
}

.page-blog-mibet-access-guide__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1e87c2;
  border-color: #1e87c2;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-blog-mibet-access-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-mibet-access-guide__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-mibet-access-guide__hero-content {
    padding: 15px;
    margin-top: 20px;
  }

  .page-blog-mibet-access-guide__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-blog-mibet-access-guide__description {
    font-size: 1rem;
  }

  .page-blog-mibet-access-guide__section {
    padding: 40px 0;
  }

  .page-blog-mibet-access-guide__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-mibet-access-guide__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Images responsive */
  .page-blog-mibet-access-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Image containers responsive */
  .page-blog-mibet-access-guide__security-image,
  .page-blog-mibet-access-guide__game-image,
  .page-blog-mibet-access-guide__support-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-mibet-access-guide__method-list,
  .page-blog-mibet-access-guide__steps,
  .page-blog-mibet-access-guide__game-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-mibet-access-guide__method-item,
  .page-blog-mibet-access-guide__step-item,
  .page-blog-mibet-access-guide__game-card {
    padding: 20px;
  }

  .page-blog-mibet-access-guide__promotion-section {
    padding: 30px;
  }

  .page-blog-mibet-access-guide__promotion-title {
    font-size: 1.5rem;
  }

  .page-blog-mibet-access-guide__cta-button {
    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-mibet-access-guide__cta-buttons,
  .page-blog-mibet-access-guide__button-group,
  .page-blog-mibet-access-guide__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;
    display: flex;
    flex-direction: column; /* Ensure vertical stacking for multiple buttons */
  }

  .page-blog-mibet-access-guide__faq-question {
    padding: 15px;
  }

  .page-blog-mibet-access-guide__faq-answer {
    padding: 0 15px 15px 15px;
  }
}