/* style/expert-predictions-vivu88-basketball.css */

:root {
  --page-primary-color: #003366;
  --page-secondary-color: #FFCC00;
  --page-text-color-dark: #333333;
  --page-text-color-light: #ffffff;
  --page-background-light: #f4f7fa;
  --page-background-dark: #002244;
  --page-border-color: #e0e0e0;
}

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

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

.page-expert-predictions-vivu88-basketball__section {
  padding: 60px 0;
  text-align: center;
}

.page-expert-predictions-vivu88-basketball__section--alt-bg {
  background-color: var(--page-background-light);
}

.page-expert-predictions-vivu88-basketball__section--cta {
  background: linear-gradient(135deg, var(--page-primary-color), var(--page-background-dark));
  color: var(--page-text-color-light);
  padding: 80px 0;
}

.page-expert-predictions-vivu88-basketball__section-title {
  font-size: 2.5em;
  color: var(--page-primary-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-expert-predictions-vivu88-basketball__section--cta .page-expert-predictions-vivu88-basketball__section-title {
  color: var(--page-text-color-light);
}

.page-expert-predictions-vivu88-basketball__subsection-title {
  font-size: 1.8em;
  color: var(--page-primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-expert-predictions-vivu88-basketball__hero-section {
  background: linear-gradient(135deg, var(--page-primary-color), var(--page-background-dark));
  color: var(--page-text-color-light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-expert-predictions-vivu88-basketball__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-text-color-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-expert-predictions-vivu88-basketball__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.page-expert-predictions-vivu88-basketball__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-expert-predictions-vivu88-basketball__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-expert-predictions-vivu88-basketball__btn--primary {
  background-color: var(--page-secondary-color);
  color: var(--page-primary-color);
  border: 2px solid var(--page-secondary-color);
}

.page-expert-predictions-vivu88-basketball__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-3px);
}

.page-expert-predictions-vivu88-basketball__btn--secondary {
  background-color: transparent;
  color: var(--page-text-color-light);
  border: 2px solid var(--page-text-color-light);
}

.page-expert-predictions-vivu88-basketball__btn--secondary:hover {
  background-color: var(--page-text-color-light);
  color: var(--page-primary-color);
  transform: translateY(-3px);
}

.page-expert-predictions-vivu88-basketball__hero-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  opacity: 0.15;
  z-index: 0;
}

.page-expert-predictions-vivu88-basketball__image--left,
.page-expert-predictions-vivu88-basketball__image--right {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

.page-expert-predictions-vivu88-basketball__image--left {
  margin-right: 40px;
}

.page-expert-predictions-vivu88-basketball__image--right {
  margin-left: 40px;
}

.page-expert-predictions-vivu88-basketball__content-with-image {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-expert-predictions-vivu88-basketball__content-with-image > div {
  flex: 1;
}

.page-expert-predictions-vivu88-basketball__cta-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.page-expert-predictions-vivu88-basketball__step {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease;
}

.page-expert-predictions-vivu88-basketball__step:hover {
  transform: translateY(-10px);
}

.page-expert-predictions-vivu88-basketball__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--page-secondary-color);
  color: var(--page-primary-color);
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-expert-predictions-vivu88-basketball__step h3 {
  color: var(--page-text-color-light);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-expert-predictions-vivu88-basketball__step p {
  color: rgba(255, 255, 255, 0.8);
}

.page-expert-predictions-vivu88-basketball__cta-image {
  max-width: 800px;
  margin: 50px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-expert-predictions-vivu88-basketball__hero-title {
    font-size: 2.8em;
  }
  .page-expert-predictions-vivu88-basketball__section-title {
    font-size: 2em;
  }
  .page-expert-predictions-vivu88-basketball__content-with-image {
    flex-direction: column;
    text-align: center;
  }
  .page-expert-predictions-vivu88-basketball__image--left,
  .page-expert-predictions-vivu88-basketball__image--right {
    margin: 20px auto;
  }
}

@media (max-width: 768px) {
  .page-expert-predictions-vivu88-basketball__hero-title {
    font-size: 2.2em;
  }
  .page-expert-predictions-vivu88-basketball__hero-description {
    font-size: 1em;
  }
  .page-expert-predictions-vivu88-basketball__section {
    padding: 40px 0;
  }
  .page-expert-predictions-vivu88-basketball__section-title {
    font-size: 1.8em;
  }
  .page-expert-predictions-vivu88-basketball__subsection-title {
    font-size: 1.5em;
  }
  .page-expert-predictions-vivu88-basketball__hero-buttons,
  .page-expert-predictions-vivu88-basketball__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-expert-predictions-vivu88-basketball__btn {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-expert-predictions-vivu88-basketball__hero-title {
    font-size: 1.8em;
  }
  .page-expert-predictions-vivu88-basketball__section-title {
    font-size: 1.5em;
  }
  .page-expert-predictions-vivu88-basketball__btn {
    width: 95%;
  }
}