/* style/betting-guide.css */
.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__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.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__sub-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-betting-guide__hero {
  background: linear-gradient(135deg, #003366 0%, #001f4d 100%);
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-betting-guide__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  opacity: 0.3;
  animation: page-betting-guide__hero-pulse 10s infinite alternate;
}

@keyframes page-betting-guide__hero-pulse {
  0% { transform: scale(0.8); opacity: 0.3; }
  100% { transform: scale(1.2); opacity: 0.5; }
}

.page-betting-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.page-betting-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.page-betting-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-betting-guide__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-betting-guide__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-betting-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-betting-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.page-betting-guide__introduction,
.page-betting-guide__core-sections,
.page-betting-guide__detail-pages {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-betting-guide__introduction p,
.page-betting-guide__core-sections p {
  margin-bottom: 1.5em;
  font-size: 1.1em;
  color: #555;
  text-align: justify;
}

.page-betting-guide__core-sections ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  padding-left: 20px;
}

.page-betting-guide__core-sections li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444;
}

.page-betting-guide__core-sections .highlight {
  color: #003366;
  font-weight: bold;
}

.page-betting-guide__keyword {
  color: #DC143C;
  font-weight: bold;
}

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

.page-betting-guide__image--left {
  float: left;
  margin-right: 30px;
  margin-left: 0;
}

.page-betting-guide__image--right {
  float: right;
  margin-left: 30px;
  margin-right: 0;
}

.page-betting-guide__core-sections::after {
  content: '';
  display: table;
  clear: both;
}

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

.page-betting-guide__detail-item {
  background-color: #f0f7ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-betting-guide__detail-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-betting-guide__detail-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-betting-guide__detail-title a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-betting-guide__detail-description {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-betting-guide__detail-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-betting-guide__detail-button:hover {
  background-color: #e6c200;
}

.page-betting-guide__faq {
  margin-top: 40px;
}

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

.page-betting-guide__faq-question {
  font-size: 1.3em;
  color: #003366;
  padding: 18px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  background-color: #e8f0f7;
  transition: background-color 0.3s ease;
}

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

.page-betting-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-betting-guide__faq-answer {
  padding: 0 25px 20px;
  margin: 0;
  color: #555;
  font-size: 1.05em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

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

.page-betting-guide__call-to-action {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(45deg, #003366, #0055aa);
  color: #fff;
  border-radius: 10px;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-betting-guide__call-to-action .page-betting-guide__section-title {
  color: #fff;
}

.page-betting-guide__call-to-action .page-betting-guide__section-title::after {
  background-color: #FFD700;
}

.page-betting-guide__call-to-action p {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-betting-guide__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-betting-guide__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

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

  .page-betting-guide__section-title {
    font-size: 2em;
  }

  .page-betting-guide__image--left,
  .page-betting-guide__image--right {
    float: none;
    margin: 30px auto;
  }
}

@media (max-width: 768px) {
  .page-betting-guide__hero {
    padding: 60px 0;
  }

  .page-betting-guide__hero-title {
    font-size: 2.2em;
  }

  .page-betting-guide__hero-description {
    font-size: 1.1em;
  }

  .page-betting-guide__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-betting-guide__section-title {
    font-size: 1.8em;
  }

  .page-betting-guide__sub-title {
    font-size: 1.5em;
  }

  .page-betting-guide__introduction p,
  .page-betting-guide__core-sections p,
  .page-betting-guide__core-sections li {
    font-size: 1em;
  }

  .page-betting-guide__detail-list {
    grid-template-columns: 1fr;
  }

  .page-betting-guide__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-betting-guide__faq-question::after {
    right: 20px;
  }

  .page-betting-guide__faq-answer {
    font-size: 0.95em;
    padding: 0 20px 15px;
  }

  .page-betting-guide__call-to-action {
    padding: 50px 20px;
  }

  .page-betting-guide__call-to-action p {
    font-size: 1.1em;
  }

  .page-betting-guide__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-betting-guide__hero-title {
    font-size: 1.8em;
  }

  .page-betting-guide__section-title {
    font-size: 1.5em;
  }

  .page-betting-guide__hero-description {
    font-size: 0.95em;
  }

  .page-betting-guide__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-betting-guide__sub-title {
    font-size: 1.3em;
  }

  .page-betting-guide__faq-question {
    font-size: 1em;
  }

  .page-betting-guide__faq-answer {
    font-size: 0.9em;
  }
}