/* style/game-introduction-betting-types.css */
.page-game-introduction-betting-types {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light grey for main text on dark background */
  background-color: #0A192F; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-game-introduction-betting-types__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Gradient from main to a slightly lighter dark blue */
  padding: 100px 0;
  text-align: center;
  border-bottom: 3px solid #FFD700; /* Gold accent */
}

.page-game-introduction-betting-types__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-introduction-betting-types__hero-title a {
  color: #FFD700; /* Gold for links in title */
  text-decoration: none;
}

.page-game-introduction-betting-types__hero-title a:hover {
  text-decoration: underline;
}

.page-game-introduction-betting-types__hero-description {
  font-size: 1.3em;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-game-introduction-betting-types__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA buttons */
  color: #0A192F; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-introduction-betting-types__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-game-introduction-betting-types__content-section {
  padding: 60px 0;
}

.page-game-introduction-betting-types__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 15px;
}

.page-game-introduction-betting-types__section-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-game-introduction-betting-types__section-title a:hover {
  text-decoration: underline;
}

.page-game-introduction-betting-types__subsection-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-section titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-game-introduction-betting-types p {
  margin-bottom: 1em;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-game-introduction-betting-types p a {
  color: #FFD700; /* Gold for links in paragraphs */
  text-decoration: none;
}

.page-game-introduction-betting-types p a:hover {
  text-decoration: underline;
}

.page-game-introduction-betting-types ul,
.page-game-introduction-betting-types ol {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 1em;
  color: #e0e0e0;
}

.page-game-introduction-betting-types ol {
  list-style-type: decimal;
}

.page-game-introduction-betting-types li {
  margin-bottom: 0.5em;
  font-size: 1.05em;
}

.page-game-introduction-betting-types strong {
  color: #FFD700; /* Gold for strong text */
}

.page-game-introduction-betting-types__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-game-introduction-betting-types__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-game-introduction-betting-types__button-group--final-cta {
  margin-top: 60px;
  margin-bottom: 40px;
}

.page-game-introduction-betting-types__cta-button--register,
.page-game-introduction-betting-types__cta-button--download,
.page-game-introduction-betting-types__cta-button--join {
  background-color: #FFD700;
  color: #0A192F;
}

.page-game-introduction-betting-types__cta-button--register:hover,
.page-game-introduction-betting-types__cta-button--download:hover,
.page-game-introduction-betting-types__cta-button--join:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-game-introduction-betting-types__faq {
  margin-top: 40px;
  background-color: #1a2a40; /* Slightly lighter dark blue for FAQ background */
  padding: 30px;
  border-radius: 10px;
}

.page-game-introduction-betting-types__faq-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(255, 215, 0, 0.2);
}

.page-game-introduction-betting-types__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-game-introduction-betting-types__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-introduction-betting-types__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-game-introduction-betting-types__faq-answer {
  font-size: 1.05em;
  color: #e0e0e0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-top: 0;
}

.page-game-introduction-betting-types__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-introduction-betting-types__hero-title {
    font-size: 2.5em;
  }

  .page-game-introduction-betting-types__hero-description {
    font-size: 1.1em;
  }

  .page-game-introduction-betting-types__section-title {
    font-size: 2em;
  }

  .page-game-introduction-betting-types__subsection-title {
    font-size: 1.5em;
  }

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

  .page-game-introduction-betting-types__button-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-game-introduction-betting-types__hero-title {
    font-size: 2em;
  }

  .page-game-introduction-betting-types__hero-description {
    font-size: 1em;
  }

  .page-game-introduction-betting-types__section-title {
    font-size: 1.8em;
  }

  .page-game-introduction-betting-types__subsection-title {
    font-size: 1.3em;
  }

  .page-game-introduction-betting-types__cta-button {
    width: 100%;
    padding: 10px 20px;
  }
  
  .page-game-introduction-betting-types__faq-question {
    font-size: 1.2em;
  }
}