/* style/cockfighting-betting-faq.css */
.page-cockfighting-betting-faq {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #1A1A1A; /* Dark background for professional feel */
  line-height: 1.6;
}

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

.page-cockfighting-betting-faq__hero {
  background: linear-gradient(135deg, #CC0000 0%, #FFD700 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-cockfighting-betting-faq__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:hero:cockfighting,arena,crowd,excitement,mcw88]') no-repeat center center/cover;
    opacity: 0.2;
    z-index: 0;
}

.page-cockfighting-betting-faq__hero > * {
    position: relative;
    z-index: 1;
}

.page-cockfighting-betting-faq__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
}

.page-cockfighting-betting-faq__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

.page-cockfighting-betting-faq__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;
  cursor: pointer;
  border: none;
}

.page-cockfighting-betting-faq__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #CC0000; /* Red */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-cockfighting-betting-faq__btn--primary:hover {
  background-color: #E6C200; /* Darker Gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-cockfighting-betting-faq__btn--secondary {
  background-color: #CC0000; /* Red */
  color: #FFFFFF;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-cockfighting-betting-faq__btn--secondary:hover {
  background-color: #A30000; /* Darker Red */
  border-color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4);
}

.page-cockfighting-betting-faq__btn--tertiary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-cockfighting-betting-faq__btn--tertiary:hover {
  background-color: #FFD700;
  color: #CC0000;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-cockfighting-betting-faq__faq-section {
  padding: 60px 0;
}

.page-cockfighting-betting-faq__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
  text-transform: uppercase;
}

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

.page-cockfighting-betting-faq__faq-item {
  background-color: #282828; /* Slightly lighter dark background */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #CC0000; /* Red accent */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-betting-faq__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-betting-faq__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

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

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

.page-cockfighting-betting-faq__faq-answer {
  font-size: 1.05em;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-cockfighting-betting-faq__faq-answer.open {
  max-height: 1000px; /* Adjust as needed for content */
  padding-top: 15px;
}

.page-cockfighting-betting-faq__faq-answer p {
  margin-bottom: 15px;
}

.page-cockfighting-betting-faq__faq-answer ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-cockfighting-betting-faq__faq-answer li {
  margin-bottom: 5px;
}

.page-cockfighting-betting-faq__faq-answer strong {
  color: #FFD700;
}

.page-cockfighting-betting-faq__img--inline {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-faq__cta-bottom {
    text-align: center;
    padding: 60px 0;
    background-color: #222222;
    margin-top: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-betting-faq__cta-bottom .page-cockfighting-betting-faq__section-title {
    margin-bottom: 20px;
    font-size: 2em;
}

.page-cockfighting-betting-faq__cta-bottom p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-cockfighting-betting-faq__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

  .page-cockfighting-betting-faq__hero-subtitle {
    font-size: 1.2em;
  }

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

  .page-cockfighting-betting-faq__faq-question {
    font-size: 1.2em;
  }

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

  .page-cockfighting-betting-faq__btn--secondary,
  .page-cockfighting-betting-faq__btn--tertiary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-cockfighting-betting-faq__cta-buttons {
      flex-direction: column;
      align-items: center;
  }
}

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

  .page-cockfighting-betting-faq__hero-subtitle {
    font-size: 1em;
  }

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

  .page-cockfighting-betting-faq__faq-item {
    padding: 20px;
  }

  .page-cockfighting-betting-faq__faq-question {
    font-size: 1.1em;
  }

  .page-cockfighting-betting-faq__btn {
    width: 100%;
    max-width: 280px;
  }
}