/* style/blog-how-to-register-and-claim-rewards-with-mig8-code.css */

.page-blog-how-to-register-and-claim-rewards-with-mig8-code {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__section {
  padding: 60px 0;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__text-block,
.page-blog-how-to-register-and-claim-rewards-with-mig8-code p,
.page-blog-how-to-register-and-claim-rewards-with-mig8-code li {
  font-size: 1em;
  margin-bottom: 1em;
  color: #F2FFF6; /* Text Main */
}

/* Hero Section */
.page-blog-how-to-register-and-claim-rewards-with-mig8-code__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #08160F;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__hero-image-container {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 40px;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* CTA Button */
.page-blog-how-to-register-and-claim-rewards-with-mig8-code__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #ffffff; /* White text for contrast */
  border: none;
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
}

/* Feature List */
.page-blog-how-to-register-and-claim-rewards-with-mig8-code__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__feature-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__feature-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__feature-description {
  color: #A7D9B8; /* Text Secondary */
}

/* Step by Step Guide */
.page-blog-how-to-register-and-claim-rewards-with-mig8-code__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__step-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__step-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  position: relative;
  padding-left: 40px;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__step-title::before {
  content: '▶'; /* Using a simple arrow for visual step */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #2AD16F; /* Button color */
  font-size: 1.2em;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__step-description {
  color: #A7D9B8; /* Text Secondary */
}

/* Card Layout */
.page-blog-how-to-register-and-claim-rewards-with-mig8-code__content-grid,
.page-blog-how-to-register-and-claim-rewards-with-mig8-code__transaction-methods,
.page-blog-how-to-register-and-claim-rewards-with-mig8-code__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__card,
.page-blog-how-to-register-and-claim-rewards-with-mig8-code__game-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__card-title,
.page-blog-how-to-register-and-claim-rewards-with-mig8-code__game-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__card-title a,
.page-blog-how-to-register-and-claim-rewards-with-mig8-code__game-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__card-title a:hover,
.page-blog-how-to-register-and-claim-rewards-with-mig8-code__game-title a:hover {
  color: #2AD16F; /* Glow */
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__card-description,
.page-blog-how-to-register-and-claim-rewards-with-mig8-code__game-description {
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1;
}

/* Images */
.page-blog-how-to-register-and-claim-rewards-with-mig8-code__image-content,
.page-blog-how-to-register-and-claim-rewards-with-mig8-code__game-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px;
  min-width: 200px;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__game-image {
  height: 200px; /* Fixed height for consistent card appearance */
}

/* FAQ Section */
.page-blog-how-to-register-and-claim-rewards-with-mig8-code__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #1E3A2A; /* Slightly darker for question header */
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.2em;
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details/summary */
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F; /* Button color */
}

.page-blog-how-to-register-and-claim-rewards-with-mig8-code__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

/* For <details> tag, browser handles visibility */
.page-blog-how-to-register-and-claim-rewards-with-mig8-code__faq-item[open] .page-blog-how-to-register-and-claim-rewards-with-mig8-code__faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__container {
    padding: 0 15px;
  }

  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__section {
    padding: 40px 0;
  }

  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__description {
    font-size: 1em;
  }

  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important; /* Ensure small top padding */
  }

  /* Images responsive */
  .page-blog-how-to-register-and-claim-rewards-with-mig8-code img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__hero-image-container,
  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__container,
  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__feature-list,
  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__step-by-step,
  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__content-grid,
  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__transaction-methods,
  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__game-grid,
  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Buttons responsive */
  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__cta-button,
  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__btn-primary {
    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-and-claim-rewards-with-mig8-code__feature-list,
  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__content-grid,
  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__transaction-methods,
  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__step-item {
    padding: 20px;
  }

  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__step-title {
    font-size: 1.5em;
    padding-left: 30px;
  }

  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__step-title::before {
    font-size: 1em;
  }

  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__faq-toggle {
    font-size: 1.2em;
  }

  .page-blog-how-to-register-and-claim-rewards-with-mig8-code__faq-answer {
    padding: 0 20px 15px;
  }
}