/* style/blog-hello88-game-strategy.css */
:root {
  --color-primary: #11A84E;
  --color-secondary: #22C768;
  --color-button-gradient-start: #2AD16F;
  --color-button-gradient-end: #13994A;
  --color-card-bg: #11271B;
  --color-background: #08160F;
  --color-text-main: #F2FFF6;
  --color-text-secondary: #A7D9B8;
  --color-border: #2E7A4E;
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;
}

.page-blog-hello88-game-strategy {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--color-text-main); /* Default text color for dark background */
  background-color: var(--color-background); /* Body background from shared.css, this is for main content sections */
}

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

.page-blog-hello88-game-strategy__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 30px;
}

.page-blog-hello88-game-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-hello88-game-strategy__hero-content {
  text-align: center;
  max-width: 900px;
  color: var(--color-text-main);
  z-index: 1;
}

.page-blog-hello88-game-strategy__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-hello88-game-strategy__description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog-hello88-game-strategy__btn-primary,
.page-blog-hello88-game-strategy__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-hello88-game-strategy__btn-primary {
  background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
  color: #ffffff;
  border: 2px solid var(--color-button-gradient-start);
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-hello88-game-strategy__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-hello88-game-strategy__btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.2);
}

.page-blog-hello88-game-strategy__btn-secondary:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.4);
}

.page-blog-hello88-game-strategy__btn-small {
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: 40px;
}

.page-blog-hello88-game-strategy__section {
  padding: 80px 20px;
  margin-bottom: 0;
}

.page-blog-hello88-game-strategy__dark-bg {
  background-color: var(--color-background);
  color: var(--color-text-main);
}

.page-blog-hello88-game-strategy__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-blog-hello88-game-strategy__light-bg .page-blog-hello88-game-strategy__section-title,
.page-blog-hello88-game-strategy__light-bg .page-blog-hello88-game-strategy__sub-title {
  color: #000000;
}

.page-blog-hello88-game-strategy__light-bg .page-blog-hello88-game-strategy__text-block,
.page-blog-hello88-game-strategy__light-bg .page-blog-hello88-game-strategy__list {
  color: #333333;
}

.page-blog-hello88-game-strategy__light-bg .page-blog-hello88-game-strategy__highlight {
  color: var(--color-deep-green);
}

.page-blog-hello88-game-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-hello88-game-strategy__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-gold);
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog-hello88-game-strategy__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.page-blog-hello88-game-strategy__text-block {
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-blog-hello88-game-strategy__text-block a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.page-blog-hello88-game-strategy__text-block a:hover {
  color: var(--color-gold);
}

.page-blog-hello88-game-strategy__text-main {
  color: var(--color-text-main);
}

.page-blog-hello88-game-strategy__text-secondary {
  color: var(--color-text-secondary);
}

.page-blog-hello88-game-strategy__highlight {
  color: var(--color-gold);
  font-weight: 600;
}

.page-blog-hello88-game-strategy__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-blog-hello88-game-strategy__list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-blog-hello88-game-strategy__list li strong {
  color: var(--color-primary);
}

.page-blog-hello88-game-strategy__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-hello88-game-strategy__image-center {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-hello88-game-strategy__text-center {
  text-align: center;
}

.page-blog-hello88-game-strategy__faq-list {
  margin-top: 40px;
}

.page-blog-hello88-game-strategy__faq-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-hello88-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-main);
  cursor: pointer;
  background-color: var(--color-deep-green);
  transition: background-color 0.3s ease;
  list-style: none;
  user-select: none;
}

.page-blog-hello88-game-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hello88-game-strategy__faq-question:hover {
  background-color: var(--color-primary);
}

.page-blog-hello88-game-strategy__faq-item[open] > .page-blog-hello88-game-strategy__faq-question {
    background-color: var(--color-primary);
}

.page-blog-hello88-game-strategy__faq-qtext {
  flex-grow: 1;
}

.page-blog-hello88-game-strategy__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--color-gold);
}

.page-blog-hello88-game-strategy__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: var(--color-text-secondary);
  background-color: var(--color-card-bg);
  border-top: 1px solid var(--color-border);
}

.page-blog-hello88-game-strategy__faq-answer p {
  margin-bottom: 0;
}

.page-blog-hello88-game-strategy__margin-top {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-hello88-game-strategy__section {
    padding: 60px 15px;
  }

  .page-blog-hello88-game-strategy__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-blog-hello88-game-strategy__description {
    font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  }

  .page-blog-hello88-game-strategy__section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }

  .page-blog-hello88-game-strategy__sub-title {
    font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  }
}

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

  .page-blog-hello88-game-strategy__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-hello88-game-strategy__main-title {
    font-size: 2.2rem !important;
    margin-bottom: 15px;
  }

  .page-blog-hello88-game-strategy__description {
    font-size: 1rem !important;
    margin-bottom: 20px;
  }

  .page-blog-hello88-game-strategy__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-hello88-game-strategy__btn-primary,
  .page-blog-hello88-game-strategy__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 25px;
    font-size: 1rem;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-hello88-game-strategy__section {
    padding: 40px 15px;
  }

  .page-blog-hello88-game-strategy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-hello88-game-strategy__section-title {
    font-size: 1.8rem !important;
    margin-bottom: 30px;
  }

  .page-blog-hello88-game-strategy__sub-title {
    font-size: 1.4rem !important;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-hello88-game-strategy__text-block,
  .page-blog-hello88-game-strategy__list li {
    font-size: 0.95rem !important;
  }

  .page-blog-hello88-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-hello88-game-strategy__image-full-width,
  .page-blog-hello88-game-strategy__image-center {
    margin: 20px auto !important;
  }

  .page-blog-hello88-game-strategy__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-hello88-game-strategy__faq-answer {
    padding: 15px 20px;
    font-size: 0.9rem;
  }

  .page-blog-hello88-game-strategy__faq-toggle {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .page-blog-hello88-game-strategy__main-title {
    font-size: 1.8rem !important;
  }

  .page-blog-hello88-game-strategy__section-title {
    font-size: 1.5rem !important;
  }

  .page-blog-hello88-game-strategy__sub-title {
    font-size: 1.2rem !important;
  }
}