/* style/blog-betting-guide.css */

:root {
  --page-text-main: #F2FFF6;
  --page-text-secondary: #A7D9B8;
  --page-card-bg: #11271B;
  --page-background: #08160F;
  --page-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-border: #2E7A4E;
  --page-divider: #1E3A2A;
  --page-glow: #57E38D;
  --page-gold: #F2C14E;
  --page-deep-green: #0A4B2C;
}

.page-blog-betting-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-text-main); /* Default text color for the page */
  background-color: var(--page-background);
}

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

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

.page-blog-betting-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
}

.page-blog-betting-guide__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-height: 700px; /* Limit height for hero image */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-blog-betting-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-blog-betting-guide__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--page-text-main);
}

.page-blog-betting-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--page-text-main);
}

.page-blog-betting-guide__subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: var(--page-text-secondary);
}

.page-blog-betting-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-betting-guide__btn-primary,
.page-blog-betting-guide__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-betting-guide__btn-primary {
  background: var(--page-button-gradient);
  color: var(--page-text-main);
  border: 2px solid transparent;
}

.page-blog-betting-guide__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-betting-guide__btn-secondary {
  background: transparent;
  color: var(--page-glow);
  border: 2px solid var(--page-glow);
}

.page-blog-betting-guide__btn-secondary:hover {
  background: var(--page-glow);
  color: var(--page-background);
  transform: translateY(-2px);
}

.page-blog-betting-guide__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--page-text-main);
}

.page-blog-betting-guide__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--page-text-secondary);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog-betting-guide__card {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--page-text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-betting-guide__feature-icon,
.page-blog-betting-guide__bet-type-image,
.page-blog-betting-guide__strategy-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too wide */
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-betting-guide__feature-title,
.page-blog-betting-guide__bet-type-title,
.page-blog-betting-guide__strategy-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--page-text-main);
}

.page-blog-betting-guide__feature-description,
.page-blog-betting-guide__bet-type-description,
.page-blog-betting-guide__strategy-description {
  font-size: 1rem;
  color: var(--page-text-secondary);
}

.page-blog-betting-guide__guide-list,
.page-blog-betting-guide__responsible-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-betting-guide__guide-item,
.page-blog-betting-guide__responsible-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--page-text-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-betting-guide__guide-item strong {
  color: var(--page-glow);
}

.page-blog-betting-guide__cta-center {
  margin-top: 40px;
}

.page-blog-betting-guide__faq-section {
  background-color: var(--page-deep-green);
  padding: 60px 20px;
}

.page-blog-betting-guide__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-betting-guide__faq-item {
  background-color: var(--page-card-bg);
  border: 1px solid var(--page-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  text-align: left;
}

.page-blog-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--page-text-main);
  background-color: rgba(17, 168, 78, 0.1);
  border-bottom: 1px solid var(--page-divider);
}

.page-blog-betting-guide__faq-item[open] .page-blog-betting-guide__faq-question {
  border-bottom: 1px solid var(--page-divider);
}

.page-blog-betting-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-betting-guide__faq-question::marker {
  display: none;
}

.page-blog-betting-guide__faq-qtext {
  flex-grow: 1;
  margin-right: 15px;
}

.page-blog-betting-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--page-glow);
}

.page-blog-betting-guide__faq-item[open] .page-blog-betting-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-betting-guide__faq-answer {
  padding: 20px;
  font-size: 1rem;
  color: var(--page-text-secondary);
}

.page-blog-betting-guide__final-cta {
  padding: 80px 20px;
  background-color: var(--page-background);
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-blog-betting-guide__hero-section {
    padding: 40px 15px;
    padding-top: 10px;
  }

  .page-blog-betting-guide__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-betting-guide__subtitle {
    font-size: 1.1rem;
  }

  .page-blog-betting-guide__section {
    padding: 40px 15px;
  }
}

@media (max-width: 768px) {
  .page-blog-betting-guide__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important;
  }

  .page-blog-betting-guide__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-betting-guide__subtitle {
    font-size: 1rem;
  }

  .page-blog-betting-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-betting-guide__btn-primary,
  .page-blog-betting-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0 !important; /* Remove any default margins that might interfere */
  }

  .page-blog-betting-guide__section {
    padding: 30px 15px;
  }

  .page-blog-betting-guide__section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }

  .page-blog-betting-guide__text-block,
  .page-blog-betting-guide__feature-description,
  .page-blog-betting-guide__bet-type-description,
  .page-blog-betting-guide__strategy-description,
  .page-blog-betting-guide__guide-item,
  .page-blog-betting-guide__responsible-item,
  .page-blog-betting-guide__faq-answer p {
    font-size: 0.95rem;
  }

  .page-blog-betting-guide__features-grid,
  .page-blog-betting-guide__bet-type-grid,
  .page-blog-betting-guide__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-betting-guide__card {
    padding: 20px;
  }

  .page-blog-betting-guide__feature-icon,
  .page-blog-betting-guide__bet-type-image,
  .page-blog-betting-guide__strategy-image,
  .page-blog-betting-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-betting-guide__section,
  .page-blog-betting-guide__card,
  .page-blog-betting-guide__container,
  .page-blog-betting-guide__hero-section,
  .page-blog-betting-guide__cta-buttons,
  .page-blog-betting-guide__button-group,
  .page-blog-betting-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-betting-guide__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-blog-betting-guide__final-cta {
    padding: 40px 15px;
  }
}

/* Ensure no image filters are used */
.page-blog-betting-guide img {
  filter: none; /* Explicitly ensure no filters are applied */
}