/* style/blog-hello88-slot-beginner-guide.css */

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

.page-blog-hello88-slot-beginner-guide {
  background-color: var(--page-background);
  color: var(--page-text-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-blog-hello88-slot-beginner-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--page-background);
}

.page-blog-hello88-slot-beginner-guide__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.page-blog-hello88-slot-beginner-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-blog-hello88-slot-beginner-guide__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
  background-color: var(--page-background); /* Ensure text is readable against a solid background */
  margin-top: -100px; /* Pull content slightly over the image for visual flow, but not covering text */
  padding-top: 100px; /* Adjust padding to ensure text is below the image */
}

.page-blog-hello88-slot-beginner-guide__main-title {
  color: var(--page-gold-color);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px var(--page-glow-color);
}

.page-blog-hello88-slot-beginner-guide__description-text {
  color: var(--page-text-main);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-hello88-slot-beginner-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-blog-hello88-slot-beginner-guide__btn-primary,
.page-blog-hello88-slot-beginner-guide__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  display: inline-block;
  max-width: 100%;
}

.page-blog-hello88-slot-beginner-guide__btn-primary {
  background: var(--button-gradient);
  color: var(--page-text-main);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-hello88-slot-beginner-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-blog-hello88-slot-beginner-guide__btn-secondary {
  background-color: transparent;
  color: var(--page-gold-color);
  border: 2px solid var(--page-gold-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-hello88-slot-beginner-guide__btn-secondary:hover {
  background-color: var(--page-gold-color);
  color: var(--page-background);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-hello88-slot-beginner-guide__content-area {
  padding: 60px 20px;
  text-align: left;
  box-sizing: border-box;
}

.page-blog-hello88-slot-beginner-guide__dark-bg {
  background-color: var(--page-background);
  color: var(--page-text-main);
}

.page-blog-hello88-slot-beginner-guide__light-bg {
  background-color: var(--page-card-bg);
  color: var(--page-text-main);
}

.page-blog-hello88-slot-beginner-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-hello88-slot-beginner-guide__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--page-gold-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-blog-hello88-slot-beginner-guide__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--page-text-secondary);
}

.page-blog-hello88-slot-beginner-guide__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  object-fit: cover;
  display: block;
}

.page-blog-hello88-slot-beginner-guide__image-inline {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  margin: 20px auto;
  display: block;
  object-fit: cover;
}

.page-blog-hello88-slot-beginner-guide__step-card {
  background-color: rgba(17, 39, 27, 0.7);
  border: 1px solid var(--page-border-color);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-hello88-slot-beginner-guide__step-card:last-child {
  margin-bottom: 0;
}

.page-blog-hello88-slot-beginner-guide__step-title {
  font-size: 1.5rem;
  color: var(--page-gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-hello88-slot-beginner-guide__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-blog-hello88-slot-beginner-guide__list-item {
  background-color: rgba(17, 39, 27, 0.7);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-hello88-slot-beginner-guide__list-item-title {
  font-size: 1.3rem;
  color: var(--page-gold-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-hello88-slot-beginner-guide__list-item p {
  color: var(--page-text-secondary);
  font-size: 1rem;
}

.page-blog-hello88-slot-beginner-guide__strategy-list .page-blog-hello88-slot-beginner-guide__list-item {
  background-color: rgba(34, 199, 104, 0.1);
}

.page-blog-hello88-slot-beginner-guide__feature-list {
  list-style: disc;
  margin-left: 20px;
  color: var(--page-text-main);
  font-size: 1.05rem;
}

.page-blog-hello88-slot-beginner-guide__feature-item {
  margin-bottom: 10px;
}

.page-blog-hello88-slot-beginner-guide__feature-item strong {
  color: var(--page-gold-color);
}

.page-blog-hello88-slot-beginner-guide__benefits-list {
  list-style: disc;
  margin-left: 20px;
  color: var(--page-text-main);
  font-size: 1.05rem;
}

.page-blog-hello88-slot-beginner-guide__benefits-item {
  margin-bottom: 10px;
  color: var(--page-text-secondary);
}

.page-blog-hello88-slot-beginner-guide__benefits-item strong {
  color: var(--page-gold-color);
}

.page-blog-hello88-slot-beginner-guide__faq-list {
  margin-top: 30px;
}

.page-blog-hello88-slot-beginner-guide__faq-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-blog-hello88-slot-beginner-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--page-gold-color);
  background-color: var(--page-deep-green);
  border-bottom: 1px solid var(--page-border-color);
  list-style: none;
}

.page-blog-hello88-slot-beginner-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hello88-slot-beginner-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-hello88-slot-beginner-guide__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-hello88-slot-beginner-guide__faq-item[open] .page-blog-hello88-slot-beginner-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-hello88-slot-beginner-guide__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: var(--page-text-secondary);
  background-color: var(--page-card-bg);
}

.page-blog-hello88-slot-beginner-guide__faq-answer p {
  margin-bottom: 10px;
}

.page-blog-hello88-slot-beginner-guide__text-center {
  text-align: center;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-blog-hello88-slot-beginner-guide__hero-content {
    padding: 30px 15px;
    margin-top: -80px;
    padding-top: 80px;
  }

  .page-blog-hello88-slot-beginner-guide__main-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
  }

  .page-blog-hello88-slot-beginner-guide__description-text {
    font-size: 1rem;
  }

  .page-blog-hello88-slot-beginner-guide__section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
  }
}

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

  .page-blog-hello88-slot-beginner-guide__hero-content {
    padding: 20px 15px;
    margin-top: -60px;
    padding-top: 60px;
  }

  .page-blog-hello88-slot-beginner-guide__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-hello88-slot-beginner-guide__description-text {
    font-size: 0.95rem;
  }

  .page-blog-hello88-slot-beginner-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-hello88-slot-beginner-guide__btn-primary,
  .page-blog-hello88-slot-beginner-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-hello88-slot-beginner-guide__content-area {
    padding: 40px 15px;
  }

  .page-blog-hello88-slot-beginner-guide__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 25px;
  }

  .page-blog-hello88-slot-beginner-guide__text-block,
  .page-blog-hello88-slot-beginner-guide__list-item p,
  .page-blog-hello88-slot-beginner-guide__feature-list,
  .page-blog-hello88-slot-beginner-guide__benefits-list,
  .page-blog-hello88-slot-beginner-guide__faq-answer {
    font-size: 0.95rem;
  }

  .page-blog-hello88-slot-beginner-guide__image-full-width,
  .page-blog-hello88-slot-beginner-guide__image-inline {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  .page-blog-hello88-slot-beginner-guide__container,
  .page-blog-hello88-slot-beginner-guide__step-card,
  .page-blog-hello88-slot-beginner-guide__list-item,
  .page-blog-hello88-slot-beginner-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-hello88-slot-beginner-guide__step-card,
  .page-blog-hello88-slot-beginner-guide__list-item,
  .page-blog-hello88-slot-beginner-guide__faq-item {
    padding: 15px;
  }

  .page-blog-hello88-slot-beginner-guide__faq-question {
    padding: 15px;
    font-size: 1.1rem;
  }

  .page-blog-hello88-slot-beginner-guide__faq-answer {
    padding: 15px;
  }

  .page-blog-hello88-slot-beginner-guide__hero-section {
    padding-top: 10px !important;
  }
}