.page-betting-products-virtual-sports {
  font-family: 'Arial', sans-serif;
  color: #0A244A; /* Deep blue for main text on light backgrounds */
  line-height: 1.6;
  background-color: #f8f8f8; /* Very light grey background */
}

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

.page-betting-products-virtual-sports__hero {
  background: linear-gradient(135deg, #0A244A 0%, #304d70 100%); /* Gradient from deep blue to slightly lighter blue */
  color: #FFFFFF; /* White text on dark background */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-betting-products-virtual-sports__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
}

.page-betting-products-virtual-sports__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-products-virtual-sports__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-betting-products-virtual-sports__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.page-betting-products-virtual-sports__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.page-betting-products-virtual-sports__btn--primary {
  background-color: #FFD700; /* Gold background */
  color: #0A244A; /* Deep blue text on gold */
  border-color: #FFD700;
}

.page-betting-products-virtual-sports__btn--primary:hover {
  background-color: #e6c200; /* Darker gold on hover */
  color: #0A244A;
}

.page-betting-products-virtual-sports__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border-color: #FFD700;
}

.page-betting-products-virtual-sports__btn--secondary:hover {
  background-color: #FFD700; /* Gold background on hover */
  color: #0A244A; /* Deep blue text on gold */
}

.page-betting-products-virtual-sports__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
}

.page-betting-products-virtual-sports__section {
  padding: 60px 0;
}

.page-betting-products-virtual-sports__section:nth-of-type(even) {
  background-color: #FFFFFF; /* White background for alternating sections */
}

.page-betting-products-virtual-sports__section-title {
  font-size: 2.5em;
  color: #0A244A;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-betting-products-virtual-sports__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-betting-products-virtual-sports__subsection-title {
  font-size: 1.8em;
  color: #0A244A;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-betting-products-virtual-sports__feature-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-betting-products-virtual-sports__feature-item:hover {
  transform: translateY(-10px);
}

.page-betting-products-virtual-sports__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-betting-products-virtual-sports__feature-title {
  font-size: 1.5em;
  color: #0A244A;
  margin-bottom: 15px;
}

.page-betting-products-virtual-sports__guide-list {
  list-style: none;
  padding: 0;
  counter-reset: guide-counter;
}

.page-betting-products-virtual-sports__guide-list li {
  margin-bottom: 30px;
  position: relative;
  padding-left: 70px;
}

.page-betting-products-virtual-sports__guide-list li::before {
  counter-increment: guide-counter;
  content: counter(guide-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700; /* Gold step number background */
  color: #0A244A; /* Deep blue text on gold */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-betting-products-virtual-sports__guide-list li .page-betting-products-virtual-sports__subsection-title {
  margin-top: 0;
}

.page-betting-products-virtual-sports__image-inline {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-betting-products-virtual-sports__image-inline--small {
  max-width: 150px;
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}

.page-betting-products-virtual-sports__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-betting-products-virtual-sports__benefits-list li {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-betting-products-virtual-sports__benefits-list li:hover {
  transform: translateY(-10px);
}

.page-betting-products-virtual-sports__responsibility-content {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-betting-products-virtual-sports__responsibility-content div {
  flex: 1;
  min-width: 300px;
}

.page-betting-products-virtual-sports__faq-accordion {
  margin-top: 40px;
}

.page-betting-products-virtual-sports__faq-item {
  background-color: #FFFFFF;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-betting-products-virtual-sports__faq-question {
  background-color: #0A244A; /* Deep blue background for FAQ question */
  color: #FFFFFF; /* White text */
  width: 100%;
  padding: 20px 25px;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-betting-products-virtual-sports__faq-question:hover {
  background-color: #1a3c6b; /* Slightly lighter blue on hover */
}

.page-betting-products-virtual-sports__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-betting-products-virtual-sports__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-betting-products-virtual-sports__faq-answer {
  padding: 0 25px;
  background-color: #f0f4f7; /* Light grey background for answer */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-betting-products-virtual-sports__faq-answer p {
  padding: 15px 0;
  margin: 0;
  color: #0A244A; /* Deep blue text */
}

.page-betting-products-virtual-sports__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px;
}

.page-betting-products-virtual-sports__section--cta-final {
  background-color: #0A244A; /* Deep blue background */
  color: #FFFFFF; /* White text */
  text-align: center;
  padding: 80px 0;
}

.page-betting-products-virtual-sports__section--cta-final .page-betting-products-virtual-sports__section-title {
  color: #FFD700; /* Gold title */
}

.page-betting-products-virtual-sports__section--cta-final .page-betting-products-virtual-sports__section-title::after {
  background-color: #FFD700;
}

.page-betting-products-virtual-sports__section--cta-final p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-betting-products-virtual-sports__hero-title {
    font-size: 2.5em;
  }

  .page-betting-products-virtual-sports__hero-subtitle {
    font-size: 1.1em;
  }

  .page-betting-products-virtual-sports__section-title {
    font-size: 2em;
  }

  .page-betting-products-virtual-sports__subsection-title {
    font-size: 1.5em;
  }

  .page-betting-products-virtual-sports__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-betting-products-virtual-sports__hero-cta-group {
    flex-direction: column;
  }

  .page-betting-products-virtual-sports__responsibility-content {
    flex-direction: column;
  }

  .page-betting-products-virtual-sports__image-inline--small {
    float: none;
    margin: 0 auto 20px auto;
  }

  .page-betting-products-virtual-sports__guide-list li {
    padding-left: 0;
    text-align: center;
  }

  .page-betting-products-virtual-sports__guide-list li::before {
    position: static;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-betting-products-virtual-sports__hero-title {
    font-size: 2em;
  }

  .page-betting-products-virtual-sports__hero-subtitle {
    font-size: 1em;
  }

  .page-betting-products-virtual-sports__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
}