/* style/betting-guides.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #EA7C07;
  --white-color: #FFFFFF;
  --dark-text-color: #333333;
  --light-text-color: #FFFFFF;
  --background-light: #f9f9f9;
  --background-dark: #26A9E0;
}

.page-betting-guides {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-text-color);
  background-color: var(--white-color);
}

.page-betting-guides__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background-color: var(--background-dark);
  color: var(--light-text-color);
  overflow: hidden;
}

.page-betting-guides__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-betting-guides__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 0;
}

.page-betting-guides__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-betting-guides__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-betting-guides__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--light-text-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-betting-guides__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-guides__hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-betting-guides__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-betting-guides__btn-primary {
  background: var(--secondary-color); /* Use #EA7C07 for primary action */
  color: var(--light-text-color);
  border: 2px solid var(--secondary-color);
}

.page-betting-guides__btn-primary:hover {
  background: #d46c06;
  border-color: #d46c06;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-betting-guides__btn-secondary {
  background: transparent;
  color: var(--light-text-color);
  border: 2px solid var(--light-text-color);
}

.page-betting-guides__btn-secondary:hover {
  background: var(--light-text-color);
  color: var(--dark-text-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-betting-guides__section {
  padding: 60px 20px;
  text-align: center;
}

.page-betting-guides__light-bg {
  background-color: var(--white-color);
  color: var(--dark-text-color);
}

.page-betting-guides__dark-bg {
  background-color: var(--background-dark);
  color: var(--light-text-color);
}

.page-betting-guides__section-title {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: inherit; /* Inherit color from parent section */
}

.page-betting-guides__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 20px;
  color: inherit;
}

.page-betting-guides__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-betting-guides__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-guides__grid-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.page-betting-guides__grid-three-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-betting-guides__card {
  background: var(--white-color);
  color: var(--dark-text-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-guides__card.page-betting-guides__dark-bg {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark bg */
  color: var(--light-text-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-betting-guides__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-betting-guides__card-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-betting-guides__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: inherit;
}

.page-betting-guides__ordered-list,
.page-betting-guides__unordered-list {
  text-align: left;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1em;
  color: inherit;
}

.page-betting-guides__ordered-list li,
.page-betting-guides__unordered-list li {
  margin-bottom: 10px;
}

.page-betting-guides__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-betting-guides__feature-item {
  background: var(--white-color);
  color: var(--dark-text-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-betting-guides__feature-icon {
  width: 100%;
  height: auto;
  max-width: 250px; /* Constrain icon size */
  margin-bottom: 20px;
  border-radius: 4px;
  object-fit: cover;
}