.page-daily-match-predictions-expert-picks {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Default text color for dark background */
  background-color: #000000; /* Main background color */
}

.page-daily-match-predictions-expert-picks__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-daily-match-predictions-expert-picks__hero-section {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  padding: 100px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-daily-match-predictions-expert-picks__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-daily-match-predictions-expert-picks__hero-subtitle {
  font-size: 1.4em;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-daily-match-predictions-expert-picks__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.page-daily-match-predictions-expert-picks__btn--primary {
  background-color: #FFD700;
  color: #000000;
  border: 2px solid #FFD700;
}

.page-daily-match-predictions-expert-picks__btn--primary:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-daily-match-predictions-expert-picks__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-daily-match-predictions-expert-picks__btn--secondary:hover {
  background-color: #FFD700;
  color: #000000;
}

.page-daily-match-predictions-expert-picks__btn--block {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.page-daily-match-predictions-expert-picks__content-section {
  padding: 60px 0;
}

.page-daily-match-predictions-expert-picks__content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.page-daily-match-predictions-expert-picks__main-article {
  line-height: 1.8;
}

.page-daily-match-predictions-expert-picks__article-heading {
  font-size: 2.5em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 25px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-daily-match-predictions-expert-picks__sub-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-daily-match-predictions-expert-picks__main-article p {
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-daily-match-predictions-expert-picks__main-article a {
  color: #FFD700;
  text-decoration: underline;
}

.page-daily-match-predictions-expert-picks__main-article a:hover {
  color: #e6c200;
}

.page-daily-match-predictions-expert-picks__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-daily-match-predictions-expert-picks__list li {
  margin-bottom: 8px;
}

.page-daily-match-predictions-expert-picks__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 25px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-daily-match-predictions-expert-picks__image--full-width {
  max-height: 400px;
  object-fit: cover;
}

.page-daily-match-predictions-expert-picks__call-to-action-text {
  text-align: center;
  font-size: 1.2em;
  margin: 30px 0;
  color: #FFD700;
}

.page-daily-match-predictions-expert-picks__faq-item {
  background-color: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.page-daily-match-predictions-expert-picks__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-daily-match-predictions-expert-picks__faq-answer {
  color: #cccccc;
}

.page-daily-match-predictions-expert-picks__cta-footer {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #333333;
}

.page-daily-match-predictions-expert-picks__cta-footer .page-daily-match-predictions-expert-picks__btn {
  margin: 0 10px;
}

.page-daily-match-predictions-expert-picks__sidebar {
  background-color: #1a1a1a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-daily-match-predictions-expert-picks__sidebar-block {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #333333;
}

.page-daily-match-predictions-expert-picks__sidebar-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-daily-match-predictions-expert-picks__sidebar-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-daily-match-predictions-expert-picks__sidebar p {
  color: #cccccc;
  margin-bottom: 15px;
  line-height: 1.6;
}

.page-daily-match-predictions-expert-picks__image--sidebar {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-daily-match-predictions-expert-picks__content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-daily-match-predictions-expert-picks__hero-title {
    font-size: 2.5em;
  }

  .page-daily-match-predictions-expert-picks__hero-subtitle {
    font-size: 1.2em;
  }

  .page-daily-match-predictions-expert-picks__article-heading {
    font-size: 2em;
  }

  .page-daily-match-predictions-expert-picks__sub-heading {
    font-size: 1.5em;
  }

  .page-daily-match-predictions-expert-picks__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-daily-match-predictions-expert-picks__cta-footer .page-daily-match-predictions-expert-picks__btn {
    display: block;
    margin: 15px auto;
  }
}

@media (max-width: 576px) {
  .page-daily-match-predictions-expert-picks__hero-title {
    font-size: 2em;
  }

  .page-daily-match-predictions-expert-picks__hero-subtitle {
    font-size: 1em;
  }

  .page-daily-match-predictions-expert-picks__hero-section {
    padding: 60px 0;
  }

  .page-daily-match-predictions-expert-picks__content-section {
    padding: 30px 0;
  }

  .page-daily-match-predictions-expert-picks__article-heading {
    font-size: 1.8em;
  }

  .page-daily-match-predictions-expert-picks__sub-heading {
    font-size: 1.3em;
  }

  .page-daily-match-predictions-expert-picks__sidebar {
    padding: 20px;
  }
}