:root {
  --primary-color: #C91F17;
  --secondary-color: #E53935;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  --card-bg: #D32F2F;
  --background-color: #B71C1C;
  --text-main-color: #FFF5E1;
  --border-color: #F2B544;
  --glow-color: #FFCC66;
  --gold-color: #F4D34D;
  --deep-red-color: #7A0E0E;
  --default-text-color: #333333; /* Default for light backgrounds */
  --default-light-bg: #ffffff;
}

/* Base styles for the page */
.page-blog-helo888-best-slot-games-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--default-text-color); /* Default text color for light backgrounds */
  background-color: var(--default-light-bg); /* Assuming body has a light background from shared.css */
}

.page-blog-helo888-best-slot-games-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero Section */
.page-blog-helo888-best-slot-games-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: var(--background-color);
  color: var(--text-main-color);
}

.page-blog-helo888-best-slot-games-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-blog-helo888-best-slot-games-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.page-blog-helo888-best-slot-games-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-blog-helo888-best-slot-games-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-helo888-best-slot-games-guide__main-title {
  font-size: clamp(28px, 5vw, 48px); /* Use clamp for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-blog-helo888-best-slot-games-guide__description {
  font-size: clamp(16px, 2.5vw, 20px);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-main-color);
}

.page-blog-helo888-best-slot-games-guide__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #000000; /* Black text for gold button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  box-shadow: 0 0 15px var(--glow-color);
}

.page-blog-helo888-best-slot-games-guide__cta-button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--glow-color);
}

/* Content Section */
.page-blog-helo888-best-slot-games-guide__content-section {
  padding: 40px 20px;
  background-color: var(--default-light-bg);
  color: var(--default-text-color);
}

.page-blog-helo888-best-slot-games-guide__section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--deep-red-color);
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-helo888-best-slot-games-guide__paragraph {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.7;
  text-align: justify;
}

.page-blog-helo888-best-slot-games-guide__link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-blog-helo888-best-slot-games-guide__link:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

/* Card Grid */
.page-blog-helo888-best-slot-games-guide__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-helo888-best-slot-games-guide__card {
  background-color: var(--card-bg);
  color: var(--text-main-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-blog-helo888-best-slot-games-guide__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-helo888-best-slot-games-guide__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--gold-color);
}

.page-blog-helo888-best-slot-games-guide__card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main-color);
}

.page-blog-helo888-best-slot-games-guide__card-text {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

/* Lists */
.page-blog-helo888-best-slot-games-guide__list,
.page-blog-helo888-best-slot-games-guide__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 17px;
  color: var(--default-text-color);
}

.page-blog-helo888-best-slot-games-guide__ordered-list {
  list-style-type: decimal;
}

.page-blog-helo888-best-slot-games-guide__list-item {
  margin-bottom: 10px;
}

.page-blog-helo888-best-slot-games-guide__list-item strong {
  color: var(--deep-red-color);
}

/* FAQ Section */
.page-blog-helo888-best-slot-games-guide__faq-list {
  margin-top: 30px;
}

details.page-blog-helo888-best-slot-games-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  color: var(--text-main-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

details.page-blog-helo888-best-slot-games-guide__faq-item summary.page-blog-helo888-best-slot-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-weight: bold;
  color: var(--text-main-color);
}

details.page-blog-helo888-best-slot-games-guide__faq-item summary.page-blog-helo888-best-slot-games-guide__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog-helo888-best-slot-games-guide__faq-item summary.page-blog-helo888-best-slot-games-guide__faq-question:hover {
  background: var(--deep-red-color);
}

.page-blog-helo888-best-slot-games-guide__faq-qtext {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
}

.page-blog-helo888-best-slot-games-guide__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--gold-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}

details.page-blog-helo888-best-slot-games-guide__faq-item[open] .page-blog-helo888-best-slot-games-guide__faq-toggle {
  transform: rotate(45deg);
}

details.page-blog-helo888-best-slot-games-guide__faq-item .page-blog-helo888-best-slot-games-guide__faq-answer {
  padding: 0 20px 20px;
  background: rgba(255, 255, 255, 0.1); /* Slightly lighter background for answer */
  border-radius: 0 0 8px 8px;
  color: var(--text-main-color);
}

.page-blog-helo888-best-slot-games-guide__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-helo888-best-slot-games-guide__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-helo888-best-slot-games-guide__hero-image img {
    border-radius: 4px;
  }
  
  .page-blog-helo888-best-slot-games-guide__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-helo888-best-slot-games-guide__main-title {
    font-size: 32px; /* Adjusted for mobile */
  }

  .page-blog-helo888-best-slot-games-guide__description {
    font-size: 16px;
  }

  .page-blog-helo888-best-slot-games-guide__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-helo888-best-slot-games-guide__section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .page-blog-helo888-best-slot-games-guide__paragraph,
  .page-blog-helo888-best-slot-games-guide__list-item,
  .page-blog-helo888-best-slot-games-guide__card-text {
    font-size: 15px;
  }

  .page-blog-helo888-best-slot-games-guide__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-helo888-best-slot-games-guide__card {
    padding: 20px;
  }

  .page-blog-helo888-best-slot-games-guide__card-image {
    height: 180px;
  }

  details.page-blog-helo888-best-slot-games-guide__faq-item summary.page-blog-helo888-best-slot-games-guide__faq-question {
    padding: 15px;
  }

  .page-blog-helo888-best-slot-games-guide__faq-qtext {
    font-size: 16px;
  }

  .page-blog-helo888-best-slot-games-guide__faq-toggle {
    font-size: 20px;
  }

  details.page-blog-helo888-best-slot-games-guide__faq-item .page-blog-helo888-best-slot-games-guide__faq-answer {
    padding: 0 15px 15px;
  }

  .page-blog-helo888-best-slot-games-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-helo888-best-slot-games-guide__section,
  .page-blog-helo888-best-slot-games-guide__card,
  .page-blog-helo888-best-slot-games-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-helo888-best-slot-games-guide__cta-buttons,
  .page-blog-helo888-best-slot-games-guide__button-group,
  .page-blog-helo888-best-slot-games-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}