/* style/blog-hello88-bizz-game-strategy-tips.css */

/* Custom CSS Variables (for easy color management) */
:root {
  --page-primary-color: #11A84E;
  --page-secondary-color: #22C768;
  --page-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-card-bg-color: #11271B;
  --page-background-color: #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-color: #0A4B2C;
}

/* Base styles for the page content, ensuring contrast with assumed dark body background */
.page-blog-hello88-bizz-game-strategy-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-text-main, #F2FFF6); /* Default text color for dark backgrounds */
  background-color: var(--page-background-color, #08160F); /* Page specific background */
}

.page-blog-hello88-bizz-game-strategy-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-hello88-bizz-game-strategy-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: var(--page-background-color, #08160F);
  color: var(--page-text-main, #F2FFF6);
}

.page-blog-hello88-bizz-game-strategy-tips__hero-image {
  width: 100%;
  max-width: 1920px; /* Max width for the hero image itself */
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 30px;
  border-radius: 10px;
}

.page-blog-hello88-bizz-game-strategy-tips__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-hello88-bizz-game-strategy-tips__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  color: var(--page-text-main, #F2FFF6);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-hello88-bizz-game-strategy-tips__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--page-text-secondary, #A7D9B8);
}

.page-blog-hello88-bizz-game-strategy-tips__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-blog-hello88-bizz-game-strategy-tips__btn-primary,
.page-blog-hello88-bizz-game-strategy-tips__btn-secondary,
.page-blog-hello88-bizz-game-strategy-tips__card-link,
.page-blog-hello88-bizz-game-strategy-tips__faq-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow long words to break */
  text-align: center;
}

.page-blog-hello88-bizz-game-strategy-tips__btn-primary {
  background: var(--page-button-gradient, linear-gradient(180deg, #2AD16F 0%, #13994A 100%)); /* Custom button color */
  color: var(--page-text-main, #F2FFF6);
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-hello88-bizz-game-strategy-tips__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-hello88-bizz-game-strategy-tips__btn-secondary {
  background-color: transparent;
  color: var(--page-primary-color, #11A84E);
  border: 2px solid var(--page-border-color, #2E7A4E);
}

.page-blog-hello88-bizz-game-strategy-tips__btn-secondary:hover {
  background-color: var(--page-primary-color, #11A84E);
  color: var(--page-text-main, #F2FFF6);
}

/* General Sections */
.page-blog-hello88-bizz-game-strategy-tips__introduction-section,
.page-blog-hello88-bizz-game-strategy-tips__game-strategies-section,
.page-blog-hello88-bizz-game-strategy-tips__general-tips-section,
.page-blog-hello88-bizz-game-strategy-tips__why-choose-section,
.page-blog-hello88-bizz-game-strategy-tips__faq-section,
.page-blog-hello88-bizz-game-strategy-tips__conclusion-section {
  padding: 80px 0;
}

.page-blog-hello88-bizz-game-strategy-tips__dark-bg {
  background-color: var(--page-background-color, #08160F);
  color: var(--page-text-main, #F2FFF6);
}

.page-blog-hello88-bizz-game-strategy-tips__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--page-gold-color, #F2C14E); /* Using gold for main titles */
}

.page-blog-hello88-bizz-game-strategy-tips__text-block {
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-align: justify;
  color: var(--page-text-secondary, #A7D9B8);
}

.page-blog-hello88-bizz-game-strategy-tips__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* Cards */
.page-blog-hello88-bizz-game-strategy-tips__card {
  background-color: var(--page-card-bg-color, #11271B); /* Custom card background */
  border: 1px solid var(--page-border-color, #2E7A4E);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: var(--page-text-main, #F2FFF6);
}

.page-blog-hello88-bizz-game-strategy-tips__card--light {
  background-color: var(--page-card-bg-color, #11271B); /* Explicitly light for contrast in dark section */
  color: var(--page-text-main, #F2FFF6);
}

.page-blog-hello88-bizz-game-strategy-tips__card-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--page-gold-color, #F2C14E);
}

.page-blog-hello88-bizz-game-strategy-tips__card-text {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--page-text-secondary, #A7D9B8);
}

.page-blog-hello88-bizz-game-strategy-tips__card-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-hello88-bizz-game-strategy-tips__card-link {
  color: var(--page-glow-color, #57E38D);
  text-decoration: none;
  font-weight: 500;
  margin-top: 15px;
  display: inline-block;
}

.page-blog-hello88-bizz-game-strategy-tips__card-link:hover {
  text-decoration: underline;
  color: var(--page-primary-color, #11A84E);
}

/* Lists */
.page-blog-hello88-bizz-game-strategy-tips__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--page-text-secondary, #A7D9B8);
}

.page-blog-hello88-bizz-game-strategy-tips__list-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-blog-hello88-bizz-game-strategy-tips__list-item strong {
  color: var(--page-text-main, #F2FFF6);
}

.page-blog-hello88-bizz-game-strategy-tips__list--columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  list-style: none; /* Remove default list style */
  margin-left: 0;
  padding-left: 0;
}

.page-blog-hello88-bizz-game-strategy-tips__list--columns .page-blog-hello88-bizz-game-strategy-tips__list-item {
  background-color: var(--page-card-bg-color, #11271B);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--page-divider-color, #1E3A2A);
  color: var(--page-text-secondary, #A7D9B8);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-blog-hello88-bizz-game-strategy-tips__list--columns .page-blog-hello88-bizz-game-strategy-tips__list-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--page-text-main, #F2FFF6);
}

/* FAQ Section */
.page-blog-hello88-bizz-game-strategy-tips__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-hello88-bizz-game-strategy-tips__faq-item {
  background-color: var(--page-card-bg-color, #11271B);
  border: 1px solid var(--page-border-color, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--page-text-main, #F2FFF6);
}

.page-blog-hello88-bizz-game-strategy-tips__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  outline: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--page-text-main, #F2FFF6);
  list-style: none; /* Remove default summary marker */
}

.page-blog-hello88-bizz-game-strategy-tips__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit browsers */
}

.page-blog-hello88-bizz-game-strategy-tips__faq-item summary:hover {
  background-color: var(--page-deep-green-color, #0A4B2C);
}

.page-blog-hello88-bizz-game-strategy-tips__faq-qtext {
  flex-grow: 1;
}

.page-blog-hello88-bizz-game-strategy-tips__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-gold-color, #F2C14E);
}