.page-game-guides-poker-game-tips {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Inherited from body */
}

.page-game-guides-poker-game-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Adjust for fixed header */
  background: linear-gradient(135deg, #1A73E8, #0F4C81); /* Darker gradient for contrast */
  color: #ffffff;
}

.page-game-guides-poker-game-tips__hero-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-game-guides-poker-game-tips__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-game-guides-poker-game-tips__hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  color: #f0f0f0;
}

.page-game-guides-poker-game-tips__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-guides-poker-game-tips__cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-game-guides-poker-game-tips__cta-button--secondary {
  background: #6c757d;
  margin-left: 20px;
}

.page-game-guides-poker-game-tips__cta-button--secondary:hover {
  background: #5a6268;
}

.page-game-guides-poker-game-tips__section {
  padding: 60px 20px;
  margin-bottom: 20px;
}

.page-game-guides-poker-game-tips__section--white-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-game-guides-poker-game-tips__section--gray-bg {
  background-color: #f1f3f5;
  color: #333333;
}

.page-game-guides-poker-game-tips__dark-bg {
  background-color: #1A73E8;
  color: #ffffff;
}

.page-game-guides-poker-game-tips__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-game-guides-poker-game-tips__heading {
  font-size: 32px;
  font-weight: bold;
  color: #1A73E8;
  margin-bottom: 30px;
  text-align: center;
}

.page-game-guides-poker-game-tips__section--white-bg .page-game-guides-poker-game-tips__heading,
.page-game-guides-poker-game-tips__section--gray-bg .page-game-guides-poker-game-tips__heading {
  color: #1A73E8;
}

.page-game-guides-poker-game-tips__sub-heading {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-game-guides-poker-game-tips__section--dark-bg .page-game-guides-poker-game-tips__sub-heading {
  color: #ffffff;
}

.page-game-guides-poker-game-tips__text-block {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333333;
}

.page-game-guides-poker-game-tips__section--dark-bg .page-game-guides-poker-game-tips__text-block {
  color: #f0f0f0;
}

.page-game-guides-poker-game-tips__text-block a,
.page-game-guides-poker-game-tips__hero-description a {
  color: #1A73E8;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-game-guides-poker-game-tips__text-block a:hover,
.page-game-guides-poker-game-tips__hero-description a:hover {
  color: #0F4C81;
}

.page-game-guides-poker-game-tips__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-game-guides-poker-game-tips__list-item {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.page-game-guides-poker-game-tips__list-item strong {
  color: #1A73E8;
}

.page-game-guides-poker-game-tips__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides-poker-game-tips__faq-section {
  padding-bottom: 80px;
}

.page-game-guides-poker-game-tips__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-game-guides-poker-game-tips__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-game-guides-poker-game-tips__faq-item.active .page-game-guides-poker-game-tips__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-game-guides-poker-game-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-game-guides-poker-game-tips__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-game-guides-poker-game-tips__faq-question:active {
  background: #eeeeee;
}

.page-game-guides-poker-game-tips__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #333333;
}

.page-game-guides-poker-game-tips__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-game-guides-poker-game-tips__faq-item.active .page-game-guides-poker-game-tips__faq-toggle {
  color: #333;
  transform: rotate(45deg);
}

.page-game-guides-poker-game-tips__cta-content {
  text-align: center;
  max-width: 800px;
}

.page-game-guides-poker-game-tips__cta-title {
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-game-guides-poker-game-tips__cta-description {
  font-size: 18px;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-game-guides-poker-game-tips__cta-description a {
  color: #FFD700;
  text-decoration: underline;
  font-weight: bold;
}

.page-game-guides-poker-game-tips__cta-description a:hover {
  color: #FFA500;
}

.page-game-guides-poker-game-tips__cta-button--primary {
  background: #FFD700;
  color: #333333;
  margin-right: 20px;
}

.page-game-guides-poker-game-tips__cta-button--primary:hover {
  background: #FFA500;
  color: #000000;
}

.page-game-guides-poker-game-tips__cta-button--secondary {
  background: none;
  border: 2px solid #ffffff;
  color: #ffffff;
  margin-left: 0;
}

.page-game-guides-poker-game-tips__cta-button--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: none;
  transform: none;
}

.page-game-guides-poker-game-tips .highlight {
  color: #FFD700;
}

.page-game-guides-poker-game-tips .highlight-link {
  color: #FFD700;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-game-guides-poker-game-tips__hero-title {
    font-size: 40px;
  }
  .page-game-guides-poker-game-tips__heading {
    font-size: 28px;
  }
  .page-game-guides-poker-game-tips__sub-heading {
    font-size: 22px;
  }
  .page-game-guides-poker-game-tips__hero-description,
  .page-game-guides-poker-game-tips__text-block,
  .page-game-guides-poker-game-tips__list-item,
  .page-game-guides-poker-game-tips__faq-question h3,
  .page-game-guides-poker-game-tips__faq-answer p {
    font-size: 15px;
  }
  .page-game-guides-poker-game-tips__cta-title {
    font-size: 32px;
  }
  .page-game-guides-poker-game-tips__cta-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-game-guides-poker-game-tips__hero-section {
    padding-top: 160px !important; /* Mobile fixed header adjustment */
    padding-bottom: 40px;
  }
  .page-game-guides-poker-game-tips__hero-title {
    font-size: 32px;
  }
  .page-game-guides-poker-game-tips__hero-description {
    font-size: 16px;
  }
  .page-game-guides-poker-game-tips__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    margin-top: 20px;
  }
  .page-game-guides-poker-game-tips__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-game-guides-poker-game-tips__hero-container .page-game-guides-poker-game-tips__cta-button {
    margin-top: 20px;
    margin-right: 0;
  }
  .page-game-guides-poker-game-tips__section {
    padding: 30px 15px;
  }
  .page-game-guides-poker-game-tips__container {
    padding: 0;
  }
  .page-game-guides-poker-game-tips__heading {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .page-game-guides-poker-game-tips__sub-heading {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .page-game-guides-poker-game-tips__text-block,
  .page-game-guides-poker-game-tips__list-item {
    font-size: 14px;
    line-height: 1.5;
  }
  .page-game-guides-poker-game-tips__list {
    margin-left: 20px;
  }
  .page-game-guides-poker-game-tips__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-game-guides-poker-game-tips__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-game-guides-poker-game-tips__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-game-guides-poker-game-tips__faq-answer {
    padding: 0 15px;
  }
  .page-game-guides-poker-game-tips__faq-item.active .page-game-guides-poker-game-tips__faq-answer {
    padding: 15px !important;
  }
  .page-game-guides-poker-game-tips__cta-title {
    font-size: 28px;
  }
  .page-game-guides-poker-game-tips__cta-description {
    font-size: 15px;
  }
  .page-game-guides-poker-game-tips__section--cta .page-game-guides-poker-game-tips__cta-button {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .page-game-guides-poker-game-tips__section--cta .page-game-guides-poker-game-tips__cta-button + .page-game-guides-poker-game-tips__cta-button {
    margin-top: 15px;
  }
  /* Ensure all images are responsive */
  .page-game-guides-poker-game-tips img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-game-guides-poker-game-tips__section,
  .page-game-guides-poker-game-tips__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}