/* style/expert-predictions-historical-data.css */

/* Biến CSS */
:root {
  --page-expert-predictions-historical-data-primary-color: #007bff;
  --page-expert-predictions-historical-data-secondary-color: #ffc107;
  --page-expert-predictions-historical-data-dark-text: #212529; /* Darker text for light backgrounds */
  --page-expert-predictions-historical-data-light-text: #ffffff; /* Lighter text for dark backgrounds */
  --page-expert-predictions-historical-data-background-light: #f8f9fa;
  --page-expert-predictions-historical-data-background-dark: #343a40;
  --page-expert-predictions-historical-data-border-color: #dee2e6;
}

.page-expert-predictions-historical-data {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-expert-predictions-historical-data-dark-text);
  background-color: var(--page-expert-predictions-historical-data-background-light);
}

.page-expert-predictions-historical-data__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-expert-predictions-historical-data__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-expert-predictions-historical-data__section-title {
  font-size: 2.5em;
  color: var(--page-expert-predictions-historical-data-primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-expert-predictions-historical-data__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

/* Hero Section */
.page-expert-predictions-historical-data__hero-section {
  background: linear-gradient(135deg, var(--page-expert-predictions-historical-data-primary-color) 0%, #0056b3 100%); /* Darker shade of primary */
  color: var(--page-expert-predictions-historical-data-light-text);
  padding: 100px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-expert-predictions-historical-data__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-expert-predictions-historical-data__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-expert-predictions-historical-data__btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-expert-predictions-historical-data__btn--primary {
  background-color: var(--page-expert-predictions-historical-data-secondary-color);
  color: var(--page-expert-predictions-historical-data-dark-text); /* Dark text for auxiliary color background */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.page-expert-predictions-historical-data__btn--primary:hover {
  background-color: #e0a800; /* Slightly darker gold */
  transform: translateY(-2px);
}

.page-expert-predictions-historical-data__btn--secondary {
  background-color: var(--page-expert-predictions-historical-data-primary-color);
  color: var(--page-expert-predictions-historical-data-light-text);
  border: 2px solid var(--page-expert-predictions-historical-data-primary-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.page-expert-predictions-historical-data__btn--secondary:hover {
  background-color: #0056b3; /* Darker primary */
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-expert-predictions-historical-data__btn--download {
  background-color: #28a745; /* Green for download */
  color: var(--page-expert-predictions-historical-data-light-text);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.page-expert-predictions-historical-data__btn--download:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

.page-expert-predictions-historical-data__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

/* Content Grid */
.page-expert-predictions-historical-data__content-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-expert-predictions-historical-data__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-expert-predictions-historical-data__text-content {
  flex: 1;
  min-width: 300px;
}

.page-expert-predictions-historical-data__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #495057;
}

.page-expert-predictions-historical-data__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-expert-predictions-historical-data__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Card Grid */
.page-expert-predictions-historical-data__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-expert-predictions-historical-data__card {
  background-color: var(--page-expert-predictions-historical-data-light-text);
  border: 1px solid var(--page-expert-predictions-historical-data-border-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-expert-predictions-historical-data__card:hover {
  transform: translateY(-5px);
}

.page-expert-predictions-historical-data__card-title {
  font-size: 1.5em;
  color: var(--page-expert-predictions-historical-data-primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-expert-predictions-historical-data__card p {
  font-size: 1em;
  color: #555;
  margin-bottom: 15px;
}

.page-expert-predictions-historical-data__card ul {
  list-style-type: disc;
  margin-left: 20px;
  color: #555;
}

.page-expert-predictions-historical-data__card li {
  margin-bottom: 8px;
}

.page-expert-predictions-historical-data__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

/* Feature Grid */
.page-expert-predictions-historical-data__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-expert-predictions-historical-data__feature-item {
  background-color: var(--page-expert-predictions-historical-data-light-text);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-expert-predictions-historical-data__feature-item:hover {
  transform: translateY(-5px);
}

.page-expert-predictions-historical-data__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: var(--page-expert-predictions-historical-data-primary-color);
}

.page-expert-predictions-historical-data__feature-item h3 {
  font-size: 1.3em;
  color: var(--page-expert-predictions-historical-data-primary-color);
  margin-bottom: 10px;
}

.page-expert-predictions-historical-data__feature-item p {
  font-size: 0.95em;
  color: #666;
}

.page-expert-predictions-historical-data__cta-app {
    text-align: center;
    margin-top: 50px;
}

/* Content Blocks */
.page-expert-predictions-historical-data__content-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-expert-predictions-historical-data__block {
  background-color: var(--page-expert-predictions-historical-data-light-text);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-expert-predictions-historical-data__block-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

.page-expert-predictions-historical-data__block h3 {
  font-size: 1.4em;
  color: var(--page-expert-predictions-historical-data-primary-color);
  margin-bottom: 10px;
}

.page-expert-predictions-historical-data__block p {
  font-size: 1em;
  color: #555;
}

/* Lists */
.page-expert-predictions-historical-data__mistake-list,
.page-expert-predictions-historical-data__tips-list {
  list-style-type: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
}

.page-expert-predictions-historical-data__mistake-list li,
.page-expert-predictions-historical-data__tips-list li {
  background-color: var(--page-expert-predictions-historical-data-light-text);
  border-left: 5px solid var(--page-expert-predictions-historical-data-secondary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: var(--page-expert-predictions-historical-data-dark-text);
}

.page-expert-predictions-historical-data__mistake-list li strong,
.page-expert-predictions-historical-data__tips-list li strong {
  color: var(--page-expert-predictions-historical-data-primary-color);
}

/* Call to Action Section */
.page-expert-predictions-historical-data__call-to-action {
  background-color: var(--page-expert-predictions-historical-data-primary-color);
  color: var(--page-expert-predictions-historical-data-light-text);
  text-align: center;
  padding: 80px 0;
  margin-top: 40px;
}

.page-expert-predictions-historical-data__call-to-action .page-expert-predictions-historical-data__section-title {
  color: var(--page-expert-predictions-historical-data-light-text);
}

.page-expert-predictions-historical-data__call-to-action .page-expert-predictions-historical-data__section-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
}

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

  .page-expert-predictions-historical-data__hero-subtitle {
    font-size: 1.1em;
  }

  .page-expert-predictions-historical-data__section-title {
    font-size: 2em;
  }

  .page-expert-predictions-historical-data__content-grid,
  .page-expert-predictions-historical-data__content-grid--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-expert-predictions-historical-data__hero-section {
    padding: 80px 0;
  }

  .page-expert-predictions-historical-data__hero-title {
    font-size: 2.2em;
  }

  .page-expert-predictions-historical-data__hero-subtitle {
    font-size: 1em;
  }

  .page-expert-predictions-historical-data__section {
    padding: 40px 0;
  }

  .page-expert-predictions-historical-data__section-title {
    font-size: 1.8em;
  }

  .page-expert-predictions-historical-data__card-grid,
  .page-expert-predictions-historical-data__feature-grid,
  .page-expert-predictions-historical-data__content-blocks {
    grid-template-columns: 1fr;
  }

  .page-expert-predictions-historical-data__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-expert-predictions-historical-data__btn--large {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

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

  .page-expert-predictions-historical-data__hero-subtitle {
    font-size: 0.9em;
  }

  .page-expert-predictions-historical-data__section-title {
    font-size: 1.5em;
  }

  .page-expert-predictions-historical-data__card,
  .page-expert-predictions-historical-data__feature-item,
  .page-expert-predictions-historical-data__block {
    padding: 20px;
  }
}