/* style/resources-cockfighting-betting-beginner-guide.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #ffffff;
  --background-dark: #26A9E0;
  --login-button-color: #EA7C07;
}

.page-resources-cockfighting-betting-beginner-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-light); /* Assuming shared body bg is light */
}

.page-resources-cockfighting-betting-beginner-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-cockfighting-betting-beginner-guide__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: var(--primary-color);
  color: var(--text-color-light);
  text-align: center;
  overflow: hidden;
}

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

.page-resources-cockfighting-betting-beginner-guide__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-color-light);
}

.page-resources-cockfighting-betting-beginner-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-color-light);
}

.page-resources-cockfighting-betting-beginner-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

.page-resources-cockfighting-betting-beginner-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-cockfighting-betting-beginner-guide__btn-primary {
  display: inline-block;
  background-color: var(--login-button-color); /* Using login color for primary action */
  color: var(--text-color-light);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-resources-cockfighting-betting-beginner-guide__btn-primary:hover {
  background-color: #e06c00;
}

.page-resources-cockfighting-betting-beginner-guide__section-title {
  font-size: 2.2em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-resources-cockfighting-betting-beginner-guide__introduction-section,
.page-resources-cockfighting-betting-beginner-guide__rules-section,
.page-resources-cockfighting-betting-beginner-guide__platform-selection-section,
.page-resources-cockfighting-betting-beginner-guide__mistakes-section,
.page-resources-cockfighting-betting-beginner-guide__faq-section {
  padding: 60px 0;
  background-color: var(--background-light);
  color: var(--text-color-dark);
}

.page-resources-cockfighting-betting-beginner-guide__dark-section {
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-resources-cockfighting-betting-beginner-guide__dark-section .page-resources-cockfighting-betting-beginner-guide__section-title,
.page-resources-cockfighting-betting-beginner-guide__dark-section .page-resources-cockfighting-betting-beginner-guide__sub-title {
  color: var(--text-color-light);
}

.page-resources-cockfighting-betting-beginner-guide__text-block {
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.7;
  text-align: justify;
}

.page-resources-cockfighting-betting-beginner-guide__sub-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-cockfighting-betting-beginner-guide__dark-section .page-resources-cockfighting-betting-beginner-guide__sub-title {
  color: var(--text-color-light);
}

.page-resources-cockfighting-betting-beginner-guide__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 0;
}

.page-resources-cockfighting-betting-beginner-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

.page-resources-cockfighting-betting-beginner-guide__video-section {
  padding: 60px 0;
  background-color: #f0f8ff; /* Light blue background */
  text-align: center;
  color: var(--text-color-dark);
}

.page-resources-cockfighting-betting-beginner-guide__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 900px;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-cockfighting-betting-beginner-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-resources-cockfighting-betting-beginner-guide__btn-center {
  margin: 30px auto 0 auto;
}

.page-resources-cockfighting-betting-beginner-guide__faq-list {
  margin-top: 30px;
}

.page-resources-cockfighting-betting-beginner-guide__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-cockfighting-betting-beginner-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #f7f7f7;
  color: var(--text-color-dark);
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-resources-cockfighting-betting-beginner-guide__faq-question:hover {
  background-color: #e9e9e9;
}

.page-resources-cockfighting-betting-beginner-guide__faq-question h3 {
  margin: 0;
  font-size: 1.1em;
  color: var(--text-color-dark);
}

.page-resources-cockfighting-betting-beginner-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-cockfighting-betting-beginner-guide__faq-item.active .page-resources-cockfighting-betting-beginner-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-cockfighting-betting-beginner-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-color-dark);
  background-color: var(--secondary-color);
}

.page-resources-cockfighting-betting-beginner-guide__faq-item.active .page-resources-cockfighting-betting-beginner-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px !important;
}

.page-resources-cockfighting-betting-beginner-guide__conclusion-section {
  padding: 60px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-cockfighting-betting-beginner-guide__hero-title {
    font-size: 2.5em;
  }
  .page-resources-cockfighting-betting-beginner-guide__hero-description {
    font-size: 1.1em;
  }
  .page-resources-cockfighting-betting-beginner-guide__section-title {
    font-size: 2em;
  }
  .page-resources-cockfighting-betting-beginner-guide__sub-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-resources-cockfighting-betting-beginner-guide {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-resources-cockfighting-betting-beginner-guide__hero-section {
    flex-direction: column;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    min-height: auto;
  }

  .page-resources-cockfighting-betting-beginner-guide__hero-content {
    padding: 40px 15px;
    order: 2;
  }

  .page-resources-cockfighting-betting-beginner-guide__hero-image-wrapper {
    position: relative;
    height: 250px;
    opacity: 1;
    order: 1;
    margin-bottom: 20px;
  }

  .page-resources-cockfighting-betting-beginner-guide__hero-title {
    font-size: 2em;
  }

  .page-resources-cockfighting-betting-beginner-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-cockfighting-betting-beginner-guide__introduction-section,
  .page-resources-cockfighting-betting-beginner-guide__rules-section,
  .page-resources-cockfighting-betting-beginner-guide__platform-selection-section,
  .page-resources-cockfighting-betting-beginner-guide__mistakes-section,
  .page-resources-cockfighting-betting-beginner-guide__faq-section,
  .page-resources-cockfighting-betting-beginner-guide__video-section,
  .page-resources-cockfighting-betting-beginner-guide__conclusion-section {
    padding: 40px 0 !important;
  }
  
  .page-resources-cockfighting-betting-beginner-guide__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-resources-cockfighting-betting-beginner-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

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

  .page-resources-cockfighting-betting-beginner-guide__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-cockfighting-betting-beginner-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    padding-bottom: 56.25% !important; /* Maintain aspect ratio */
    overflow: hidden !important;
  }

  .page-resources-cockfighting-betting-beginner-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
  }

  .page-resources-cockfighting-betting-beginner-guide__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 0.95em !important;
  }

  .page-resources-cockfighting-betting-beginner-guide__faq-question,
  .page-resources-cockfighting-betting-beginner-guide__faq-answer {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-resources-cockfighting-betting-beginner-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-cockfighting-betting-beginner-guide__hero-description {
    font-size: 0.9em;
  }
  .page-resources-cockfighting-betting-beginner-guide__section-title {
    font-size: 1.6em;
  }
  .page-resources-cockfighting-betting-beginner-guide__sub-title {
    font-size: 1.2em;
  }
}