.page-cockfighting {
    font-family: Arial, sans-serif;
    color: #FFF5E1; /* Text Main */
    background-color: #B71C1C; /* Background */
}

.page-cockfighting__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 40px;
    overflow: hidden;
    background-color: #7A0E0E; /* Deep Red for hero background */
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-height: 675px;
    overflow: hidden;
}

.page-cockfighting__hero-image {
    width: 100%;
    height: 675px; /* Display size */
    object-fit: cover;
    display: block;
}

.page-cockfighting__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin-top: 20px;
    padding: 0 20px;
}

.page-cockfighting__main-title {
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFD86A; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF5E1; /* Text Main */
}

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

.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-cockfighting__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button Gold */
    color: #7A0E0E; /* Deep Red */
    border: none;
    box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-cockfighting__btn-primary:hover {
    background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

.page-cockfighting__btn-secondary {
    background: transparent;
    color: #FFD86A; /* Gold */
    border: 2px solid #FFD86A; /* Gold */
    box-shadow: 0 2px 10px rgba(255, 216, 106, 0.2);
}

.page-cockfighting__btn-secondary:hover {
    background: rgba(255, 216, 106, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-cockfighting__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-cockfighting__intro-section, .page-cockfighting__bet-types-section, .page-cockfighting__guide-section, .page-cockfighting__advantages-section, .page-cockfighting__strategy-section, .page-cockfighting__faq-section, .page-cockfighting__conclusion-section {
    background-color: #D32F2F; /* Card BG */
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 40px;
    border: 1px solid #F2B544; /* Border */
}

.page-cockfighting__section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #FFCC66; /* Glow */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.page-cockfighting__text-block {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #FFF5E1; /* Text Main */
}

.page-cockfighting__image-content {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    display: block;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-cockfighting__bet-list,
.page-cockfighting__guide-list,
.page-cockfighting__strategy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-cockfighting__bet-item,
.page-cockfighting__guide-item,
.page-cockfighting__strategy-item {
    background-color: #B71C1C; /* Background */
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #F2B544; /* Border */
}

.page-cockfighting__bet-heading,
.page-cockfighting__guide-heading,
.page-cockfighting__strategy-heading {
    font-size: 1.35rem;
    font-weight: 600;
    color: #FFD86A; /* Gold */
    margin-top: 0;
    margin-bottom: 10px;
}

.page-cockfighting__bet-item p,
.page-cockfighting__guide-item p,
.page-cockfighting__strategy-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #FFF5E1; /* Text Main */
}

.page-cockfighting__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-cockfighting__feature-card {
    background-color: #B71C1C; /* Background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    text-align: center;
    border: 1px solid #F2B544; /* Border */
}

.page-cockfighting__feature-icon {
    width: 100%;
    height: 200px; /* Example display size */
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-cockfighting__feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFCC66; /* Glow */
    margin-bottom: 15px;
}

.page-cockfighting__feature-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #FFF5E1; /* Text Main */
}

/* FAQ Section Styles */
details.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #F2B544; /* Border */
  overflow: hidden;
  background: #B71C1C; /* Background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question::-webkit-details-marker {
  display: none;
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question:hover {
  background: #C91F17; /* Main Color */
}
.page-cockfighting__faq-qtext {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFD86A; /* Gold */
}
.page-cockfighting__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFCC66; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
  padding: 0 25px 20px;
  background: #C91F17; /* Main Color */
  border-radius: 0 0 8px 8px;
  color: #FFF5E1; /* Text Main */
  font-size: 1rem;
  line-height: 1.7;
}

.page-cockfighting__faq-answer p {
    margin-top: 0;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-cockfighting__hero-section {
        padding-bottom: 30px;
    }
    .page-cockfighting__main-title {
        font-size: clamp(2.2rem, 4.5vw, 3rem);
    }
    .page-cockfighting__subtitle {
        font-size: clamp(0.9rem, 1.8vw, 1.15rem);
    }
    .page-cockfighting__section {
        padding: 50px 20px;
    }
    .page-cockfighting__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    }
    .page-cockfighting__text-block, .page-cockfighting__bet-item p, .page-cockfighting__guide-item p, .page-cockfighting__strategy-item p, .page-cockfighting__feature-description {
        font-size: 1rem;
    }
    .page-cockfighting__bet-heading, .page-cockfighting__guide-heading, .page-cockfighting__strategy-heading {
        font-size: 1.2rem;
    }
    .page-cockfighting__feature-title {
        font-size: 1.25rem;
    }
    .page-cockfighting__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
        padding: 15px 20px;
    }
    .page-cockfighting__faq-qtext {
        font-size: 1.1rem;
    }
    .page-cockfighting__faq-toggle {
        font-size: 22px;
    }
    details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
        padding: 0 20px 15px;
    }
}

@media (max-width: 849px) {
    .page-cockfighting__hero-image {
        object-fit: contain !important;
        aspect-ratio: unset !important;
        height: auto !important; /* Allow height to adjust based on contain */
        max-height: 500px; /* Limit max height for smaller screens */
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-section {
        padding: 10px 0 30px;
    }
    .page-cockfighting__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 10px;
    }
    .page-cockfighting__subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin-bottom: 20px;
    }
    .page-cockfighting__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px; /* Constrain button group width */
        margin: 0 auto;
        padding: 0 15px;
    }
    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 15px;
        font-size: 1rem;
    }

    .page-cockfighting__section {
        padding: 40px 15px;
        margin-bottom: 30px;
    }
    .page-cockfighting__intro-section, .page-cockfighting__bet-types-section, .page-cockfighting__guide-section, .page-cockfighting__advantages-section, .page-cockfighting__strategy-section, .page-cockfighting__faq-section, .page-cockfighting__conclusion-section {
        padding: 30px 20px;
        margin-bottom: 25px;
    }
    .page-cockfighting__section-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
        margin-bottom: 30px;
    }
    .page-cockfighting__text-block, .page-cockfighting__bet-item p, .page-cockfighting__guide-item p, .page-cockfighting__strategy-item p, .page-cockfighting__feature-description, details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    .page-cockfighting__image-content,
    .page-cockfighting__feature-icon {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px;
        min-height: 150px; /* Adjust min height for mobile if needed */
    }
    .page-cockfighting__bet-item,
    .page-cockfighting__guide-item,
    .page-cockfighting__strategy-item,
    .page-cockfighting__feature-card {
        padding: 20px;
    }
    .page-cockfighting__bet-heading,
    .page-cockfighting__guide-heading,
    .page-cockfighting__strategy-heading {
        font-size: 1.15rem;
    }
    .page-cockfighting__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
        padding: 15px;
    }
    .page-cockfighting__faq-qtext {
        font-size: 1rem;
    }
    .page-cockfighting__faq-toggle {
        font-size: 20px;
    }
    details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
        padding: 0 15px 15px;
    }

    /* Ensure content containers have proper padding and max-width on mobile */
    .page-cockfighting__section,
    .page-cockfighting__content-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-cockfighting__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
        flex-wrap: wrap !important;
        gap: 10px;
    }
}