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

/* body đã có padding-top từ shared.css, không thêm vào đây để tránh trùng lặp */
.page-blog-new-player-guide-oke88 {
  font-family: 'Arial', sans-serif;
  color: var(--oke88-text-main); /* Light text on dark background */
  background-color: var(--oke88-background-color);
  line-height: 1.6;
}

.page-blog-new-player-guide-oke88__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-new-player-guide-oke88__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small decorative padding, body handles main offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-new-player-guide-oke88__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  filter: brightness(0.6); /* Slightly dim the background image for text readability */
}

.page-blog-new-player-guide-oke88__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-blog-new-player-guide-oke88__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--oke88-gold-color);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.page-blog-new-player-guide-oke88__hero-description {
  font-size: 1.2rem;
  color: var(--oke88-text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-new-player-guide-oke88__hero-button,
.page-blog-new-player-guide-oke88__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--oke88-button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-new-player-guide-oke88__hero-button:hover,
.page-blog-new-player-guide-oke88__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-blog-new-player-guide-oke88__section-title {
  font-size: 2.5rem;
  color: var(--oke88-gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-new-player-guide-oke88__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--oke88-primary-color);
  border-radius: 2px;
}

.page-blog-new-player-guide-oke88__intro-section,
.page-blog-new-player-guide-oke88__guide-section,
.page-blog-new-player-guide-oke88__deposit-withdraw-section,
.page-blog-new-player-guide-oke88__products-section,
.page-blog-new-player-guide-oke88__promotions-section,
.page-blog-new-player-guide-oke88__tips-section,
.page-blog-new-player-guide-oke88__support-faq-section,
.page-blog-new-player-guide-oke88__conclusion-section {
  padding: 60px 0;
  background-color: var(--oke88-deep-green); /* Use a slightly different dark green for sections */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-blog-new-player-guide-oke88__text-block {
  font-size: 1.1rem;
  color: var(--oke88-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-new-player-guide-oke88__numbered-list,
.page-blog-new-player-guide-oke88__bullet-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-blog-new-player-guide-oke88__numbered-list li,
.page-blog-new-player-guide-oke88__bullet-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: var(--oke88-text-main);
}

.page-blog-new-player-guide-oke88__numbered-list li::before {
  content: counter(list-item) ".";
  counter-increment: list-item;
  position: absolute;
  left: 0;
  color: var(--oke88-primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.page-blog-new-player-guide-oke88__bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--oke88-primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  top: 0;
}

.page-blog-new-player-guide-oke88__list-title {
  color: var(--oke88-gold-color);
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.page-blog-new-player-guide-oke88__sub-title {
  font-size: 1.8rem;
  color: var(--oke88-primary-color);
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.page-blog-new-player-guide-oke88__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--oke88-border-color);
}

.page-blog-new-player-guide-oke88__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-blog-new-player-guide-oke88__product-card {
  background-color: var(--oke88-card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--oke88-border-color);
}

.page-blog-new-player-guide-oke88__product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-blog-new-player-guide-oke88__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--oke88-border-color);
}

.page-blog-new-player-guide-oke88__card-title {
  font-size: 1.5rem;
  color: var(--oke88-gold-color);
  padding: 15px 20px 5px;
  margin: 0;
}

.page-blog-new-player-guide-oke88__card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-new-player-guide-oke88__card-title a:hover {
  color: var(--oke88-primary-color);
}

.page-blog-new-player-guide-oke88__card-description {
  font-size: 1rem;
  color: var(--oke88-text-secondary);
  padding: 0 20px 20px;
}

.page-blog-new-player-guide-oke88__view-all-button {
  margin-top: 20px;
  display: block;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-new-player-guide-oke88__faq-list {
  margin-top: 40px;
}

.page-blog-new-player-guide-oke88__faq-item {
  background-color: var(--oke88-card-bg);
  border: 1px solid var(--oke88-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-new-player-guide-oke88__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--oke88-text-main);
  cursor: pointer;
  background-color: var(--oke88-deep-green);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-new-player-guide-oke88__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-new-player-guide-oke88__faq-question:hover {
  background-color: var(--oke88-divider-color);
}

.page-blog-new-player-guide-oke88__faq-qtext {
  flex-grow: 1;
}

.page-blog-new-player-guide-oke88__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--oke88-primary-color);
}

.page-blog-new-player-guide-oke88__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.05rem;
  color: var(--oke88-text-secondary);
  border-top: 1px solid var(--oke88-border-color);
}

.page-blog-new-player-guide-oke88__contact-button {
  background: none;
  border: 2px solid var(--oke88-primary-color);
  color: var(--oke88-primary-color);
  margin-left: 15px;
}

.page-blog-new-player-guide-oke88__contact-button:hover {
  background: var(--oke88-primary-color);
  color: #ffffff;
}

.page-blog-new-player-guide-oke88__final-cta-button {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 40px;
  font-size: 1.3rem;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-new-player-guide-oke88__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-new-player-guide-oke88__section-title {
    font-size: 2rem;
  }
  .page-blog-new-player-guide-oke88__product-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-new-player-guide-oke88__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-blog-new-player-guide-oke88__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-blog-new-player-guide-oke88__hero-description {
    font-size: 1rem;
  }
  .page-blog-new-player-guide-oke88__hero-button,
  .page-blog-new-player-guide-oke88__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-new-player-guide-oke88__cta-button + .page-blog-new-player-guide-oke88__cta-button {
    margin-top: 15px;
    margin-left: 0;
  }
  .page-blog-new-player-guide-oke88__intro-section,
  .page-blog-new-player-guide-oke88__guide-section,
  .page-blog-new-player-guide-oke88__deposit-withdraw-section,
  .page-blog-new-player-guide-oke88__products-section,
  .page-blog-new-player-guide-oke88__promotions-section,
  .page-blog-new-player-guide-oke88__tips-section,
  .page-blog-new-player-guide-oke88__support-faq-section,
  .page-blog-new-player-guide-oke88__conclusion-section {
    padding: 40px 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-new-player-guide-oke88__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-new-player-guide-oke88__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-blog-new-player-guide-oke88__sub-title {
    font-size: 1.5rem;
  }
  .page-blog-new-player-guide-oke88__text-block {
    font-size: 1rem;
  }
  .page-blog-new-player-guide-oke88__list-title {
    font-size: 1.1rem;
  }
  .page-blog-new-player-guide-oke88__product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-new-player-guide-oke88__image-content,
  .page-blog-new-player-guide-oke88__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-new-player-guide-oke88__faq-question {
    font-size: 1.05rem;
    padding: 15px 20px;
  }
  .page-blog-new-player-guide-oke88__faq-answer {
    font-size: 0.95rem;
    padding: 10px 20px 15px;
  }
  .page-blog-new-player-guide-oke88__contact-button {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-blog-new-player-guide-oke88__final-cta-button {
    font-size: 1.1rem;
    padding: 15px 30px;
  }
  .page-blog-new-player-guide-oke88__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-new-player-guide-oke88__hero-content {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-new-player-guide-oke88__hero-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .page-blog-new-player-guide-oke88__section-title {
    font-size: 1.5rem;
  }
  .page-blog-new-player-guide-oke88__sub-title {
    font-size: 1.3rem;
  }
  .page-blog-new-player-guide-oke88__hero-button,
  .page-blog-new-player-guide-oke88__cta-button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
  .page-blog-new-player-guide-oke88__final-cta-button {
    font-size: 1.05rem;
    padding: 12px 25px;
  }
}