/* style/user-community-match-predictions.css */
.page-user-community-match-predictions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-user-community-match-predictions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-user-community-match-predictions__hero {
  background: linear-gradient(135deg, #003366 0%, #003366 70%, #FFCC00 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-user-community-match-predictions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 0;
}

.page-user-community-match-predictions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-user-community-match-predictions__hero .page-user-community-match-predictions__container {
  position: relative;
  z-index: 1;
}

.page-user-community-match-predictions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Vàng hổ phách nổi bật trên nền xanh đậm */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-user-community-match-predictions__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0; /* Trắng nhạt để dễ đọc */
}

.page-user-community-match-predictions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-user-community-match-predictions__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-user-community-match-predictions__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-user-community-match-predictions__btn--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #FFCC00;
  margin-right: 15px;
}

.page-user-community-match-predictions__btn--secondary:hover {
  background-color: #004080;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-user-community-match-predictions__btn--text {
  background: none;
  color: #FFCC00;
  border: 2px solid transparent;
  text-decoration: underline;
  padding: 10px 15px;
}

.page-user-community-match-predictions__btn--text:hover {
  color: #e6b800;
  text-decoration: none;
}

.page-user-community-match-predictions__section {
  padding: 60px 0;
}

.page-user-community-match-predictions__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

.page-user-community-match-predictions__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
}

.page-user-community-match-predictions__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-user-community-match-predictions__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-user-community-match-predictions__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-user-community-match-predictions__feature-item:hover {
  transform: translateY(-5px);
}

.page-user-community-match-predictions__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-user-community-match-predictions__feature-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-user-community-match-predictions__feature-description {
  color: #666;
}

.page-user-community-match-predictions__grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-user-community-match-predictions__type-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-user-community-match-predictions__type-card:hover {
  transform: translateY(-5px);
}

.page-user-community-match-predictions__type-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-user-community-match-predictions__type-title {
  font-size: 1.4em;
  color: #003366;
  padding: 15px 20px 5px;
}

.page-user-community-match-predictions__type-text {
  color: #666;
  padding: 0 20px 20px;
}

.page-user-community-match-predictions__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-user-community-match-predictions__step-item {
  background-color: #fff;
  border-left: 5px solid #FFCC00;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-user-community-match-predictions__step-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 10px;
}

.page-user-community-match-predictions__step-item p {
  color: #555;
}

.page-user-community-match-predictions__link {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

.page-user-community-match-predictions__link:hover {
  text-decoration: underline;
  color: #FFCC00;
}

.page-user-community-match-predictions__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-user-community-match-predictions__tip-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-user-community-match-predictions__tip-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-bottom: 4px solid #003366;
}

.page-user-community-match-predictions__tip-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-user-community-match-predictions__tip-item p {
  color: #666;
}

.page-user-community-match-predictions__image--full-width {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-user-community-match-predictions__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.page-user-community-match-predictions__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-user-community-match-predictions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFCC00;
}

.page-user-community-match-predictions__faq-question.active::after {
  content: '-';
}

.page-user-community-match-predictions__faq-answer {
  color: #666;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-user-community-match-predictions__faq-answer.active {
  display: block;
}

.page-user-community-match-predictions__cta-bottom {
  background-color: #003366;
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.page-user-community-match-predictions__cta-title {
  font-size: 2.8em;
  color: #FFCC00;
  margin-bottom: 20px;
}

.page-user-community-match-predictions__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-user-community-match-predictions__hero-title {
    font-size: 2.8em;
  }
  .page-user-community-match-predictions__section-title {
    font-size: 2em;
  }
  .page-user-community-match-predictions__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-user-community-match-predictions__grid-2-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-user-community-match-predictions__hero {
    padding: 60px 0;
  }
  .page-user-community-match-predictions__hero-title {
    font-size: 2.2em;
  }
  .page-user-community-match-predictions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-user-community-match-predictions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-user-community-match-predictions__section {
    padding: 40px 0;
  }
  .page-user-community-match-predictions__section-title {
    font-size: 1.8em;
  }
  .page-user-community-match-predictions__feature-item,
  .page-user-community-match-predictions__type-card,
  .page-user-community-match-predictions__tip-item {
    padding: 20px;
  }
  .page-user-community-match-predictions__cta-title {
    font-size: 2em;
  }
  .page-user-community-match-predictions__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-user-community-match-predictions__hero-title {
    font-size: 1.8em;
  }
  .page-user-community-match-predictions__hero-subtitle {
    font-size: 0.95em;
  }
  .page-user-community-match-predictions__btn--secondary {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-user-community-match-predictions__cta-wrapper .page-user-community-match-predictions__btn {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .page-user-community-match-predictions__cta-bottom .page-user-community-match-predictions__btn {
    width: 100%;
  }
  .page-user-community-match-predictions__feature-grid,
  .page-user-community-match-predictions__tip-list {
    grid-template-columns: 1fr;
  }
  .page-user-community-match-predictions__faq-question {
    font-size: 1.1em;
  }
}