:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #121212;
  --background-light: #f8f9fa;
  --card-bg: rgba(255, 255, 255, 0.1); /* Light transparent for dark background */
  --border-color: rgba(255, 255, 255, 0.2);
}

/* Base styles for the page content, considering dark body background */
.page-resources-online-betting-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-light); /* Light text for dark body background */
  line-height: 1.6;
  background-color: transparent; /* Inherit from body or shared.css */
  padding-top: 120px; /* Desktop: Ensure content is not hidden by fixed header */
}

.page-resources-online-betting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-online-betting-guide__section-title,
.page-resources-online-betting-guide__brand-title,
.page-resources-online-betting-guide__blog-title {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-online-betting-guide h3 {
  color: var(--primary-color);
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-resources-online-betting-guide p {
  margin-bottom: 15px;
  color: var(--text-light); /* Ensure light text on dark background */
}

.page-resources-online-betting-guide ul,
.page-resources-online-betting-guide ol {
  margin-bottom: 15px;
  padding-left: 25px;
  color: var(--text-light); /* Ensure light text on dark background */
}

.page-resources-online-betting-guide li {
  margin-bottom: 8px;
  color: var(--text-light); /* Ensure light text on dark background */
}

.page-resources-online-betting-guide a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-online-betting-guide a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Video Section */
.page-resources-online-betting-guide__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: Ensure video is not hidden by fixed header */
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.8), rgba(18, 18, 18, 0.8));
}