/* style/resources-online-betting-guide.css */
/* Base styles for the page content, ensuring contrast with a potentially dark shared body background */
.page-resources-online-betting-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for the main content area, assuming dark body background */
  background-color: transparent; /* Let body background from shared.css define */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-resources-online-betting-guide__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-online-betting-guide__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0; /* Slightly lighter for intro text */
}

/* Buttons */
.page-resources-online-betting-guide__btn-primary,
.page-resources-online-betting-guide__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;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box; /* Ensure padding doesn't make button overflow */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-resources-online-betting-guide__btn-primary {
  background-color: #26A9E0; /* Main brand color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

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

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

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

.page-resources-online-betting-guide__cta-center {
  text-align: center;
  margin-top: 40px;
}

.page-resources-online-betting-guide__hero-buttons,
.page-resources-online-betting-guide__cta-buttons-final {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Hero Section */
.page-resources-online-betting-guide__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: 20px;
  box-sizing: border-box;
}

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

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

.page-resources-online-betting-guide__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  color: #ffffff;
}

.page-resources-online-betting-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-online-betting-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #f0f0f0;
}

/* Why Choose Section */
.page-resources-online-betting-guide__why-choose-section,
.page-resources-online-betting-guide__registration-guide-section,
.page-resources-online-betting-guide__transaction-section,
.page-resources-online-betting-guide__game-types-section,
.page-resources-online-betting-guide__responsible-gaming-section,
.page-resources-online-betting-guide__support-section,
.page-resources-online-betting-guide__faq-section,
.page-resources-online-betting-guide__call-to-action-section {
  padding: 80px 0;
  background-color: transparent; /* Let body handle */
}

.page-resources-online-betting-guide__features-grid,
.page-resources-online-betting-guide__steps-grid,
.page-resources-online-betting-guide__game-grid,
.page-resources-online-betting-guide__tips-grid,
.page-resources-online-betting-guide__support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-online-betting-guide__feature-card,
.page-resources-online-betting-guide__step-card,
.page-resources-online-betting-guide__game-card,
.page-resources-online-betting-guide__tip-card,
.page-resources-online-betting-guide__channel-card,
.page-resources-online-betting-guide__card {
  background-color: rgba(255, 255, 255, 0.1); /* Light transparent background for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff; /* Light text for card content */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-resources-online-betting-guide__feature-image,
.page-resources-online-betting-guide__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

.page-resources-online-betting-guide__feature-title,
.page-resources-online-betting-guide__step-title,
.page-resources-online-betting-guide__game-title,
.page-resources-online-betting-guide__tip-title,
.page-resources-online-betting-guide__channel-title,
.page-resources-online-betting-guide__card-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-online-betting-guide__game-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-resources-online-betting-guide__game-title a:hover {
  text-decoration: underline;
}

.page-resources-online-betting-guide__feature-description,
.page-resources-online-betting-guide__step-description,
.page-resources-online-betting-guide__game-description,
.page-resources-online-betting-guide__tip-description,
.page-resources-online-betting-guide__channel-description {
  font-size: 1em;
  color: #e0e0e0;
}

/* Registration Guide Steps */
.page-resources-online-betting-guide__step-card {
  text-align: center;
}

.page-resources-online-betting-guide__step-number {
  font-size: 2.5em;
  color: #26A9E0;
  font-weight: bold;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

/* Transaction Section */
.page-resources-online-betting-guide__transaction-cards {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-resources-online-betting-guide__transaction-cards .page-resources-online-betting-guide__card {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-resources-online-betting-guide__list {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 15px;
  color: #e0e0e0;
}

.page-resources-online-betting-guide__list li {
  margin-bottom: 8px;
  color: #e0e0e0;
}

/* Responsible Gaming */
.page-resources-online-betting-guide__tip-card {
  text-align: left;
}