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

/* Base styles for the page content, considering the dark body background */
.page-resources-ae888-sports-betting-strategy {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Body background is #000000 from shared.css */
}

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

.page-resources-ae888-sports-betting-strategy__section-title {
  color: #26A9E0; /* Brand primary color for titles */
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.2em;
  font-weight: bold;
}

.page-resources-ae888-sports-betting-strategy__paragraph {
  margin-bottom: 20px;
  text-align: justify;
}

.page-resources-ae888-sports-betting-strategy__paragraph a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-resources-ae888-sports-betting-strategy__keyword {
  color: #26A9E0; /* Highlight keywords with brand color */
  font-weight: bold;
}

/* Hero Section */
.page-resources-ae888-sports-betting-strategy__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  box-sizing: border-box;
}

.page-resources-ae888-sports-betting-strategy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-resources-ae888-sports-betting-strategy__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  z-index: 2;
}

.page-resources-ae888-sports-betting-strategy__hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
  color: #ffffff;
}

.page-resources-ae888-sports-betting-strategy__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-resources-ae888-sports-betting-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-ae888-sports-betting-strategy__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Buttons */
.page-resources-ae888-sports-betting-strategy__btn-primary,
.page-resources-ae888-sports-betting-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal; /* Allow text wrapping for buttons */
  word-wrap: break-word; /* Allow text wrapping for buttons */
  box-sizing: border-box;
  max-width: 100%;
}

.page-resources-ae888-sports-betting-strategy__btn-primary {
  background-color: #26A9E0; /* Primary brand color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-ae888-sports-betting-strategy__btn-primary:hover {
  background-color: #1a7fb4;
  border-color: #1a7fb4;
}

.page-resources-ae888-sports-betting-strategy__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-ae888-sports-betting-strategy__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Content Sections */
.page-resources-ae888-sports-betting-strategy__content-area {
  padding: 60px 0;
}

.page-resources-ae888-sports-betting-strategy__dark-bg {
  background-color: #0d0d0d; /* Slightly lighter than body background for contrast */
  color: #ffffff;
}

.page-resources-ae888-sports-betting-strategy__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-ae888-sports-betting-strategy__card {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff; /* Light text for card content */
}

.page-resources-ae888-sports-betting-strategy__card-title {
  color: #26A9E0;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-resources-ae888-sports-betting-strategy__card-text {
  font-size: 0.95em;
  margin-bottom: 15px;
}

.page-resources-ae888-sports-betting-strategy__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  object-fit: cover;
}

.page-resources-ae888-sports-betting-strategy__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-ae888-sports-betting-strategy__ordered-list {
  list-style-type: decimal;
  padding-left: 20px;
  margin-top: 30px;
}

.page-resources-ae888-sports-betting-strategy__list-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-resources-ae888-sports-betting-strategy__list-title {
  color: #26A9E0;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-resources-ae888-sports-betting-strategy__list-text {
  font-size: 0.95em;
}

.page-resources-ae888-sports-betting-strategy__list-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  object-fit: cover;
}

.page-resources-ae888-sports-betting-strategy__responsive-image-container {
  text-align: center;
  margin: 30px 0;
}

.page-resources-ae888-sports-betting-strategy__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  object-fit: cover;
}

/* CTA Section */
.page-resources-ae888-sports-betting-strategy__cta-section {
  position: relative;
  margin-top: 60px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  text-align: center;
}