.page-resources-esports-predictions {
  background-color: #0a0a0a; /* Body background is dark */
  color: #ffffff; /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-esports-predictions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-esports-predictions__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  box-sizing: border-box;
}

.page-resources-esports-predictions__hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-resources-esports-predictions__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken video for text readability */
}

.page-resources-esports-predictions__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for text contrast */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-resources-esports-predictions__hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  color: #ffffff;
}

.page-resources-esports-predictions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-esports-predictions__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* General Section Styling */
.page-resources-esports-predictions__section {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background for sections */
  color: #ffffff;
}

.page-resources-esports-predictions__why-choose {
  background-color: #0a0a0a;
}

.page-resources-esports-predictions__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #26A9E0; /* Brand color for titles */
}

.page-resources-esports-predictions__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  color: #f0f0f0;
}

/* Features Grid */
.page-resources-esports-predictions__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-esports-predictions__feature-item {
  background-color: rgba(255, 255, 255, 0.05); /* Semi-transparent white card */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(38, 169, 224, 0.3); /* Subtle brand border */
}

.page-resources-esports-predictions__feature-icon {
  width: 100%; /* Ensure images take full width of card */
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px; /* Min size requirement */
  min-height: 200px; /* Min size requirement */
}

.page-resources-esports-predictions__feature-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-esports-predictions__feature-description {
  color: #e0e0e0;
}

/* Tournament List */
.page-resources-esports-predictions__tournament-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-esports-predictions__tournament-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #26A9E0;
}

.page-resources-esports-predictions__tournament-title {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-resources-esports-predictions__tournament-description {
  color: #e0e0e0;
}

/* Betting Strategies */
.page-resources-esports-predictions__betting-strategies {
  background-color: #0a0a0a;
}

.page-resources-esports-predictions__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-esports-predictions__strategy-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-esports-predictions__strategy-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-esports-predictions__strategy-description {
  color: #e0e0e0;
}

/* Exclusive Features */
.page-resources-esports-predictions__exclusive-features {
  background-color: #1a1a1a;
}

.page-resources-esports-predictions__features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-esports-predictions__feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  border-bottom: 3px solid #26A9E0;
}

.page-resources-esports-predictions__feature-card-title {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-resources-esports-predictions__feature-card-description {
  color: #e0e0e0;
}

/* Register CTA */
.page-resources-esports-predictions__register-cta {
  background-color: #26A9E0; /* Brand color for CTA section background */
  color: #ffffff; /* White text on brand color background */
  text-align: center;
}

.page-resources-esports-predictions__register-cta .page-resources-esports-predictions__section-title {
  color: #ffffff; /* White title on brand color background */
}

.page-resources-esports-predictions__register-cta .page-resources-esports-predictions__section-intro {
  color: #f0f0f0;
}
}