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

/* General page styling */
.page-resources-live-cockfighting-betting-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: var(--secondary-color); /* Matches body background */
}

/* Header offset to prevent content being hidden by fixed header */
.page-resources-live-cockfighting-betting-guide__hero-section {
    padding-top: var(--header-offset, 120px);
}

.page-resources-live-cockfighting-betting-guide__section {
    padding: 60px 20px;
    margin-bottom: 20px;
    background-color: #ffffff; /* Default light background for sections */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-resources-live-cockfighting-betting-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-live-cockfighting-betting-guide__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand primary color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-live-cockfighting-betting-guide__sub-title {
    font-size: 1.8em;
    color: #333333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-resources-live-cockfighting-betting-guide__content-block p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

/* Hero Section */
.page-resources-live-cockfighting-betting-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #e0f2f7, #ffffff);
}

.page-resources-live-cockfighting-betting-guide__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-live-cockfighting-betting-guide__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-resources-live-cockfighting-betting-guide__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-live-cockfighting-betting-guide__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-resources-live-cockfighting-betting-guide__main-title {
    font-size: 3.5em;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.page-resources-live-cockfighting-betting-guide__intro-text {
    font-size: 1.4em;
    color: #555555;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-resources-live-cockfighting-betting-guide__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-live-cockfighting-betting-guide__btn-primary {
    background: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-resources-live-cockfighting-betting-guide__btn-primary:hover {
    background: #1e87c0;
    border-color: #1e87c0;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-live-cockfighting-betting-guide__btn-secondary {
    background: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-resources-live-cockfighting-betting-guide__btn-secondary:hover {
    background: #f0f8ff;
    color: #1e87c0;
    border-color: #1e87c0;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Image content styling */
.page-resources-live-cockfighting-betting-guide__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Dark background sections for contrast */
.page-resources-live-cockfighting-betting-guide__dark-bg {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-resources-live-cockfighting-betting-guide__dark-bg .page-resources-live-cockfighting-betting-guide__section-title,
.page-resources-live-cockfighting-betting-guide__dark-bg .page-resources-live-cockfighting-betting-guide__sub-title {
    color: #ffffff;
}

/* Light background sections */
.page-resources-live-cockfighting-betting-guide__light-bg {
    background-color: #f9f9f9;
    color: #333333;
}

/* FAQ Section Styling */
.page-resources-live-cockfighting-betting-guide__faq-list {
  margin-top: 30px;
}

.page-resources-live-cockfighting-betting-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-resources-live-cockfighting-betting-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  color: #555;
}

.page-resources-live-cockfighting-betting-guide__faq-item.active .page-resources-live-cockfighting-betting-guide__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: #f0f8ff;
  border-radius: 0 0 5px 5px;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.03);
}

.page-resources-live-cockfighting-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-live-cockfighting-betting-guide__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-live-cockfighting-betting-guide__faq-question:active {
  background: #eeeeee;
}

.page-resources-live-cockfighting-betting-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  color: #333333;
  pointer-events: none;
}

.page-resources-live-cockfighting-betting-guide__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-live-cockfighting-betting-guide__faq-item.active .page-resources-live-cockfighting-betting-guide__faq-toggle {
  color: #26A9E0;
  transform: rotate(45deg);
}

/* Conclusion Section CTA specific styling */
.page-resources-live-cockfighting-betting-guide__conclusion-section .page-resources-live-cockfighting-betting-guide__cta-button {
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-live-cockfighting-betting-guide__main-title {
        font-size: 2.8em;
    }
    .page-resources-live-cockfighting-betting-guide__intro-text {
        font-size: 1.2em;
    }
    .page-resources-live-cockfighting-betting-guide__section-title {
        font-size: 2em;
    }
    .page-resources-live-cockfighting-betting-guide__sub-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-resources-live-cockfighting-betting-guide__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-resources-live-cockfighting-betting-guide__section {
        padding: 40px 15px;
        margin-bottom: 15px;
    }

    .page-resources-live-cockfighting-betting-guide__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-resources-live-cockfighting-betting-guide__intro-text {
        font-size: 1em;
        margin-bottom: 20px;
    }

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

    .page-resources-live-cockfighting-betting-guide__sub-title {
        font-size: 1.3em;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    /* Image responsiveness */
    .page-resources-live-cockfighting-betting-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    
    .page-resources-live-cockfighting-betting-guide__hero-image img {
        border-radius: 8px;
    }

    .page-resources-live-cockfighting-betting-guide__content-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Button responsiveness */
    .page-resources-live-cockfighting-betting-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-live-cockfighting-betting-guide__cta-button,
    .page-resources-live-cockfighting-betting-guide__btn-primary,
    .page-resources-live-cockfighting-betting-guide__btn-secondary {
        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: 1em !important;
    }
    
    /* FAQ mobile styling */
    .page-resources-live-cockfighting-betting-guide__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .page-resources-live-cockfighting-betting-guide__faq-question h3 {
        font-size: 1em;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    
    .page-resources-live-cockfighting-betting-guide__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    
    .page-resources-live-cockfighting-betting-guide__faq-answer {
        padding: 0 15px;
    }
    
    .page-resources-live-cockfighting-betting-guide__faq-item.active .page-resources-live-cockfighting-betting-guide__faq-answer {
        padding: 15px !important;
    }
}