/* style/blog-beginner-guide-open88.css */

/* Base styles for the page content, ensuring contrast with body background */
.page-blog-beginner-guide-open88 {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

.page-blog-beginner-guide-open88__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  text-align: center;
  background-color: #08160F; /* Ensure hero section matches body background if not fully covered by image */
}

.page-blog-beginner-guide-open88__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}

.page-blog-beginner-guide-open88__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-beginner-guide-open88__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-beginner-guide-open88__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-beginner-guide-open88__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-beginner-guide-open88__section {
  padding: 60px 20px;
  text-align: center;
}

.page-blog-beginner-guide-open88__section.page-blog-beginner-guide-open88__introduction {
  background-color: #08160F; /* Background */
}

.page-blog-beginner-guide-open88__section.page-blog-beginner-guide-open88__dark-bg {
  background-color: #08160F; /* Background */
}

.page-blog-beginner-guide-open88__section.page-blog-beginner-guide-open88__light-bg {
  background-color: #11271B; /* Card BG, acting as light bg in this dark scheme */
  color: #F2FFF6; /* Text Main */
}

.page-blog-beginner-guide-open88__container {
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-beginner-guide-open88__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-blog-beginner-guide-open88__text-block {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: left;
}

.page-blog-beginner-guide-open88__text-block a {
  color: #2AD16F; /* Brighter green for links */
  text-decoration: underline;
}

.page-blog-beginner-guide-open88__text-block a:hover {
  color: #57E38D; /* Glow */
}

.page-blog-beginner-guide-open88__highlight {
  color: #57E38D; /* Glow */
  font-weight: bold;
}

.page-blog-beginner-guide-open88__btn-primary,
.page-blog-beginner-guide-open88__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-beginner-guide-open88__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-beginner-guide-open88__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-beginner-guide-open88__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Brighter green for text */
  border: 2px solid #2AD16F; /* Brighter green for border */
  margin-left: 20px;
}

.page-blog-beginner-guide-open88__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-blog-beginner-guide-open88__steps-section {
  background-color: #08160F; /* Background */
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.page-blog-beginner-guide-open88__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-beginner-guide-open88__step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.page-blog-beginner-guide-open88__step-number {
  background: linear-gradient(180deg, #F2C14E 0%, #E0A83A 100%); /* Gold */
  color: #08160F; /* Background for contrast */
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: 700;
  margin-right: 15px;
  box-shadow: 0 3px 10px rgba(242, 193, 78, 0.5);
}

.page-blog-beginner-guide-open88__step-title {
  font-size: clamp(1.4em, 2.5vw, 2em);
  color: #F2FFF6; /* Text Main */
  font-weight: 600;
  text-align: left;
}

.page-blog-beginner-guide-open88__step-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-beginner-guide-open88__step-content {
  text-align: left;
}

.page-blog-beginner-guide-open88__promotions,
.page-blog-beginner-guide-open88__support {
  background-color: #08160F; /* Background */
}

.page-blog-beginner-guide-open88__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.page-blog-beginner-guide-open88__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-beginner-guide-open88__card-title {
  font-size: clamp(1.3em, 2vw, 1.8em);
  color: #F2FFF6; /* Text Main */
  font-weight: 600;
  margin-bottom: 10px;
}

.page-blog-beginner-guide-open88__faq {
  background-color: #08160F; /* Background */
}

.page-blog-beginner-guide-open88__faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.page-blog-beginner-guide-open88__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-beginner-guide-open88__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  color: #F2FFF6; /* Text Main */
  font-weight: 600;
  font-size: 1.1em;
}

.page-blog-beginner-guide-open88__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-beginner-guide-open88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-blog-beginner-guide-open88__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2AD16F;
  margin-left: 15px;
}

.page-blog-beginner-guide-open88__faq-answer {
  padding: 0 20px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

.page-blog-beginner-guide-open88__faq-answer p {
  margin-bottom: 0;
}

.page-blog-beginner-guide-open88__conclusion {
  background-color: #0A4B2C; /* Deep Green */
  padding-bottom: 80px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-beginner-guide-open88__hero-content {
    max-width: 768px;
  }
  .page-blog-beginner-guide-open88__step-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-blog-beginner-guide-open88 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-beginner-guide-open88__hero-section {
    padding: 10px 15px 40px;
  }

  .page-blog-beginner-guide-open88__main-title {
    font-size: 2.2em;
  }

  .page-blog-beginner-guide-open88__description {
    font-size: 1em;
  }

  .page-blog-beginner-guide-open88__section {
    padding: 40px 15px;
  }

  .page-blog-beginner-guide-open88__section-title {
    font-size: 2em;
  }

  .page-blog-beginner-guide-open88__text-block {
    font-size: 0.95em;
  }

  .page-blog-beginner-guide-open88__btn-primary,
  .page-blog-beginner-guide-open88__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0;
    margin-bottom: 15px;
  }

  .page-blog-beginner-guide-open88__hero-content .page-blog-beginner-guide-open88__btn-primary {
    width: auto !important;
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .page-blog-beginner-guide-open88__step-item {
    padding: 20px;
  }

  .page-blog-beginner-guide-open88__step-title {
    font-size: 1.5em;
  }

  .page-blog-beginner-guide-open88__card {
    padding: 20px;
  }

  .page-blog-beginner-guide-open88__card-title {
    font-size: 1.4em;
  }

  .page-blog-beginner-guide-open88__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }

  /* Mobile specific image adaptation */
  .page-blog-beginner-guide-open88 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-beginner-guide-open88__section,
  .page-blog-beginner-guide-open88__card,
  .page-blog-beginner-guide-open88__container,
  .page-blog-beginner-guide-open88__hero-image-wrapper,
  .page-blog-beginner-guide-open88__step-item,
  .page-blog-beginner-guide-open88__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-beginner-guide-open88__hero-section {
    padding-top: 10px !important;
  }

  .page-blog-beginner-guide-open88__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-blog-beginner-guide-open88__main-title {
    font-size: 1.8em;
  }
  .page-blog-beginner-guide-open88__section-title {
    font-size: 1.6em;
  }
  .page-blog-beginner-guide-open88__step-title {
    font-size: 1.3em;
  }
}