/* style/blog-tv88-slot-beginner-guide.css */
/* Body background color is #08160F (very dark), so text should be light */

.page-blog-tv88-slot-beginner-guide {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: transparent; /* Body handles the actual background */
}

.page-blog-tv88-slot-beginner-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body already handles padding-top from header */
  background-color: #08160F; /* Background */
  overflow: hidden;
}

.page-blog-tv88-slot-beginner-guide__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.page-blog-tv88-slot-beginner-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-blog-tv88-slot-beginner-guide__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  margin-top: -80px; /* Overlap slightly for visual effect, but content is below image */
  background: rgba(17, 39, 27, 0.85); /* Card B G with opacity */
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  border: 1px solid #2E7A4E; /* Border */
  z-index: 10;
}

.page-blog-tv88-slot-beginner-guide__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.6);
}

.page-blog-tv88-slot-beginner-guide__description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog-tv88-slot-beginner-guide__btn-primary,
.page-blog-tv88-slot-beginner-guide__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

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

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

.page-blog-tv88-slot-beginner-guide__btn-secondary {
  background: #11271B; /* Card B G */
  color: #57E38D; /* Glow */
  border: 2px solid #2E7A4E; /* Border */
}

.page-blog-tv88-slot-beginner-guide__btn-secondary:hover {
  background: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
  border-color: #57E38D; /* Glow */
  transform: translateY(-2px);
}

.page-blog-tv88-slot-beginner-guide__section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  border-top: 1px solid #1E3A2A; /* Divider */
}

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

.page-blog-tv88-slot-beginner-guide__heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-tv88-slot-beginner-guide__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #22C768; /* Auxiliary */
  border-radius: 2px;
}

.page-blog-tv88-slot-beginner-guide__sub-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2AD16F; /* From Button gradient */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-tv88-slot-beginner-guide__text-block {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-blog-tv88-slot-beginner-guide__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-tv88-slot-beginner-guide__step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-tv88-slot-beginner-guide__step-item {
  background-color: #11271B; /* Card B G */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-blog-tv88-slot-beginner-guide__list-item {
  background-color: #11271B; /* Card B G */
  padding: 25px 30px;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #1E3A2A; /* Divider */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-tv88-slot-beginner-guide__list-item:last-child {
  margin-bottom: 0;
}

.page-blog-tv88-slot-beginner-guide__faq-list {
  margin-top: 40px;
}

.page-blog-tv88-slot-beginner-guide__faq-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-tv88-slot-beginner-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-blog-tv88-slot-beginner-guide__faq-question:hover {
  background-color: #13994A;
}

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

.page-blog-tv88-slot-beginner-guide__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 20px;
  color: #57E38D; /* Glow */
}

.page-blog-tv88-slot-beginner-guide__faq-item[open] .page-blog-tv88-slot-beginner-guide__faq-question {
  background-color: #13994A;
}

.page-blog-tv88-slot-beginner-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B; /* Card B G */
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-blog-tv88-slot-beginner-guide__faq-answer p {
  margin-bottom: 0;
  color: #A7D9B8;
}

.page-blog-tv88-slot-beginner-guide__faq-answer a {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-blog-tv88-slot-beginner-guide__faq-answer a:hover {
  color: #F2C14E; /* Gold */
}

.page-blog-tv88-slot-beginner-guide__cta-buttons--bottom {
  margin-top: 50px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-tv88-slot-beginner-guide__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-blog-tv88-slot-beginner-guide__heading {
    font-size: 2rem;
  }

  .page-blog-tv88-slot-beginner-guide__sub-heading {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-blog-tv88-slot-beginner-guide__hero-section {
    padding: 10px 15px 40px 15px;
  }

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

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

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

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

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

  .page-blog-tv88-slot-beginner-guide__section {
    padding: 40px 15px;
  }

  .page-blog-tv88-slot-beginner-guide__heading {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-tv88-slot-beginner-guide__sub-heading {
    font-size: 1.4rem;
  }

  .page-blog-tv88-slot-beginner-guide__text-block,
  .page-blog-tv88-slot-beginner-guide__list-item p {
    font-size: 0.95rem;
  }

  .page-blog-tv88-slot-beginner-guide__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  
  .page-blog-tv88-slot-beginner-guide__container,
  .page-blog-tv88-slot-beginner-guide__step-item,
  .page-blog-tv88-slot-beginner-guide__list-item,
  .page-blog-tv88-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-tv88-slot-beginner-guide__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-tv88-slot-beginner-guide__faq-answer {
    padding: 15px 20px;
    font-size: 0.9rem;
  }
  
  .page-blog-tv88-slot-beginner-guide__step-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-blog-tv88-slot-beginner-guide__hero-content {
    margin-top: -40px;
  }
  .page-blog-tv88-slot-beginner-guide__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
}