.page-resources-online-betting-guide-for-beginners {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--background-color, #FFFFFF);
}

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

.page-resources-online-betting-guide-for-beginners__section {
  padding: 60px 0;
}

.page-resources-online-betting-guide-for-beginners__section-title {
  font-size: 36px;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-resources-online-betting-guide-for-beginners__section-title--light {
  color: #FFFFFF;
}

.page-resources-online-betting-guide-for-beginners__sub-title {
  font-size: 24px;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-resources-online-betting-guide-for-beginners__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-online-betting-guide-for-beginners__text-block--light {
  color: #f0f0f0;
}

.page-resources-online-betting-guide-for-beginners__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-online-betting-guide-for-beginners__list li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Hero Section */
.page-resources-online-betting-guide-for-beginners__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 60px;
  padding-top: var(--header-offset, 120px); /* Ensure spacing from fixed header */
  background: linear-gradient(135deg, #26A9E0 0%, #0d7db3 100%); /* Darker gradient for better contrast with white text */
  overflow: hidden;
}

.page-resources-online-betting-guide-for-beginners__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-resources-online-betting-guide-for-beginners__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-online-betting-guide-for-beginners__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-resources-online-betting-guide-for-beginners__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #ffffff; /* Forced white text for hero content */
}

.page-resources-online-betting-guide-for-beginners__main-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-resources-online-betting-guide-for-beginners__subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-online-betting-guide-for-beginners__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #EA7C07; /* Login color for CTA */
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-online-betting-guide-for-beginners__cta-button:hover {
  background: #d46a00;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-online-betting-guide-for-beginners__cta-button--light {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-online-betting-guide-for-beginners__cta-button--light:hover {
  background: #f0f8ff;
  color: #1a7aa2;
}

/* Step Cards */
.page-resources-online-betting-guide-for-beginners__getting-started-section {
  background-color: #f9f9f9;
  text-align: center;
}

.page-resources-online-betting-guide-for-beginners__step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-online-betting-guide-for-beginners__step-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-online-betting-guide-for-beginners__step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-online-betting-guide-for-recognizers__step-card img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-online-betting-guide-for-beginners__card-title {
  font-size: 22px;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-resources-online-betting-guide-for-beginners__card-title--light {
  color: #ffffff;
}

.page-resources-online-betting-guide-for-beginners__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: #26A9E0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-resources-online-betting-guide-for-beginners__btn-primary:hover {
  background: #1a7aa2;
}

.page-resources-online-betting-guide-for-beginners__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: #ffffff;
  color: #26A9E0;
  text-decoration: none;
  border: 2px solid #26A9E0;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-right: 10px;
}

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

/* Game Types Section */
.page-resources-online-betting-guide-for-beginners__game-category {
  margin-bottom: 50px;
}

.page-resources-online-betting-guide-for-beginners__game-category:last-child {
  margin-bottom: 0;
}

.page-resources-online-betting-guide-for-beginners__game-content-flex {
  display: flex;
  gap: 30px;
  align-items: center;
}

.page-resources-online-betting-guide-for-beginners__game-content-flex--reverse {
  flex-direction: row-reverse;
}

.page-resources-online-betting-guide-for-beginners__game-content-flex img {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-online-betting-guide-for-beginners__game-description {
  flex: 1;
}

.page-resources-online-betting-guide-for-beginners__game-description p {
  margin-bottom: 15px;
}