:root {
  --color-primary: #11A84E;
  --color-secondary: #22C768;
  --color-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --color-card-bg: #11271B;
  --color-background: #08160F;
  --color-text-main: #F2FFF6;
  --color-text-secondary: #A7D9B8;
  --color-border: #2E7A4E;
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;
}

.page-blog-register-with-ae888-code {
  background-color: var(--color-background);
  color: var(--color-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-register-with-ae888-code__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 */
  overflow: hidden;
}

.page-blog-register-with-ae888-code__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-blog-register-with-ae888-code__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.page-blog-register-with-ae888-code__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: var(--color-gold);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-register-with-ae888-code__hero-description {
  font-size: 1.1em;
  color: var(--color-text-main);
  margin-bottom: 30px;
}

.page-blog-register-with-ae888-code__btn-primary,
.page-blog-register-with-ae888-code__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-register-with-ae888-code__btn-primary {
  background: var(--color-button-gradient);
  color: var(--color-text-main);
  border: 2px solid transparent;
}

.page-blog-register-with-ae888-code__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px var(--color-glow);
}

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

.page-blog-register-with-ae888-code__btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-text-main);
  box-shadow: 0 0 15px var(--color-primary);
}

.page-blog-register-with-ae888-code__section {
  padding: 60px 20px;
  text-align: center;
}

.page-blog-register-with-ae888-code__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-register-with-ae888-code__section-title {
  font-size: 2.5em;
  color: var(--color-gold);
  margin-bottom: 30px;
  font-weight: bold;
}

.page-blog-register-with-ae888-code__text-block {
  font-size: 1.1em;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-register-with-ae888-code__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-register-with-ae888-code__step-item {
  background-color: var(--color-card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--color-border);
}

.page-blog-register-with-ae888-code__step-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  max-width: 100%;
}

.page-blog-register-with-ae888-code__step-title {
  font-size: 1.5em;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.page-blog-register-with-ae888-code__step-description {
  color: var(--color-text-secondary);
  font-size: 1em;
  margin-bottom: 15px;
}

.page-blog-register-with-ae888-code__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  color: var(--color-text-secondary);
}

.page-blog-register-with-ae888-code__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 1em;
}

.page-blog-register-with-ae888-code__list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.page-blog-register-with-ae888-code__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

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

.page-blog-register-with-ae888-code__card {
  background-color: var(--color-card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--color-text-secondary);
}

.page-blog-register-with-ae888-code__card-title {
  font-size: 1.6em;
  color: var(--color-gold);
  margin-bottom: 15px;
}

.page-blog-register-with-ae888-code__card-description {
  font-size: 1em;
  margin-bottom: 20px;
}

.page-blog-register-with-ae888-code__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  max-width: 100%;
}

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

.page-blog-register-with-ae888-code__game-card {
  background-color: var(--color-card-bg);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-register-with-ae888-code__game-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
  max-width: 100%;
}

.page-blog-register-with-ae888-code__game-title {
  font-size: 1.4em;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.page-blog-register-with-ae888-code__game-description {
  color: var(--color-text-secondary);
  font-size: 0.95em;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-blog-register-with-ae888-code__promotion-list {
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
}

.page-blog-register-with-ae888-code__promotion-list li {
  font-size: 1.1em;
  color: var(--color-text-main);
  margin-bottom: 15px;
}

.page-blog-register-with-ae888-code__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-blog-register-with-ae888-code__faq-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-register-with-ae888-code__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--color-primary);
  background-color: var(--color-deep-green);
  border-bottom: 1px solid var(--color-divider);
}

.page-blog-register-with-ae888-code__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-register-with-ae888-code__faq-question::marker {
  display: none;
}

.page-blog-register-with-ae888-code__faq-qtext {
  flex-grow: 1;
}

.page-blog-register-with-ae888-code__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: var(--color-gold);
}

.page-blog-register-with-ae888-code__faq-item[open] .page-blog-register-with-ae888-code__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-register-with-ae888-code__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--color-text-secondary);
}

.page-blog-register-with-ae888-code__faq-answer p {
  margin-bottom: 0;
  color: var(--color-text-secondary);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-register-with-ae888-code {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-register-with-ae888-code__hero-section {
    padding: 40px 15px;
  }

  .page-blog-register-with-ae888-code__hero-content {
    padding: 15px;
  }

  .page-blog-register-with-ae888-code__main-title {
    font-size: 1.8em;
  }

  .page-blog-register-with-ae888-code__hero-description {
    font-size: 0.95em;
  }

  .page-blog-register-with-ae888-code__btn-primary,
  .page-blog-register-with-ae888-code__btn-secondary {
    padding: 12px 20px;
    font-size: 0.9em;
    margin-left: 0;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 10px;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-register-with-ae888-code__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-blog-register-with-ae888-code__section {
    padding: 40px 15px;
  }

  .page-blog-register-with-ae888-code__container {
    padding-left: 0px;
    padding-right: 0px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-register-with-ae888-code__section-title {
    font-size: 1.8em;
  }

  .page-blog-register-with-ae888-code__text-block {
    font-size: 0.95em;
    padding: 0 15px;
  }

  .page-blog-register-with-ae888-code__step-by-step,
  .page-blog-register-with-ae888-code__card-grid,
  .page-blog-register-with-ae888-code__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-register-with-ae888-code__step-item,
  .page-blog-register-with-ae888-code__card,
  .page-blog-register-with-ae888-code__game-card {
    padding: 20px;
  }

  .page-blog-register-with-ae888-code__step-image,
  .page-blog-register-with-ae888-code__card-image,
  .page-blog-register-with-ae888-code__game-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-register-with-ae888-code__step-title,
  .page-blog-register-with-ae888-code__card-title,
  .page-blog-register-with-ae888-code__game-title {
    font-size: 1.3em;
  }

  .page-blog-register-with-ae888-code__faq-list {
    padding: 0 15px;
  }

  .page-blog-register-with-ae888-code__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-blog-register-with-ae888-code__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }
}

/* Ensure images within content areas are always large enough */
.page-blog-register-with-ae888-code img {
  min-width: 200px;
  min-height: 200px;
}

/* Specific rules for content images to prevent small sizes */
.page-blog-register-with-ae888-code__step-image,
.page-blog-register-with-ae888-code__card-image,
.page-blog-register-with-ae888-code__game-image {
  width: 100%; /* Default to full width of parent */
  height: auto;
  max-width: 100%; /* Ensure responsiveness */
  display: block;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .page-blog-register-with-ae888-code img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-register-with-ae888-code__section,
  .page-blog-register-with-ae888-code__card,
  .page-blog-register-with-ae888-code__container,
  .page-blog-register-with-ae888-code__step-item,
  .page-blog-register-with-ae888-code__game-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-register-with-ae888-code__hero-section {
    padding-top: 10px !important;
  }
}