/* style/expert-predictions-esports-insights.css */

/* Variables for consistent colors */
:root {
  --page-expert-predictions-esports-insights-primary-color: #CC0000;
  --page-expert-predictions-esports-insights-secondary-color: #333333;
  --page-predictions-esports-insights-accent-color: #FFD700;
  --page-expert-predictions-esports-insights-text-light: #FFFFFF;
  --page-expert-predictions-esports-insights-text-dark: #333333;
  --page-expert-predictions-esports-insights-bg-light: #F8F8F8; /* A very light grey for contrast */
}

.page-expert-predictions-esports-insights {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-expert-predictions-esports-insights-text-dark); /* Default text color on light backgrounds */
  background-color: var(--page-expert-predictions-esports-insights-bg-light);
}

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

.page-expert-predictions-esports-insights__section {
  padding: 80px 0;
  text-align: center;
}

.page-expert-predictions-esports-insights__section--dark {
  background-color: var(--page-expert-predictions-esports-insights-secondary-color);
  color: var(--page-expert-predictions-esports-insights-text-light);
}

.page-expert-predictions-esports-insights__section--promo {
  background: linear-gradient(135deg, var(--page-expert-predictions-esports-insights-primary-color), var(--page-expert-predictions-esports-insights-secondary-color));
  color: var(--page-expert-predictions-esports-insights-text-light);
}

.page-expert-predictions-esports-insights__section-title {
  font-size: 2.8em;
  margin-bottom: 40px;
  color: var(--page-expert-predictions-esports-insights-primary-color);
  position: relative;
  padding-bottom: 15px;
}

.page-expert-predictions-esports-insights__section--dark .page-expert-predictions-esports-insights__section-title,
.page-expert-predictions-esports-insights__section--promo .page-expert-predictions-esports-insights__section-title {
  color: var(--page-expert-predictions-esports-insights-text-light);
}

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

.page-expert-predictions-esports-insights__text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-expert-predictions-esports-insights__text--small {
  font-size: 0.9em;
  opacity: 0.8;
}

/* Hero Section */
.page-expert-predictions-esports-insights__hero {
  background: url('[GALLERY:hero:esports,stadium,crowd,lights]') no-repeat center center/cover;
  padding: 120px 0;
  color: var(--page-expert-predictions-esports-insights-text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  position: relative;
  overflow: hidden;
}

.page-expert-predictions-esports-insights__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  z-index: 1;
}

.page-expert-predictions-esports-insights__hero .page-expert-predictions-esports-insights__container {
  position: relative;
  z-index: 2;
}

.page-expert-predictions-esports-insights__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--page-predictions-esports-insights-accent-color);
  line-height: 1.2;
}

.page-expert-predictions-esports-insights__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-expert-predictions-esports-insights__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-expert-predictions-esports-insights__button--primary {
  background-color: var(--page-expert-predictions-esports-insights-primary-color);
  color: var(--page-expert-predictions-esports-insights-text-light);
}

.page-expert-predictions-esports-insights__button--primary:hover {
  background-color: #E60000; /* Slightly darker red */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

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

.page-expert-predictions-esports-insights__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--page-predictions-esports-insights-accent-color);
  color: var(--page-predictions-esports-insights-accent-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-esports-insights__button--accent {
  background-color: var(--page-predictions-esports-insights-accent-color);
  color: var(--page-expert-predictions-esports-insights-secondary-color);
}

.page-expert-predictions-esports-insights__button--accent:hover {
  background-color: #FFD700; /* Original gold */
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-esports-insights__button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-expert-predictions-esports-insights__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-expert-predictions-esports-insights__button--center {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.page-expert-predictions-esports-insights__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 40px;
}

.page-expert-predictions-esports-insights__feature-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly visible background for dark section */
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-expert-predictions-esports-insights__feature-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-expert-predictions-esports-insights__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1) drop-shadow(0 0 5px var(--page-predictions-esports-insights-accent-color)); /* Make icons white/gold on dark bg */
}

.page-expert-predictions-esports-insights__feature-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--page-predictions-esports-insights-accent-color);
}

.page-expert-predictions-esports-insights__feature-description {
  font-size: 1em;
  color: rgba(255, 255, 255, 0.9);
}

/* Game Insight Section */
.page-expert-predictions-esports-insights__game-insight {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  text-align: left;
}

.page-expert-predictions-esports-insights__game-insight:last-of-type {
  margin-bottom: 0;
}

.page-expert-predictions-esports-insights__game-insight--reverse {
  flex-direction: row-reverse;
}

.page-expert-predictions-esports-insights__game-image {
  flex: 1;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  height: auto;
  object-fit: cover;
}

.page-expert-predictions-esports-insights__game-content {
  flex: 1;
  max-width: 50%;
  padding: 20px;
}

.page-expert-predictions-esports-insights__game-title {
  font-size: 2em;
  color: var(--page-expert-predictions-esports-insights-primary-color);
  margin-bottom: 15px;
}

.page-expert-predictions-esports-insights__game-description {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--page-expert-predictions-esports-insights-text-dark);
}

.page-expert-predictions-esports-insights__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-expert-predictions-esports-insights__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1em;
  color: var(--page-expert-predictions-esports-insights-text-dark);
}

.page-expert-predictions-esports-insights__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--page-expert-predictions-esports-insights-primary-color);
  font-weight: bold;
}

/* Strategy Section */
.page-expert-predictions-esports-insights__strategy-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 50px auto;
}

.page-expert-predictions-esports-insights__strategy-list li {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: var(--page-expert-predictions-esports-insights-text-light);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-expert-predictions-esports-insights__strategy-list li:hover {
  transform: translateX(10px);
}

.page-expert-predictions-esports-insights__strategy-list li strong {
  color: var(--page-predictions-esports-insights-accent-color);
}

.page-expert-predictions-esports-insights__image-full-width {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Event Grid */
.page-expert-predictions-esports-insights__event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-expert-predictions-esports-insights__event-card {
  background-color: var(--page-expert-predictions-esports-insights-text-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-expert-predictions-esports-insights__event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-expert-predictions-esports-insights__event-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-expert-predictions-esports-insights__event-title {
  font-size: 1.6em;
  color: var(--page-expert-predictions-esports-insights-primary-color);
  margin: 20px 15px 10px 15px;
}

.page-expert-predictions-esports-insights__event-description {
  font-size: 1em;
  color: var(--page-expert-predictions-esports-insights-text-dark);
  padding: 0 15px 20px 15px;
}

/* Promo Grid */
.page-expert-predictions-esports-insights__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-expert-predictions-esports-insights__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: var(--page-expert-predictions-esports-insights-text-light);
}

.page-expert-predictions-esports-insights__promo-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-expert-predictions-esports-insights__promo-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) invert(1) drop-shadow(0 0 5px var(--page-predictions-esports-insights-accent-color)); /* Make icons white/gold on dark bg */
}