/* style/resources-sports-betting-guide-for-beginners.css */

/* Variables and Base Styles */
:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-bg: #C30808;
  --login-button-bg: #C30808;
  --register-login-font: #FFFF00;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-dark: #121212; /* Default from shared.css */
  --background-light: #f8f9fa; /* Light background for contrast */
}

.page-resources-sports-betting-guide-for-beginners {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for the main page, assuming dark body background */
  background-color: var(--background-dark); /* Ensure main content background matches body */
}

/* Ensure padding-top for header offset if shared.css doesn't apply to body directly */
.page-resources-sports-betting-guide-for-beginners__hero-section {
  padding-top: var(--header-offset, 120px); /* Apply header offset to the first visible section */
}

/* General Container */
.page-resources-sports-betting-guide-for-beginners__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Section Titles */
.page-resources-sports-betting-guide-for-beginners__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color); /* Default for dark sections */
  line-height: 1.2;
}

.page-resources-sports-betting-guide-for-beginners__light-bg .page-resources-sports-betting-guide-for-beginners__section-title {
  color: var(--primary-color); /* Green title for light sections */
}

/* Paragraphs */
.page-resources-sports-betting-guide-for-beginners__paragraph {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
}

/* Highlight text */
.page-resources-sports-betting-guide-for-beginners__highlight {
  color: var(--register-login-font); /* Yellow for highlights */
  font-weight: bold;
}

/* Backgrounds for contrast */
.page-resources-sports-betting-guide-for-beginners__light-bg {
  background-color: var(--background-light);
  color: var(--text-dark); /* Dark text for light background */
}

.page-resources-sports-betting-guide-for-beginners__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-light); /* Light text for dark background */
}

/* Buttons */
.page-resources-sports-betting-guide-for-beginners__btn-primary,
.page-resources-sports-betting-guide-for-beginners__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text break */
}