/* style/resources-betting-strategy.css */

/* Base styles for the page content */
.page-resources-betting-strategy {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  background-color: #f4f4f4; /* Inherited from body, explicit for safety */
  padding-bottom: 50px; /* Add some padding at the bottom */
}

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

/* Hero Section - Specific for this page, not global hero */
.page-resources-betting-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); /* Using brand colors */
  color: #ffffff; /* Light text for dark background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-betting-strategy__main-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-resources-betting-strategy__intro-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-resources-betting-strategy__hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}