.page-expert-predictions-daily-picks {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

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

.page-expert-predictions-daily-picks__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-expert-predictions-daily-picks__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: page-expert-predictions-daily-picks__hero-pulse 15s infinite alternate;
  z-index: 0;
}

@keyframes page-expert-predictions-daily-picks__hero-pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

.page-expert-predictions-daily-picks__main-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-expert-predictions-daily-picks__subtitle {
  font-size: 1.5em;
  color: #e5dfd3;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-expert-predictions-daily-picks__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;
  position: relative;
  z-index: 1;
}

.page-expert-predictions-daily-picks__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-expert-predictions-daily-picks__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

.page-expert-predictions-daily-picks__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
}

.page-expert-predictions-daily-picks__btn--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  margin-top: 40px;
}

.page-expert-predictions-daily-picks__introduction,
.page-expert-predictions-daily-picks__prediction-methodology,
.page-expert-predictions-daily-picks__daily-predictions,
.page-expert-predictions-daily-picks__benefits,
.page-expert-predictions-daily-picks__cta,
.page-expert-predictions-daily-picks__faq {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-expert-predictions-daily-picks__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-expert-predictions-daily-picks__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
  color: #e5dfd3;
}

.page-expert-predictions-daily-picks__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-expert-predictions-daily-picks__text-content {
  flex: 1;
}

.page-expert-predictions-daily-picks__text-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #e5dfd3;
}

.page-expert-predictions-daily-picks__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-expert-predictions-daily-picks__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-expert-predictions-daily-picks__methodology-grid,
.page-expert-predictions-daily-picks__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-expert-predictions-daily-picks__method-card,
.page-expert-predictions-daily-picks__benefit-card {
  background-color: #2a3341;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3a475a;
}

.page-expert-predictions-daily-picks__method-card:hover,
.page-expert-predictions-daily-picks__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-expert-predictions-daily-picks__card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-expert-predictions-daily-picks__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-expert-predictions-daily-picks__method-card p,
.page-expert-predictions-daily-picks__benefit-card p {
  font-size: 1em;
  color: #c0c5ce;
}

.page-expert-predictions-daily-picks__prediction-table-wrapper {
  overflow-x: auto;
  margin-bottom: 40px;
}

.page-expert-predictions-daily-picks__prediction-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  background-color: #2a3341;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-daily-picks__prediction-table th,
.page-expert-predictions-daily-picks__prediction-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #3a475a;
  color: #e5dfd3;
}

.page-expert-predictions-daily-picks__prediction-table th {
  background-color: #FFD700;
  color: #1A202C;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9em;
}

.page-expert-predictions-daily-picks__prediction-table tbody tr:nth-child(even) {
  background-color: #1A202C;
}

.page-expert-predictions-daily-picks__prediction-table tbody tr:hover {
  background-color: #3a475a;
}

.page-expert-predictions-daily-picks__table-btn {
  display: inline-block;
  padding: 8px 15px;
  background-color: #FFD700;
  color: #1A202C;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-expert-predictions-daily-picks__table-btn:hover {
  background-color: #e6c200;
}

.page-expert-predictions-daily-picks__disclaimer {
  text-align: center;
  font-size: 0.9em;
  color: #c0c5ce;
  margin-top: 20px;
}

.page-expert-predictions-daily-picks__cta {
  text-align: center;
  background: linear-gradient(135deg, #1A202C, #3a475a);
  padding: 80px 0;
}

.page-expert-predictions-daily-picks__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-expert-predictions-daily-picks__cta-image {
  max-width: 600px;
  width: 100%;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.page-expert-predictions-daily-picks__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-expert-predictions-daily-picks__faq-item {
  background-color: #2a3341;
  border: 1px solid #3a475a;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.page-expert-predictions-daily-picks__faq-item:hover {
  background-color: #3a475a;
}

.page-expert-predictions-daily-picks__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-expert-predictions-daily-picks__faq-question::after {
  content: '+';
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-expert-predictions-daily-picks__faq-question.active::after {
  transform: rotate(45deg);
}

.page-expert-predictions-daily-picks__faq-answer {
  font-size: 1em;
  color: #c0c5ce;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
  opacity: 0;
}

.page-expert-predictions-daily-picks__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  opacity: 1;
  margin-top: 15px;
}

.page-expert-predictions-daily-picks__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-expert-predictions-daily-picks__text-link:hover {
  text-decoration: underline;
}

.highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-expert-predictions-daily-picks__main-title {
    font-size: 2.8em;
  }

  .page-expert-predictions-daily-picks__subtitle {
    font-size: 1.3em;
  }

  .page-expert-predictions-daily-picks__section-title {
    font-size: 2em;
  }

  .page-expert-predictions-daily-picks__content-grid {
    flex-direction: column;
  }

  .page-expert-predictions-daily-picks__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-expert-predictions-daily-picks__hero-section,
  .page-expert-predictions-daily-picks__introduction,
  .page-expert-predictions-daily-picks__prediction-methodology,
  .page-expert-predictions-daily-picks__daily-predictions,
  .page-expert-predictions-daily-picks__benefits,
  .page-expert-predictions-daily-picks__cta,
  .page-expert-predictions-daily-picks__faq {
    padding: 60px 0;
  }
}

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

  .page-expert-predictions-daily-picks__subtitle {
    font-size: 1.1em;
  }

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

  .page-expert-predictions-daily-picks__prediction-table th,
  .page-expert-predictions-daily-picks__prediction-table td {
    padding: 10px;
    font-size: 0.85em;
  }

  .page-expert-predictions-daily-picks__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-expert-predictions-daily-picks__btn--primary,
  .page-expert-predictions-daily-picks__btn--secondary {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-expert-predictions-daily-picks__main-title {
    font-size: 1.8em;
  }

  .page-expert-predictions-daily-picks__subtitle {
    font-size: 1em;
  }

  .page-expert-predictions-daily-picks__section-title {
    font-size: 1.8em;
  }

  .page-expert-predictions-daily-picks__hero-section,
  .page-expert-predictions-daily-picks__introduction,
  .page-expert-predictions-daily-picks__prediction-methodology,
  .page-expert-predictions-daily-picks__daily-predictions,
  .page-expert-predictions-daily-picks__benefits,
  .page-expert-predictions-daily-picks__cta,
  .page-expert-predictions-daily-picks__faq {
    padding: 40px 0;
  }

  .page-expert-predictions-daily-picks__methodology-grid,
  .page-expert-predictions-daily-picks__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-expert-predictions-daily-picks__faq-question {
    font-size: 1.1em;
  }
}