.page-betting-guide {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-betting-guide__hero-section {
  background: linear-gradient(135deg, #1A237E 0%, #3f458e 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-betting-guide__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric,dark_blue_gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-betting-guide__hero-section > .page-betting-guide__container {
  position: relative;
  z-index: 1;
}

.page-betting-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-betting-guide__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-betting-guide__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-betting-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-betting-guide__btn--primary {
  background-color: #FFD700;
  color: #1A237E;
  border: 2px solid #FFD700;
}

.page-betting-guide__btn--primary:hover {
  background-color: #e5c100;
  border-color: #e5c100;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-betting-guide__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-betting-guide__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-betting-guide__section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-betting-guide__section:nth-of-type(even) {
  background-color: #f0f2f5;
}

.page-betting-guide__section-title {
  font-size: 2.5em;
  color: #1A237E;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-betting-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-betting-guide__section-subtitle {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-betting-guide__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-betting-guide__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-betting-guide__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
  }
  .page-betting-guide__content-grid--reverse .page-betting-guide__text-content {
    order: 2;
  }
  .page-betting-guide__content-grid--reverse .page-betting-guide__image-wrapper {
    order: 1;
  }
}

.page-betting-guide__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.page-betting-guide__image-wrapper {
  text-align: center;
}

.page-betting-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-betting-guide__detailed-guides {
  background-color: #ffffff;
}

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

.page-betting-guide__guide-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-betting-guide__card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.page-betting-guide__card-title {
  font-size: 1.4em;
  color: #1A237E;
  padding: 15px 20px 10px;
  margin: 0;
}

.page-betting-guide__card-title a {
  text-decoration: none;
  color: #1A237E;
  transition: color 0.3s ease;
}

.page-betting-guide__card-title a:hover {
  color: #FFD700;
}

.page-betting-guide__card-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-betting-guide__btn--small {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 20px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  background-color: #1A237E;
  color: #FFD700;
  border: 1px solid #1A237E;
  transition: all 0.3s ease;
}

.page-betting-guide__btn--small:hover {
  background-color: #3f458e;
  border-color: #3f458e;
  color: #ffffff;
}

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

.page-betting-guide__benefit-item {
  background-color: #fefefe;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-left: 5px solid #FFD700;
}

.page-betting-guide__benefit-item:hover {
  transform: translateY(-5px);
}

.page-betting-guide__benefit-title {
  font-size: 1.5em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-betting-guide__benefit-item p {
  color: #555;
}

.page-betting-guide__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-betting-guide__faq-item {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-betting-guide__faq-question {
  font-size: 1.2em;
  color: #1A237E;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f2f5;
  transition: background-color 0.3s ease;
}

.page-betting-guide__faq-question:hover {
  background-color: #e6e9ed;
}

.page-betting-guide__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-betting-guide__faq-item.active .page-betting-guide__faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-betting-guide__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-betting-guide__faq-item.active .page-betting-guide__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding: 20px;
}

.page-betting-guide__faq-answer p {
  color: #555;
  margin: 0;
}

.page-betting-guide__inline-link {
  color: #1A237E;
  text-decoration: underline;
  font-weight: bold;
}

.page-betting-guide__inline-link:hover {
  color: #FFD700;
}

.page-betting-guide__cta-section {
  background: linear-gradient(135deg, #FFD700 0%, #e5c100 100%);
  color: #1A237E;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-betting-guide__cta-title {
  font-size: 2.8em;
  color: #1A237E;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-betting-guide__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #333;
}

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

.page-betting-guide__cta-group .page-betting-guide__btn--primary {
  background-color: #1A237E;
  color: #FFD700;
  border-color: #1A237E;
}

.page-betting-guide__cta-group .page-betting-guide__btn--primary:hover {
  background-color: #3f458e;
  border-color: #3f458e;
  color: #ffffff;
}

.page-betting-guide__cta-group .page-betting-guide__btn--secondary {
  background-color: transparent;
  color: #1A237E;
  border-color: #1A237E;
}

.page-betting-guide__cta-group .page-betting-guide__btn--secondary:hover {
  background-color: #1A237E;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-betting-guide__hero-title {
    font-size: 2.8em;
  }
  .page-betting-guide__section-title {
    font-size: 2em;
  }
  .page-betting-guide__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-betting-guide__hero-title {
    font-size: 2.2em;
  }
  .page-betting-guide__hero-description {
    font-size: 1em;
  }
  .page-betting-guide__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-betting-guide__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-betting-guide__section {
    padding: 40px 0;
  }
  .page-betting-guide__section-title {
    font-size: 1.8em;
  }
  .page-betting-guide__section-subtitle {
    font-size: 0.95em;
  }
  .page-betting-guide__guide-list {
    grid-template-columns: 1fr;
  }
  .page-betting-guide__benefits-grid {
    grid-template-columns: 1fr;
  }
  .page-betting-guide__cta-title {
    font-size: 2em;
  }
  .page-betting-guide__cta-description {
    font-size: 1em;
  }
  .page-betting-guide__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-betting-guide__faq-question {
    font-size: 1em;
    padding: 15px;
  }
  .page-betting-guide__faq-item.active .page-betting-guide__faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-betting-guide__hero-title {
    font-size: 1.8em;
  }
  .page-betting-guide__btn {
    width: 90%;
  }
  .page-betting-guide__section-title {
    font-size: 1.5em;
  }
  .page-betting-guide__cta-title {
    font-size: 1.6em;
  }
}