/* style/betting-guides-how-to-choose-suitable-betting-platform.css */

/* CSS Variables for consistent colors */
:root {
  --page-primary-color: #1A2E4E; /* Dark Blue */
  --page-secondary-color: #FFD700; /* Gold */
  --page-text-light: #FFFFFF; /* White */
  --page-text-dark: #1A2E4E; /* Dark Blue for text on light backgrounds */
  --page-text-dark-contrast: #333333; /* Even darker for high contrast */
  --page-background-light: #F8F8F8; /* Light grey background */
  --page-accent-light: #FFEB3B; /* Lighter gold for subtle accents */
}

.page-betting-guides-how-to-choose-suitable-betting-platform {
  font-family: 'Arial', sans-serif;
  color: var(--page-text-dark);
  line-height: 1.6;
  background-color: var(--page-background-light);
}

.page-betting-guides-how-to-choose-suitable-betting-platform__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__hero-section {
  background: linear-gradient(135deg, var(--page-primary-color) 0%, #3a5c8e 100%); /* Dark blue gradient */
  color: var(--page-text-light);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--page-secondary-color); /* Gold title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-betting-guides-how-to-choose-suitable-betting-platform__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--page-text-light);
}

.page-betting-guides-how-to-choose-suitable-betting-platform__hero-button {
  display: inline-block;
  background-color: var(--page-secondary-color);
  color: var(--page-primary-color);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-betting-guides-how-to-choose-suitable-betting-platform__hero-button:hover {
  background-color: var(--page-accent-light);
  transform: translateY(-3px);
}

.page-betting-guides-how-to-choose-suitable-betting-platform__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  max-width: 600px;
  z-index: 0;
  opacity: 0.2;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__section {
  padding: 60px 0;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__section:nth-of-type(even) {
  background-color: var(--page-background-light);
}

.page-betting-guides-how-to-choose-suitable-betting-platform__section-title {
  font-size: 2.2em;
  color: var(--page-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--page-secondary-color);
  border-radius: 2px;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__intro-section p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 20px;
  color: var(--page-text-dark-contrast);
}

.page-betting-guides-how-to-choose-suitable-betting-platform__factors-section .page-betting-guides-how-to-choose-suitable-betting-platform__section-title {
  margin-bottom: 60px;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__feature-item {
  background-color: var(--page-text-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-betting-guides-how-to-choose-suitable-betting-platform__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-betting-guides-how-to-choose-suitable-betting-platform__feature-title {
  font-size: 1.5em;
  color: var(--page-primary-color);
  margin-bottom: 15px;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__feature-item p {
  color: var(--page-text-dark-contrast);
  font-size: 1em;
  text-align: justify;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__why-vipwinbest-section {
  background-color: #f0f4f8;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__why-vipwinbest-section p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 25px;
  color: var(--page-text-dark-contrast);
}

.page-betting-guides-how-to-choose-suitable-betting-platform__advantages-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__advantages-list li {
  background-color: var(--page-text-light);
  margin-bottom: 15px;
  padding: 15px 25px;
  border-left: 5px solid var(--page-secondary-color);
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: var(--page-text-dark-contrast);
  transition: transform 0.2s ease;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__advantages-list li:hover {
  transform: translateX(5px);
}

.page-betting-guides-how-to-choose-suitable-betting-platform__advantages-list li strong {
  color: var(--page-primary-color);
}

.page-betting-guides-how-to-choose-suitable-betting-platform__cta-section {
  background: linear-gradient(45deg, var(--page-primary-color), #2d4a77); /* Darker blue gradient */
  color: var(--page-text-light);
  text-align: center;
  padding: 80px 0;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__cta-content {
  max-width: 800px;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__cta-title {
  font-size: 2.5em;
  color: var(--page-secondary-color);
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-betting-guides-how-to-choose-suitable-betting-platform__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: var(--page-text-light);
}

.page-betting-guides-how-to-choose-suitable-betting-platform__cta-button {
  display: inline-block;
  background-color: var(--page-secondary-color);
  color: var(--page-primary-color);
  padding: 18px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-betting-guides-how-to-choose-suitable-betting-platform__cta-button:hover {
  background-color: var(--page-accent-light);
  transform: translateY(-5px);
}

.page-betting-guides-how-to-choose-suitable-betting-platform__faq-section {
  background-color: var(--page-text-light);
}

.page-betting-guides-how-to-choose-suitable-betting-platform__faq-item {
  background-color: var(--page-background-light);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  transition: box-shadow 0.3s ease;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-betting-guides-how-to-choose-suitable-betting-platform__faq-question {
  font-size: 1.3em;
  color: var(--page-primary-color);
  margin-bottom: 10px;
  cursor: pointer; /* Indicate it's interactive */
  position: relative;
  padding-right: 30px;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: var(--page-secondary-color);
  transition: transform 0.3s ease;
}

.page-betting-guides-how-to-choose-suitable-betting-platform__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-betting-guides-how-to-choose-suitable-betting-platform__faq-answer {
  font-size: 1.05em;
  color: var(--page-text-dark-contrast);
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-betting-guides-how-to-choose-suitable-betting-platform__hero-title {
    font-size: 2.2em;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__hero-description {
    font-size: 1.1em;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__section-title {
    font-size: 1.8em;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__hero-image-wrapper {
    width: 70%;
    opacity: 0.15;
  }
}

@media (max-width: 768px) {
  .page-betting-guides-how-to-choose-suitable-betting-platform__hero-section {
    padding: 60px 0;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__hero-title {
    font-size: 1.8em;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__hero-description {
    font-size: 1em;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__section {
    padding: 40px 0;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__section-title {
    font-size: 1.6em;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__hero-image-wrapper {
    width: 90%;
    opacity: 0.1;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__cta-title {
    font-size: 2em;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-betting-guides-how-to-choose-suitable-betting-platform__hero-section {
    padding: 40px 0;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__hero-title {
    font-size: 1.5em;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__hero-description {
    font-size: 0.9em;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__section-title {
    font-size: 1.4em;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__feature-title {
    font-size: 1.3em;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__cta-title {
    font-size: 1.8em;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__cta-description {
    font-size: 1em;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-betting-guides-how-to-choose-suitable-betting-platform__faq-question {
    font-size: 1.1em;
  }
}