/* style/blog-how-to-access-33win.css */

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-blog-how-to-access-33win {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-how-to-access-33win__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-how-to-access-33win__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #08160F;
  overflow: hidden;
}

.page-blog-how-to-access-33win__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width for aesthetic */
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-blog-how-to-access-33win__hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 1;
  padding: 0 20px;
}

.page-blog-how-to-access-33win__main-title {
  font-size: clamp(2em, 3.5vw, 3.5em); /* Responsive font size for H1 */
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-how-to-access-33win__subtitle {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-access-33win__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-blog-how-to-access-33win__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-blog-how-to-access-33win__section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-how-to-access-33win__section:last-of-type {
  border-bottom: none;
}

.page-blog-how-to-access-33win__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-blog-how-to-access-33win__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #2AD16F;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-blog-how-to-access-33win__sub-title {
  font-size: 1.8em;
  color: #22C768; /* Auxiliary Color */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-how-to-access-33win__content-block p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
}

.page-blog-how-to-access-33win__content-block strong {
  color: #57E38D; /* Glow */
}

.page-blog-how-to-access-33win__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Lists */
.page-blog-how-to-access-33win__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-blog-how-to-access-33win__list-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-access-33win__list-item h4 {
  color: #F2C14E; /* Gold */
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-blog-how-to-access-33win__list-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  margin-bottom: 0;
}

/* FAQ Section */
.page-blog-how-to-access-33win__faq-section {
  padding-bottom: 30px;
}

.page-blog-how-to-access-33win__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-access-33win__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-access-33win__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.2em;
  list-style: none; /* Hide default marker for <summary> */
}

.page-blog-how-to-access-33win__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-access-33win__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-access-33win__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

.page-blog-how-to-access-33win__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

.page-blog-how-to-access-33win__faq-answer p {
  margin-bottom: 0;
  color: #A7D9B8;
}

/* Active state for custom FAQ (if not using <details>) */
.page-blog-how-to-access-33win__faq-item.active .page-blog-how-to-access-33win__faq-question .page-blog-how-to-access-33win__faq-toggle {
  content: '−';
}

/* CTA Wrapper in FAQ section */
.page-blog-how-to-access-33win__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Conclusion Section */
.page-blog-how-to-access-33win__conclusion {
  text-align: center;
  padding-bottom: 60px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-access-33win__main-title {
    font-size: clamp(2em, 4vw, 3em);
  }

  .page-blog-how-to-access-33win__section-title {
    font-size: 2em;
  }

  .page-blog-how-to-access-33win__sub-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-access-33win {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-access-33win__hero-section {
    padding: 40px 0;
    padding-top: 10px !important; /* body handles --header-offset, small top padding */
  }

  .page-blog-how-to-access-33win__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-blog-how-to-access-33win__hero-content {
    padding: 0 15px;
  }

  .page-blog-how-to-access-33win__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
    margin-bottom: 15px;
  }

  .page-blog-how-to-access-33win__subtitle {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-blog-how-to-access-33win__btn-primary {
    padding: 12px 25px;
    font-size: 0.95em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-how-to-access-33win__section {
    padding: 40px 0;
  }

  .page-blog-how-to-access-33win__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-blog-how-to-access-33win__sub-title {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-blog-how-to-access-33win__content-block p {
    font-size: 1em;
  }

  .page-blog-how-to-access-33win__list-item {
    padding: 20px;
  }

  .page-blog-how-to-access-33win__list-item h4 {
    font-size: 1.2em;
  }

  .page-blog-how-to-access-33win__faq-question {
    font-size: 1.1em;
    padding: 18px 20px;
  }

  .page-blog-how-to-access-33win__faq-toggle {
    font-size: 1.3em;
  }

  .page-blog-how-to-access-33win__faq-answer {
    padding: 0 20px 18px;
  }

  /* Mobile image responsiveness */
  .page-blog-how-to-access-33win img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-access-33win__section,
  .page-blog-how-to-access-33win__container,
  .page-blog-how-to-access-33win__content-block,
  .page-blog-how-to-access-33win__hero-image-wrapper,
  .page-blog-how-to-access-33win__image-wrapper,
  .page-blog-how-to-access-33win__faq-section,
  .page-blog-how-to-access-33win__cta-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-blog-how-to-access-33win__cta-buttons {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
  }
}