/* style/sports-hot-matches-predictions.css */

/* Custom Colors */
:root {
  --ps99-bg-primary: #08160F;
  --ps99-bg-card: #11271B;
  --ps99-text-main: #F2FFF6;
  --ps99-text-secondary: #A7D9B8;
  --ps99-border: #2E7A4E;
  --ps99-glow: #57E38D;
  --ps99-gold: #F2C14E;
  --ps99-divider: #1E3A2A;
  --ps99-deep-green: #0A4B2C;
  --ps99-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-sports-hot-matches-predictions {
  color: var(--ps99-text-main); /* Default text color for dark body background */
  background-color: var(--ps99-bg-primary);
}

.page-sports-hot-matches-predictions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--ps99-bg-primary);
  overflow: hidden;
}

.page-sports-hot-matches-predictions__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-sports-hot-matches-predictions__hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1;
}

.page-sports-hot-matches-predictions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ps99-text-main);
  margin-bottom: 20px;
}

.page-sports-hot-matches-predictions__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ps99-text-secondary);
  margin-bottom: 30px;
}

.page-sports-hot-matches-predictions__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--ps99-btn-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-sports-hot-matches-predictions__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-sports-hot-matches-predictions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-sports-hot-matches-predictions__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--ps99-text-main);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-sports-hot-matches-predictions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--ps99-glow);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-sports-hot-matches-predictions__text-block {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ps99-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.page-sports-hot-matches-predictions__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-sports-hot-matches-predictions__card {
  background-color: var(--ps99-bg-card);
  border: 1px solid var(--ps99-border);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--ps99-text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports-hot-matches-predictions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-sports-hot-matches-predictions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-sports-hot-matches-predictions__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ps99-text-main);
  margin-bottom: 15px;
}

.page-sports-hot-matches-predictions__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ps99-text-secondary);
}

.page-sports-hot-matches-predictions__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-sports-hot-matches-predictions__method-item {
  background-color: var(--ps99-bg-card);
  border: 1px solid var(--ps99-border);
  border-radius: 10px;
  padding: 25px;
  color: var(--ps99-text-main);
}

.page-sports-hot-matches-predictions__method-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ps99-text-main);
  margin-bottom: 15px;
}

.page-sports-hot-matches-predictions__method-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ps99-text-secondary);
}

.page-sports-hot-matches-predictions__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 100%;
}

.page-sports-hot-matches-predictions__sports-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-sports-hot-matches-predictions__sports-item {
  background-color: var(--ps99-bg-card);
  border: 1px solid var(--ps99-border);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  color: var(--ps99-text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports-hot-matches-predictions__sports-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-sports-hot-matches-predictions__sports-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ps99-text-main);
  margin-bottom: 15px;
}

.page-sports-hot-matches-predictions__sports-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ps99-text-secondary);
}

.page-sports-hot-matches-predictions__tips-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  max-width: 900px;
}

.page-sports-hot-matches-predictions__tips-item {
  background-color: var(--ps99-bg-card);
  border: 1px solid var(--ps99-border);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  color: var(--ps99-text-main);
}

.page-sports-hot-matches-predictions__tips-item:last-child {
  margin-bottom: 0;
}

.page-sports-hot-matches-predictions__tips-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ps99-text-main);
  margin-bottom: 10px;
}

.page-sports-hot-matches-predictions__tips-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ps99-text-secondary);
}

.page-sports-hot-matches-predictions__tips-item a {
  color: var(--ps99-glow);
  text-decoration: none;
}

.page-sports-hot-matches-predictions__tips-item a:hover {
  text-decoration: underline;
}

.page-sports-hot-matches-predictions__faq-list {
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-sports-hot-matches-predictions__faq-item {
  background-color: var(--ps99-bg-card);
  border: 1px solid var(--ps99-border);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-sports-hot-matches-predictions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ps99-text-main);
  list-style: none; /* For details summary */
}

.page-sports-hot-matches-predictions__faq-question::-webkit-details-marker {
  display: none;
}

.page-sports-hot-matches-predictions__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ps99-glow);
}

.page-sports-hot-matches-predictions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ps99-text-secondary);
}

.page-sports-hot-matches-predictions__faq-answer p {
  margin-bottom: 0;
}

.page-sports-hot-matches-predictions__faq-answer a {
  color: var(--ps99-glow);
  text-decoration: none;
}

.page-sports-hot-matches-predictions__faq-answer a:hover {
  text-decoration: underline;
}

.page-sports-hot-matches-predictions__cta-section {
  background-color: var(--ps99-bg-primary);
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports-hot-matches-predictions__cta-title {
  color: var(--ps99-text-main);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.page-sports-hot-matches-predictions__cta-button {
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-sports-hot-matches-predictions__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }

  .page-sports-hot-matches-predictions__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-sports-hot-matches-predictions__description {
    font-size: 1rem;
  }

  .page-sports-hot-matches-predictions__content-area {
    padding: 30px 15px;
  }

  .page-sports-hot-matches-predictions__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 30px;
  }

  .page-sports-hot-matches-predictions__text-block {
    margin-bottom: 40px;
  }

  .page-sports-hot-matches-predictions__card-title,
  .page-sports-hot-matches-predictions__method-title,
  .page-sports-hot-matches-predictions__sports-title,
  .page-sports-hot-matches-predictions__tips-title {
    font-size: 1.3rem;
  }

  .page-sports-hot-matches-predictions__faq-question {
    font-size: 1.05rem;
    padding: 18px 20px;
  }

  .page-sports-hot-matches-predictions__cta-section {
    padding: 40px 15px;
  }
}

@media (max-width: 768px) {
  .page-sports-hot-matches-predictions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-sports-hot-matches-predictions video,
  .page-sports-hot-matches-predictions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-sports-hot-matches-predictions__hero-section,
  .page-sports-hot-matches-predictions__content-area,
  .page-sports-hot-matches-predictions__cta-section,
  .page-sports-hot-matches-predictions__section,
  .page-sports-hot-matches-predictions__card,
  .page-sports-hot-matches-predictions__container,
  .page-sports-hot-matches-predictions__video-section,
  .page-sports-hot-matches-predictions__video-container,
  .page-sports-hot-matches-predictions__video-wrapper,
  .page-sports-hot-matches-predictions__cta-buttons,
  .page-sports-hot-matches-predictions__button-group,
  .page-sports-hot-matches-predictions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }
  
  .page-sports-hot-matches-predictions__hero-section {
    padding-top: 10px !important;
  }

  .page-sports-hot-matches-predictions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-sports-hot-matches-predictions__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .page-sports-hot-matches-predictions__btn-primary,
  .page-sports-hot-matches-predictions__cta-button,
  .page-sports-hot-matches-predictions a[class*="button"],
  .page-sports-hot-matches-predictions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-sports-hot-matches-predictions__grid-container,
  .page-sports-hot-matches-predictions__method-grid,
  .page-sports-hot-matches-predictions__sports-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports-hot-matches-predictions__card-image,
  .page-sports-hot-matches-predictions__sports-image {
    height: 150px;
  }

  .page-sports-hot-matches-predictions__faq-question {
    font-size: 1rem;
    padding: 15px 18px;
  }

  .page-sports-hot-matches-predictions__faq-answer {
    padding: 0 18px 15px;
  }
  
  .page-sports-hot-matches-predictions__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}