.page-blog-qgwin-now-open-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--background-color, #FFFFFF); /* Assumed light background */
}

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

.page-blog-qgwin-now-open-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-qgwin-now-open-guide__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-blog-qgwin-now-open-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-qgwin-now-open-guide__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 30px;
  color: inherit;
}

.page-blog-qgwin-now-open-guide__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-blog-qgwin-now-open-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
}

.page-blog-qgwin-now-open-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-blog-qgwin-now-open-guide__hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Slightly dark overlay for text readability */
  border-radius: 8px;
}

.page-blog-qgwin-now-open-guide__main-title {
  font-size: clamp(32px, 5vw, 56px); /* Use clamp for responsive H1 font size */
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-qgwin-now-open-guide__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Buttons */
.page-blog-qgwin-now-open-guide__btn-primary,
.page-blog-qgwin-now-open-guide__btn-secondary,
.page-blog-qgwin-now-open-guide__btn-text {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-qgwin-now-open-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-qgwin-now-open-guide__btn-primary:hover {
  background-color: #1a8cc7;
  border-color: #1a8cc7;
}

.page-blog-qgwin-now-open-guide__btn-secondary {
  background-color: #EA7C07; /* Login button color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-blog-qgwin-now-open-guide__btn-secondary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-blog-qgwin-now-open-guide__btn-text {
  background: none;
  color: #26A9E0;
  border: none;
  padding: 0;
  text-decoration: underline;
}

.page-blog-qgwin-now-open-guide__btn-text:hover {
  color: #1a8cc7;
}

.page-blog-qgwin-now-open-guide__btn-center {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Grid */
.page-blog-qgwin-now-open-guide__features-grid,
.page-blog-qgwin-now-open-guide__game-categories,
.page-blog-qgwin-now-open-guide__promo-grid,
.page-blog-qgwin-now-open-guide__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-qgwin-now-open-guide__feature-item,
.page-blog-qgwin-now-open-guide__game-card,
.page-blog-qgwin-now-open-guide__promo-card,
.page-blog-qgwin-now-open-guide__info-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #333333;
}

.page-blog-qgwin-now-open-guide__dark-bg .page-blog-qgwin-now-open-guide__feature-item,
.page-blog-qgwin-now-open-guide__dark-bg .page-blog-qgwin-now-open-guide__game-card,
.page-blog-qgwin-now-open-guide__dark-bg .page-blog-qgwin-now-open-guide__promo-card,
.page-blog-qgwin-now-open-guide__dark-bg .page-blog-qgwin-now-open-guide__info-card {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.page-blog-qgwin-now-open-guide__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-qgwin-now-open-guide__feature-title,
.page-blog-qgwin-now-open-guide__game-title,
.page-blog-qgwin-now-open-guide__promo-title,
.page-blog-qgwin-now-open-guide__info-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: inherit;
}

/* Registration Guide */
.page-blog-qgwin-now-open-guide__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-blog-qgwin-now-open-guide__step-item {
  flex: 1 1 calc(33% - 20px);
  max-width: calc(33% - 20px);
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  padding-top: 70px; /* Space for step number */
}

.page-blog-qgwin-now-open-guide__step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.page-blog-qgwin-now-open-guide__step-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-blog-qgwin-now-open-guide__image-full-width {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 40px;
  max-width: 100%;
  display: block;
}

/* Payment Guide */
.page-blog-qgwin-now-open-guide__payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.page-blog-qgwin-now-open-guide__payment-card {
  flex: 1 1 calc(50% - 20px);
  max-width: calc(50% - 20px);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  color: #ffffff;
}

.page-blog-qgwin-now-open-guide__payment-card-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-blog-qgwin-now-open-guide__payment-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-blog-qgwin-now-open-guide__payment-card li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-blog-qgwin-now-open-guide__payment-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #EA7C07;
  font-weight: bold;
}

.page-blog-qgwin-now-open-guide__image-content {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 40px;
  max-width: 100%;
  display: block;
}

/* Game Categories */
.page-blog-qgwin-now-open-guide__game-card {
  flex: 1 1 calc(33% - 20px);
  max-width: calc(33% - 20px);
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-blog-qgwin-now-open-guide__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  max-width: 100%;
  display: block;
}

/* Promotions */
.page-blog-qgwin-now-open-guide__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  max-width: 100%;
  display: block;
}

/* Tips & Strategies */
.page-blog-qgwin-now-open-guide__list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
}

.page-blog-qgwin-now-open-guide__list li {
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-left: 30px;
}

.page-blog-qgwin-now-open-guide__list li strong {
  color: #26A9E0;
}

.page-blog-qgwin-now-open-guide__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #EA7C07;
  font-size: 24px;
  line-height: 1;
}

/* FAQ Section */
.page-blog-qgwin-now-open-guide__faq-list {
  margin-top: 40px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-qgwin-now-open-guide__faq-item {
  background-color: #f9f9f9;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  color: #333333;
}

.page-blog-qgwin-now-open-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  color: #26A9E0;
}

.page-blog-qgwin-now-open-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-qgwin-now-open-guide__faq-question::marker {
  display: none;
}

.page-blog-qgwin-now-open-guide__faq-toggle {
  font-size: 24px;
  line-height: 1;
  color: #EA7C07;
}

.page-blog-qgwin-now-open-guide__faq-answer {
  padding: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
}

.page-blog-qgwin-now-open-guide__faq-answer p {
  margin-bottom: 10px;
}

/* Conclusion */
.page-blog-qgwin-now-open-guide__conclusion .page-blog-qgwin-now-open-guide__text-block {
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-qgwin-now-open-guide__step-item {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
  .page-blog-qgwin-now-open-guide__game-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
  .page-blog-qgwin-now-open-guide__promo-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
  .page-blog-qgwin-now-open-guide__payment-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-blog-qgwin-now-open-guide__section {
    padding: 40px 0;
  }
  .page-blog-qgwin-now-open-guide__hero-content {
    padding: 15px;
  }
  .page-blog-qgwin-now-open-guide__main-title {
    font-size: clamp(28px, 8vw, 40px);
  }
  .page-blog-qgwin-now-open-guide__hero-description {
    font-size: 16px;
  }
  .page-blog-qgwin-now-open-guide__section-title {
    font-size: clamp(24px, 7vw, 36px);
  }
  .page-blog-qgwin-now-open-guide__text-block,
  .page-blog-qgwin-now-open-guide__list li,
  .page-blog-qgwin-now-open-guide__faq-answer p {
    font-size: 16px;
  }
  .page-blog-qgwin-now-open-guide__btn-primary,
  .page-blog-qgwin-now-open-guide__btn-secondary,
  .page-blog-qgwin-now-open-guide a[class*="button"],
  .page-blog-qgwin-now-open-guide 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;
    margin-bottom: 10px; /* Add spacing between stacked buttons */
  }
  .page-blog-qgwin-now-open-guide__cta-buttons,
  .page-blog-qgwin-now-open-guide__button-group,
  .page-blog-qgwin-now-open-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
  }
  .page-blog-qgwin-now-open-guide__step-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .page-blog-qgwin-now-open-guide__feature-item,
  .page-blog-qgwin-now-open-guide__game-card,
  .page-blog-qgwin-now-open-guide__promo-card,
  .page-blog-qgwin-now-open-guide__info-card {
    flex: 1 1 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
  }
  .page-blog-qgwin-now-open-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-qgwin-now-open-guide__section,
  .page-blog-qgwin-now-open-guide__container,
  .page-blog-qgwin-now-open-guide__steps,
  .page-blog-qgwin-now-open-guide__payment-methods,
  .page-blog-qgwin-now-open-guide__game-categories,
  .page-blog-qgwin-now-open-guide__promo-grid,
  .page-blog-qgwin-now-open-guide__info-grid,
  .page-blog-qgwin-now-open-guide__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-qgwin-now-open-guide__hero-section {
    padding-top: 10px !important; /* body handles header offset */
  }
  .page-blog-qgwin-now-open-guide__faq-question {
    font-size: 16px;
  }
  .page-blog-qgwin-now-open-guide__faq-answer {
    font-size: 15px;
  }
}