.page-betting-strategy-hub {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light grey for general text on dark background */
  background-color: #0d0d0d; /* Very dark background */
}

.page-betting-strategy-hub__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-betting-strategy-hub__hero {
  background: linear-gradient(135deg, #001f3f, #000a1a); /* Dark blue to darker blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #ffcc00; /* Gold accent line */
}

.page-betting-strategy-hub__hero-title {
  font-size: 3.5em;
  color: #ffcc00; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-betting-strategy-hub__hero-subtitle {
  font-size: 1.4em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-betting-strategy-hub__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-betting-strategy-hub__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-betting-strategy-hub__btn--primary {
  background-color: #ffcc00; /* Gold for primary action */
  color: #001f3f; /* Dark blue text */
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-betting-strategy-hub__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-betting-strategy-hub__btn--secondary {
  background-color: transparent;
  color: #ffcc00; /* Gold text */
  border: 2px solid #ffcc00;
}

.page-betting-strategy-hub__btn--secondary:hover {
  background-color: #ffcc00;
  color: #001f3f;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.page-betting-strategy-hub__section-title {
  font-size: 2.5em;
  color: #ffcc00; /* Gold for section titles */
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-betting-strategy-hub__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #001f3f;
  border-radius: 2px;
}

.page-betting-strategy-hub__intro-section, 
.page-betting-strategy-hub__importance-section, 
.page-betting-strategy-hub__strategy-pillars, 
.page-betting-strategy-hub__why-mu9-strategy, 
.page-betting-strategy-hub__how-to-use, 
.page-betting-strategy-hub__faq-section, 
.page-betting-strategy-hub__final-cta {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark for content sections */
  border-bottom: 1px solid rgba(255, 204, 0, 0.1);
}

.page-betting-strategy-hub__intro-section p,
.page-betting-strategy-hub__importance-section p,
.page-betting-strategy-hub__how-to-use p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #c0c0c0;
}

.page-betting-strategy-hub__text-link {
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
}

.page-betting-strategy-hub__text-link:hover {
  text-decoration: underline;
}

.page-betting-strategy-hub__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-betting-strategy-hub__image--large {
  max-width: 900px;
}

.page-betting-strategy-hub__importance-section ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-betting-strategy-hub__importance-section ul li {
  background-color: #001f3f; /* Dark blue background for list items */
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1.15em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #ffcc00; /* Gold border accent */
  color: #f0f0f0;
}

.page-betting-strategy-hub__importance-section ul li::before {
  content: '✔';
  color: #ffcc00;
  font-size: 1.2em;
  margin-right: 15px;
  font-weight: bold;
}

.page-betting-strategy-hub__highlight {
  color: #ffcc00;
  font-weight: bold;
}

.page-betting-strategy-hub__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-betting-strategy-hub__strategy-card {
  background-color: #001f3f; /* Dark blue card background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 204, 0, 0.2);
}

.page-betting-strategy-hub__strategy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-betting-strategy-hub__card-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 2px solid #ffcc00;
}

.page-betting-strategy-hub__card-title {
  font-size: 1.8em;
  color: #ffcc00; /* Gold for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-betting-strategy-hub__card-description {
  font-size: 1em;
  color: #c0c0c0;
  margin-bottom: 20px;
}

.page-betting-strategy-hub__card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}

.page-betting-strategy-hub__card-features li {
  color: #f0f0f0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.page-betting-strategy-hub__card-features li::before {
  content: '•';
  color: #ffcc00;
  font-size: 1.5em;
  line-height: 1;
  margin-right: 10px;
}

.page-betting-strategy-hub__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #ffcc00;
  color: #001f3f;
}

.page-betting-strategy-hub__btn--small:hover {
  background-color: #e6b800;
}

.page-betting-strategy-hub__why-mu9-strategy {
  background-color: #0d0d0d;
}

.page-betting-strategy-hub__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-betting-strategy-hub__feature-item {
  background-color: #001f3f; /* Dark blue background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 204, 0, 0.15);
}

.page-betting-strategy-hub__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 204, 0, 0.5));
}

.page-betting-strategy-hub__feature-title {
  font-size: 1.6em;
  color: #ffcc00; /* Gold for feature titles */
  margin-bottom: 15px;
}

.page-betting-strategy-hub__feature-item p {
  color: #c0c0c0;
  font-size: 1em;
}

.page-betting-strategy-hub__how-to-use {
  background-color: #1a1a1a;
}

.page-betting-strategy-hub__steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 40px;
}

.page-betting-strategy-hub__steps li {
  background-color: #001f3f; /* Dark blue background for steps */
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 90px;
  border-left: 5px solid #ffcc00;
  transition: background-color 0.3s ease;
}

.page-betting-strategy-hub__steps li:hover {
  background-color: #002a4f;
}

.page-betting-strategy-hub__steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 30px;
  top: 30px;
  width: 40px;
  height: 40px;
  background-color: #ffcc00;
  color: #001f3f;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-betting-strategy-hub__step-title {
  font-size: 1.8em;
  color: #ffcc00;
  margin-bottom: 10px;
}

.page-betting-strategy-hub__step-title + p {
  color: #c0c0c0;
}

.page-betting-strategy-hub__faq-section {
  background-color: #0d0d0d;
}

.page-betting-strategy-hub__faq-item {
  background-color: #001f3f;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 204, 0, 0.1);
}

.page-betting-strategy-hub__faq-question {
  font-size: 1.4em;
  color: #ffcc00;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #002a4f;
  transition: background-color 0.3s ease;
}

.page-betting-strategy-hub__faq-question:hover {
  background-color: #003a6f;
}

.page-betting-strategy-hub__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-betting-strategy-hub__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-betting-strategy-hub__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #001f3f;
  color: #c0c0c0;
}

.page-betting-strategy-hub__faq-answer p {
  padding-bottom: 20px;
  margin: 0;
}

.page-betting-strategy-hub__faq-answer.open {
  max-height: 200px; /* Adjust based on content */
  padding-top: 15px;
}

.page-betting-strategy-hub__final-cta {
  text-align: center;
  background-color: #001f3f; /* Dark blue background */
  padding: 100px 0;
}

.page-betting-strategy-hub__final-cta .page-betting-strategy-hub__section-title {
  color: #ffcc00;
}

.page-betting-strategy-hub__final-cta p {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-strategy-hub__final-cta .page-betting-strategy-hub__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Floating Ad Menu */
.page-betting-strategy-hub__floating-ad-menu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: rgba(0, 31, 63, 0.9); /* Semi-transparent dark blue */
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  transform: translateX(120%); /* Hidden by default */
  transition: transform 0.5s ease-in-out;
}

.page-betting-strategy-hub__floating-ad-menu.active {
  transform: translateX(0); /* Show when active */
}

.page-betting-strategy-hub__floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background-color: #ffcc00; /* Gold background for buttons */
  color: #001f3f; /* Dark blue text */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-betting-strategy-hub__floating-btn:hover {
  background-color: #e6b800;
  transform: translateX(-3px);
}

.page-betting-strategy-hub__floating-icon {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.page-betting-strategy-hub__floating-close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  color: #ffcc00;
  font-size: 1.5em;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  transition: color 0.3s ease;
}

.page-betting-strategy-hub__floating-close-btn:hover {
  color: #e6b800;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-betting-strategy-hub__hero-title {
    font-size: 3em;
  }
  .page-betting-strategy-hub__hero-subtitle {
    font-size: 1.2em;
  }
  .page-betting-strategy-hub__section-title {
    font-size: 2em;
  }
  .page-betting-strategy-hub__strategy-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-betting-strategy-hub__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-betting-strategy-hub__steps li {
    padding-left: 70px;
  }
  .page-betting-strategy-hub__steps li::before {
    left: 20px;
    top: 25px;
    width: 35px;
    height: 35px;
    font-size: 1.2em;
  }
  .page-betting-strategy-hub__step-title {
    font-size: 1.6em;
  }
  .page-betting-strategy-hub__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-betting-strategy-hub__hero {
    padding: 80px 0;
  }
  .page-betting-strategy-hub__hero-title {
    font-size: 2.5em;
  }
  .page-betting-strategy-hub__hero-subtitle {
    font-size: 1.1em;
  }
  .page-betting-strategy-hub__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-betting-strategy-hub__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-betting-strategy-hub__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-betting-strategy-hub__intro-section, 
  .page-betting-strategy-hub__importance-section, 
  .page-betting-strategy-hub__strategy-pillars, 
  .page-betting-strategy-hub__why-mu9-strategy, 
  .page-betting-strategy-hub__how-to-use, 
  .page-betting-strategy-hub__faq-section, 
  .page-betting-strategy-hub__final-cta {
    padding: 60px 0;
  }
  .page-betting-strategy-hub__importance-section ul li {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-betting-strategy-hub__strategy-card {
    padding: 25px;
  }
  .page-betting-strategy-hub__card-title {
    font-size: 1.5em;
  }
  .page-betting-strategy-hub__features-grid {
    gap: 30px;
  }
  .page-betting-strategy-hub__feature-title {
    font-size: 1.4em;
  }
  .page-betting-strategy-hub__steps li {
    padding: 25px 20px 25px 70px;
  }
  .page-betting-strategy-hub__step-title {
    font-size: 1.5em;
  }
  .page-betting-strategy-hub__faq-question {
    font-size: 1.1em;
  }
  .page-betting-strategy-hub__faq-answer.open {
    max-height: 300px; /* Adjust for potentially longer mobile answers */
  }
  .page-betting-strategy-hub__final-cta p {
    font-size: 1.1em;
  }
  .page-betting-strategy-hub__floating-ad-menu {
    right: 10px;
    bottom: 10px;
    padding: 10px;
  }
  .page-betting-strategy-hub__floating-btn {
    font-size: 0.9em;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .page-betting-strategy-hub__hero-title {
    font-size: 2em;
  }
  .page-betting-strategy-hub__hero-subtitle {
    font-size: 1em;
  }
  .page-betting-strategy-hub__btn {
    width: 90%;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-betting-strategy-hub__section-title {
    font-size: 1.6em;
  }
  .page-betting-strategy-hub__intro-section p,
  .page-betting-strategy-hub__importance-section p,
  .page-betting-strategy-hub__how-to-use p {
    font-size: 0.95em;
  }
  .page-betting-strategy-hub__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-betting-strategy-hub__features-grid {
    grid-template-columns: 1fr;
  }
  .page-betting-strategy-hub__feature-icon {
    width: 50px;
    height: 50px;
  }
  .page-betting-strategy-hub__step-title {
    font-size: 1.3em;
  }
  .page-betting-strategy-hub__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-betting-strategy-hub__faq-answer.open {
    max-height: 400px; /* Further adjust for mobile */
  }
  .page-betting-strategy-hub__floating-ad-menu {
    transform: translateX(150%); /* Hide more aggressively */
  }
  .page-betting-strategy-hub__floating-ad-menu.active {
    transform: translateX(0);
  }
  .page-betting-strategy-hub__floating-close-btn {
    font-size: 1.2em;
    top: 2px;
    right: 2px;
  }
}