/* style/expert-predictions-strategy-guide.css */

/* Custom Properties */
:root {
  --nbet-primary: #1A237E; /* Deep Indigo */
  --nbet-secondary: #FFD700; /* Gold */
  --nbet-text-dark: #333333;
  --nbet-text-light: #FFFFFF;
  --nbet-accent-light: #e5dc81; /* Complementary for emphasis */
  --nbet-background-light: #f8f8f8;
  --nbet-background-dark: #2c388e; /* Slightly lighter primary for contrast */
}

.page-expert-predictions-strategy-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--nbet-text-dark);
  background-color: var(--nbet-background-light);
}

.page-expert-predictions-strategy-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-expert-predictions-strategy-guide__hero-section {
  background: linear-gradient(135deg, var(--nbet-primary) 0%, #3a4799 100%);
  color: var(--nbet-text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-expert-predictions-strategy-guide__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,pattern]');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-expert-predictions-strategy-guide__hero-section > .page-expert-predictions-strategy-guide__container {
  position: relative;
  z-index: 1;
}

.page-expert-predictions-strategy-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--nbet-secondary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-expert-predictions-strategy-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-expert-predictions-strategy-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-expert-predictions-strategy-guide__btn--primary {
  background-color: var(--nbet-secondary);
  color: var(--nbet-primary);
  border: 2px solid var(--nbet-secondary);
}

.page-expert-predictions-strategy-guide__btn--primary:hover {
  background-color: #e6c200;
  color: var(--nbet-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-strategy-guide__btn--secondary {
  background-color: transparent;
  color: var(--nbet-primary);
  border: 2px solid var(--nbet-primary);
  padding: 12px 25px;
}

.page-expert-predictions-strategy-guide__btn--secondary:hover {
  background-color: var(--nbet-primary);
  color: var(--nbet-text-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-strategy-guide__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Content Section */
.page-expert-predictions-strategy-guide__content-section {
  padding: 60px 0;
}

.page-expert-predictions-strategy-guide__main-content {
  background-color: var(--nbet-text-light);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-expert-predictions-strategy-guide__section-title {
  font-size: 2.5em;
  color: var(--nbet-primary);
  margin-bottom: 30px;
  border-bottom: 3px solid var(--nbet-secondary);
  padding-bottom: 10px;
}

.page-expert-predictions-strategy-guide__sub-section-title {
  font-size: 1.8em;
  color: var(--nbet-primary);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-expert-predictions-strategy-guide__article p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--nbet-text-dark);
}

.page-expert-predictions-strategy-guide__article ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: var(--nbet-text-dark);
}

.page-expert-predictions-strategy-guide__article ul li {
  margin-bottom: 8px;
}

.page-expert-predictions-strategy-guide__table-of-contents {
  list-style: none;
  padding: 20px;
  background-color: var(--nbet-background-light);
  border-left: 5px solid var(--nbet-secondary);
  margin-bottom: 40px;
  border-radius: 0 5px 5px 0;
}

.page-expert-predictions-strategy-guide__table-of-contents li {
  margin-bottom: 10px;
}

.page-expert-predictions-strategy-guide__table-of-contents a {
  text-decoration: none;
  color: var(--nbet-primary);
  font-weight: bold;
  transition: color 0.2s ease;
}

.page-expert-predictions-strategy-guide__table-of-contents a:hover {
  color: var(--nbet-secondary);
}

.page-expert-predictions-strategy-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-expert-predictions-strategy-guide__hero-title {
    font-size: 2.5em;
  }

  .page-expert-predictions-strategy-guide__hero-description {
    font-size: 1em;
  }

  .page-expert-predictions-strategy-guide__section-title {
    font-size: 2em;
  }

  .page-expert-predictions-strategy-guide__sub-section-title {
    font-size: 1.5em;
  }

  .page-expert-predictions-strategy-guide__main-content {
    padding: 20px;
  }

  .page-expert-predictions-strategy-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-expert-predictions-strategy-guide__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-expert-predictions-strategy-guide__hero-title {
    font-size: 2em;
  }

  .page-expert-predictions-strategy-guide__hero-description {
    font-size: 0.9em;
  }

  .page-expert-predictions-strategy-guide__section-title {
    font-size: 1.8em;
  }

  .page-expert-predictions-strategy-guide__sub-section-title {
    font-size: 1.3em;
  }

  .page-expert-predictions-strategy-guide__btn {
    width: 100%;
    margin-bottom: 10px;
  }
}