/* style/expert-predictions-daily-picks.css */
.page-expert-predictions-daily-picks {
  font-family: 'Arial', sans-serif;
  color: #333;
  background-color: #f4f7f6;
}

.page-expert-predictions-daily-picks .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-expert-predictions-daily-picks .hero-section {
  background: linear-gradient(135deg, #1A237E, #3f479a);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.page-expert-predictions-daily-picks .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for high contrast */
}

.page-expert-predictions-daily-picks .hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.page-expert-predictions-daily-picks .btn-primary {
  background-color: #FFD700;
  color: #1A237E; /* Dark blue for contrast */
  border: 2px solid #FFD700;
}

.page-expert-predictions-daily-picks .btn-primary:hover {
  background-color: #e5c100;
  color: #0d1254;
  transform: translateY(-3px);
}

.page-expert-predictions-daily-picks .btn-secondary {
  background-color: #1A237E;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-expert-predictions-daily-picks .btn-secondary:hover {
  background-color: #0d1254;
  color: #fff;
  transform: translateY(-3px);
}

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

.page-expert-predictions-daily-picks .btn-outline:hover {
  background-color: #FFD700;
  color: #1A237E;
  transform: translateY(-3px);
}

.page-expert-predictions-daily-picks .section-title {
  font-size: 2.5em;
  color: #1A237E;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
  font-weight: bold;
}

.page-expert-predictions-daily-picks .section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-expert-predictions-daily-picks .intro-section, 
.page-expert-predictions-daily-picks .featured-picks-section, 
.page-expert-predictions-daily-picks .how-to-use-section, 
.page-expert-predictions-daily-picks .nbet-advantage-section, 
.page-expert-predictions-daily-picks .cta-section {
  padding: 80px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-expert-predictions-daily-picks .intro-section {
  margin-top: -50px; /* Overlap with hero for visual flow */
}

.page-expert-predictions-daily-picks .content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-expert-predictions-daily-picks .grid-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-expert-predictions-daily-picks .grid-item h3 {
  color: #1A237E;
  font-size: 1.5em;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-expert-predictions-daily-picks .grid-item p {
  color: #666;
  line-height: 1.6;
}

.page-expert-predictions-daily-picks .icon-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.page-expert-predictions-daily-picks .pick-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-expert-predictions-daily-picks .pick-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.page-expert-predictions-daily-picks .pick-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-expert-predictions-daily-picks .pick-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-expert-predictions-daily-picks .pick-card-content h3 {
  font-size: 1.6em;
  color: #1A237E;
  margin-bottom: 10px;
}

.page-expert-predictions-daily-picks .match-details {
  font-size: 0.95em;
  color: #777;
  margin-bottom: 15px;
}

.page-expert-predictions-daily-picks .analysis, 
.page-expert-predictions-daily-picks .prediction, 
.page-expert-predictions-daily-picks .odds {
  font-size: 1em;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.5;
}

.page-expert-predictions-daily-picks .prediction {
  font-weight: bold;
  color: #FFD700; /* Gold for emphasis */
}

.page-expert-predictions-daily-picks .pick-card-content .btn {
  margin-top: auto; /* Push button to bottom */
  align-self: flex-start;
}

.page-expert-predictions-daily-picks .steps-list, 
.page-expert-predictions-daily-picks .advantage-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-expert-predictions-daily-picks .steps-list li, 
.page-expert-predictions-daily-picks .advantage-list li {
  background-color: #f9f9f9;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #333;
  line-height: 1.6;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.page-expert-predictions-daily-picks .steps-list li strong {
  color: #1A237E;
  margin-right: 10px;
}

.page-expert-predictions-daily-picks .advantage-list li .list-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  flex-shrink: 0;
}

.page-expert-predictions-daily-picks .how-to-use-section .btn-primary {
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-expert-predictions-daily-picks .cta-section {
  background: linear-gradient(135deg, #1A237E, #5f65a5);
  color: #ffffff;
  text-align: center;
  padding: 100px 0;
  border-radius: 15px;
  margin-bottom: 20px;
}

.page-expert-predictions-daily-picks .cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for high contrast */
}

.page-expert-predictions-daily-picks .cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-expert-predictions-daily-picks .cta-buttons .btn {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-expert-predictions-daily-picks .hero-title {
    font-size: 2.5em;
  }
  .page-expert-predictions-daily-picks .section-title {
    font-size: 2em;
  }
  .page-expert-predictions-daily-picks .pick-card-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  .page-expert-predictions-daily-picks .cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-expert-predictions-daily-picks .hero-section {
    padding: 80px 0;
  }
  .page-expert-predictions-daily-picks .hero-title {
    font-size: 2em;
  }
  .page-expert-predictions-daily-picks .hero-subtitle {
    font-size: 1.1em;
  }
  .page-expert-predictions-daily-picks .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-expert-predictions-daily-picks .btn-outline {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-expert-predictions-daily-picks .cta-buttons {
    flex-direction: column;
    display: flex;
    align-items: center;
  }
  .page-expert-predictions-daily-picks .cta-buttons .btn {
    margin: 10px 0;
    width: 80%;
  }
  .page-expert-predictions-daily-picks .intro-section, 
  .page-expert-predictions-daily-picks .featured-picks-section, 
  .page-expert-predictions-daily-picks .how-to-use-section, 
  .page-expert-predictions-daily-picks .nbet-advantage-section, 
  .page-expert-predictions-daily-picks .cta-section {
    padding: 60px 0;
  }
  .page-expert-predictions-daily-picks .section-title {
    font-size: 1.8em;
  }
  .page-expert-predictions-daily-picks .section-description {
    font-size: 1em;
  }
  .page-expert-predictions-daily-picks .steps-list li, 
  .page-expert-predictions-daily-picks .advantage-list li {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-expert-predictions-daily-picks .cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .page-expert-predictions-daily-picks .hero-title {
    font-size: 1.8em;
  }
  .page-expert-predictions-daily-picks .hero-subtitle {
    font-size: 0.95em;
  }
  .page-expert-predictions-daily-picks .btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-expert-predictions-daily-picks .section-title {
    font-size: 1.5em;
  }
  .page-expert-predictions-daily-picks .cta-title {
    font-size: 1.5em;
  }
  .page-expert-predictions-daily-picks .pick-card-content h3 {
    font-size: 1.4em;
  }
  .page-expert-predictions-daily-picks .pick-card-img {
    height: 180px;
  }
}