/* style/betting-guides-understanding-markets.css */
.page-betting-guides-understanding-markets {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray text for dark background */
  background-color: #121212; /* Darker background for overall page */
}

.page-betting-guides-understanding-markets__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-betting-guides-understanding-markets__hero {
  background: linear-gradient(135deg, #1A2E4E, #3A5F8F); /* Dark blue to slightly lighter blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700; /* Gold accent */
}

.page-betting-guides-understanding-markets__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-betting-guides-understanding-markets__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #E0E0E0;
}

.page-betting-guides-understanding-markets__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A2E4E; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-betting-guides-understanding-markets__cta-button:hover {
  background-color: #E5C100; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-betting-guides-understanding-markets__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-betting-guides-understanding-markets__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-betting-guides-understanding-markets__cta-button--primary {
  background-color: #FFD700;
  color: #1A2E4E;
}

.page-betting-guides-understanding-markets__cta-button--secondary {
  background-color: #1A2E4E;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-betting-guides-understanding-markets__cta-button--secondary:hover {
  background-color: #2F4D7D; /* Darker blue on hover */
  color: #FFD700;
}

.page-betting-guides-understanding-markets__section {
  padding: 60px 0;
  background-color: #1A2E4E; /* Main section background */
  color: #E0E0E0;
}

.page-betting-guides-understanding-markets__section--alt-bg {
  background-color: #121212; /* Alternate section background for contrast */
}

.page-betting-guides-understanding-markets__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-betting-guides-understanding-markets__subsection-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-section titles */
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-betting-guides-understanding-markets p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #C0C0C0;
}

.page-betting-guides-understanding-markets ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-betting-guides-understanding-markets ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #C0C0C0;
}

.page-betting-guides-understanding-markets ul li strong {
  color: #FFD700;
}

.page-betting-guides-understanding-markets__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-betting-guides-understanding-markets__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  border: 3px solid #FFD700;
}

.page-betting-guides-understanding-markets__section--final-cta {
  background-color: #1A2E4E;
  padding: 80px 0;
  text-align: center;
}

.page-betting-guides-understanding-markets__text-center {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-betting-guides-understanding-markets__hero-title {
    font-size: 2.8em;
  }
  .page-betting-guides-understanding-markets__section-title {
    font-size: 2em;
  }
  .page-betting-guides-understanding-markets__subsection-title {
    font-size: 1.5em;
  }
  .page-betting-guides-understanding-markets p, .page-betting-guides-understanding-markets ul li {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-betting-guides-understanding-markets__hero {
    padding: 60px 0;
  }
  .page-betting-guides-understanding-markets__hero-title {
    font-size: 2.2em;
  }
  .page-betting-guides-understanding-markets__hero-subtitle {
    font-size: 1.1em;
  }
  .page-betting-guides-understanding-markets__section {
    padding: 40px 0;
  }
  .page-betting-guides-understanding-markets__section-title {
    font-size: 1.8em;
  }
  .page-betting-guides-understanding-markets__subsection-title {
    font-size: 1.3em;
  }
  .page-betting-guides-understanding-markets__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-betting-guides-understanding-markets__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .page-betting-guides-understanding-markets__hero-title {
    font-size: 1.8em;
  }
  .page-betting-guides-understanding-markets__hero-subtitle {
    font-size: 0.9em;
  }
  .page-betting-guides-understanding-markets__section-title {
    font-size: 1.5em;
  }
  .page-betting-guides-understanding-markets__subsection-title {
    font-size: 1.1em;
  }
  .page-betting-guides-understanding-markets__cta-button {
    display: block;
    width: 90%;
    margin: 10px auto;
  }
  .page-betting-guides-understanding-markets__cta-button--secondary {
    margin-left: auto;
    margin-right: auto;
  }
  .page-betting-guides-understanding-markets ul {
    padding-left: 10px;
  }
}