:root {
  --primary-color: #113B7A;
  --secondary-color: #1D5FD1;
  --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  --card-bg: #10233F;
  --text-main: #F3F8FF;
  --text-secondary: #AFC4E8;
  --border-color: #244D84;
  --glow-color: #4FA8FF;
  --gold-color: #F2C14E;
  --divider-color: #1B3357;
  --deep-navy: #08162B;
}

.page-blog-analysis-of-current-betting-market {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--deep-navy);
  color: var(--text-main); /* Light text on dark body background */
}

.page-blog-analysis-of-current-betting-market__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-color: var(--deep-navy);
  color: var(--text-main);
}

.page-blog-analysis-of-current-betting-market__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-blog-analysis-of-current-betting-market__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-blog-analysis-of-current-betting-market__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-analysis-of-current-betting-market__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-blog-analysis-of-current-betting-market__hero-content h1 {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-main);
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-blog-analysis-of-current-betting-market__hero-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-blog-analysis-of-current-betting-market__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  border: none;
}

.page-blog-analysis-of-current-betting-market__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-blog-analysis-of-current-betting-market__cta-button--small {
  padding: 12px 30px;
  font-size: 16px;
}

.page-blog-analysis-of-current-betting-market__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--deep-navy);
  color: var(--text-main);
}

.page-blog-analysis-of-current-betting-market__article {
  padding: 20px;
  border-radius: 8px;
  background-color: var(--card-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}

.page-blog-analysis-of-current-betting-market__article h2 {
  color: var(--gold-color);
  font-size: 2.2rem;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--divider-color);
  padding-bottom: 15px;
}

.page-blog-analysis-of-current-betting-market__article h3 {
  color: var(--primary-color);
  font-size: 1.6rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-analysis-of-current-betting-market__article p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.page-blog-analysis-of-current-betting-market__article strong {
  color: var(--gold-color);
}

.page-blog-analysis-of-current-betting-market__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 25px 0;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-analysis-of-current-betting-market__conclusion {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--divider-color);
}

.page-blog-analysis-of-current-betting-market__conclusion p {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 25px;
}

/* FAQ Section */
.page-blog-analysis-of-current-betting-market__faq-section {
  margin-top: 40px;
  padding: 20px;
  border-radius: 8px;
  background-color: var(--card-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-analysis-of-current-betting-market__faq-title {
  color: var(--gold-color);
  font-size: 2.2rem;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 2px solid var(--divider-color);
  padding-bottom: 15px;
}

details.page-blog-analysis-of-current-betting-market__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--deep-navy);
}

details.page-blog-analysis-of-current-betting-market__faq-item summary.page-blog-analysis-of-current-betting-market__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;
  color: var(--text-main);
}

details.page-blog-analysis-of-current-betting-market__faq-item summary.page-blog-analysis-of-current-betting-market__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog-analysis-of-current-betting-market__faq-item summary.page-blog-analysis-of-current-betting-market__faq-question:hover {
  background: rgba(var(--primary-color), 0.1);
}

.page-blog-analysis-of-current-betting-market__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}

.page-blog-analysis-of-current-betting-market__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--gold-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-blog-analysis-of-current-betting-market__faq-item .page-blog-analysis-of-current-betting-market__faq-answer {
  padding: 0 20px 20px;
  background: rgba(var(--primary-color), 0.05);
  border-radius: 0 0 5px 5px;
  color: var(--text-secondary);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-analysis-of-current-betting-market__hero-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog-analysis-of-current-betting-market__article h2,
  .page-blog-analysis-of-current-betting-market__faq-title {
    font-size: 1.8rem;
  }
  .page-blog-analysis-of-current-betting-market__article h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .page-blog-analysis-of-current-betting-market__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-blog-analysis-of-current-betting-market__hero-image img {
    border-radius: 4px;
  }
  
  .page-blog-analysis-of-current-betting-market__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-analysis-of-current-betting-market__content-area {
    padding: 20px 15px;
  }

  .page-blog-analysis-of-current-betting-market__article {
    padding: 15px;
  }

  .page-blog-analysis-of-current-betting-market__article h2,
  .page-blog-analysis-of-current-betting-market__faq-title {
    font-size: 1.6rem;
  }

  .page-blog-analysis-of-current-betting-market__article h3 {
    font-size: 1.2rem;
  }

  .page-blog-analysis-of-current-betting-market__article p {
    font-size: 1rem;
  }

  .page-blog-analysis-of-current-betting-market__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-analysis-of-current-betting-market__section,
  .page-blog-analysis-of-current-betting-market__card,
  .page-blog-analysis-of-current-betting-market__container,
  .page-blog-analysis-of-current-betting-market__faq-section,
  .page-blog-analysis-of-current-betting-market__conclusion {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  details.page-blog-analysis-of-current-betting-market__faq-item summary.page-blog-analysis-of-current-betting-market__faq-question { padding: 15px; }
  .page-blog-analysis-of-current-betting-market__faq-qtext { font-size: 15px; }
  .page-blog-analysis-of-current-betting-market__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  details.page-blog-analysis-of-current-betting-market__faq-item .page-blog-analysis-of-current-betting-market__faq-answer {
    padding: 0 15px 15px;
  }
}