/* style/resources-online-betting-tips.css */

/* Base styles for the page content */
.page-resources-online-betting-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Rely on shared.css for body background */
}

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

/* Hero Section */
.page-resources-online-betting-tips__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 100px 0;
  padding-top: var(--header-offset, 120px); /* Ensure header offset */
  overflow: hidden;
  color: #ffffff;
}

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

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

.page-resources-online-betting-tips__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-online-betting-tips__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Buttons */
.page-resources-online-betting-tips__btn-primary,
.page-resources-online-betting-tips__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 */
  word-wrap: break-word; /* Break long words */
  box-sizing: border-box; /* Include padding in width */
  max-width: 100%; /* Ensure button doesn't overflow */
}

.page-resources-online-betting-tips__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-online-betting-tips__btn-primary:hover {
  background-color: #1a7fb2;
  border-color: #1a7fb2;
}

.page-resources-online-betting-tips__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-online-betting-tips__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

/* Content Sections */
.page-resources-online-betting-tips__content-section {
  padding: 60px 0;
}

.page-resources-online-betting-tips__dark-bg {
  background-color: #0d0d0d; /* Assuming a dark background from shared.css */
  color: #ffffff;
}

.page-resources-online-betting-tips__light-bg {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
}

.page-resources-online-betting-tips__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherit color from parent section */
}

.page-resources-online-betting-tips__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: inherit;
}

.page-resources-online-betting-tips__highlight {
  color: #26A9E0;
  font-weight: bold;
}