/* style/blog-cockfighting-betting-tips.css */

/* Variables for colors based on the provided scheme */
:root {
    --f18678-primary-color: #FF8C1A; /* Main */
    --f18678-secondary-color: #FFA53A; /* Auxiliary */
    --f18678-button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    --f18678-card-bg: #17191F;
    --f18678-background-color: #0D0E12;
    --f18678-text-main-color: #FFF3E6;
    --f18678-border-color: #A84F0C;
    --f18678-glow-color: #FFB04D;
    --f18678-deep-orange-color: #D96800;

    /* Text colors for contrast based on a dark body background #0D0E12 */
    --f18678-text-on-dark: #FFF3E6; /* Text Main */
    --f18678-text-on-light: #333333; /* Standard dark text */
}

/* Base styles for the page, ensuring text is visible on dark body background */
.page-blog-cockfighting-betting-tips {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--f18678-text-on-dark); /* Default text color for the page content */
    background-color: var(--f18678-background-color); /* This will be overridden by body background, but good for self-contained elements */
}

/* Ensure images are responsive by default */
.page-blog-cockfighting-betting-tips img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevents extra space below images */
    border-radius: 8px; /* Soften edges */
    object-fit: cover; /* Ensure images cover their area well */
    filter: none !important; /* Strictly no filters */
}

/* Hero Section */
.page-blog-cockfighting-betting-tips__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding for content below */
    text-align: center;
    background-color: var(--f18678-background-color); /* Ensure hero section background matches body */
    overflow: hidden; /* Prevent content overflow */
}

.page-blog-cockfighting-betting-tips__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 40px; /* Space between image and content */
}

.page-blog-cockfighting-betting-tips__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-blog-cockfighting-betting-tips__hero-content {
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1; /* Ensure content is above any potential background layers */
    color: var(--f18678-text-on-dark); /* Ensure hero text is light */
}

.page-blog-cockfighting-betting-tips__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
    font-weight: bold;
    color: var(--f18678-glow-color); /* Use glow color for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-blog-cockfighting-betting-tips__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--f18678-text-on-dark);
}

.page-blog-cockfighting-betting-tips__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    gap: 20px;
    justify-content: center;
    width: 100%; /* Ensure container takes full width */
    max-width: 600px; /* Limit button group width */
    margin: 0 auto;
    box-sizing: border-box;
}

.page-blog-cockfighting-betting-tips__btn-primary,
.page-blog-cockfighting-betting-tips__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    text-align: center;
}

.page-blog-cockfighting-betting-tips__btn-primary {
    background: var(--f18678-button-gradient);
    color: var(--f18678-text-main-color); /* Light text on dark button */
    border: 2px solid var(--f18678-deep-orange-color);
    box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-blog-cockfighting-betting-tips__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

.page-blog-cockfighting-betting-tips__btn-secondary {
    background-color: transparent;
    color: var(--f18678-primary-color);
    border: 2px solid var(--f18678-primary-color);
}

.page-blog-cockfighting-betting-tips__btn-secondary:hover {
    background-color: var(--f18678-primary-color);
    color: var(--f18678-text-main-color);
    transform: translateY(-3px);
}

/* Content Sections */
.page-blog-cockfighting-betting-tips__content-section {
    padding: 60px 20px;
    background-color: var(--f18678-background-color); /* Default for content sections */
    color: var(--f18678-text-on-dark);
}

.page-blog-cockfighting-betting-tips__dark-bg {
    background-color: var(--f18678-card-bg); /* Darker background for contrast sections */
    color: var(--f18678-text-on-dark);
}

.page-blog-cockfighting-betting-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-blog-cockfighting-betting-tips__section-title {
    font-size: 2.2em;
    color: var(--f18678-glow-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    line-height: 1.3;
}

.page-blog-cockfighting-betting-tips__text-block {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: var(--f18678-text-on-dark);
}

.page-blog-cockfighting-betting-tips__highlight {
    color: var(--f18678-primary-color);
    font-weight: bold;
}

.page-blog-cockfighting-betting-tips__content-image {
    margin: 40px auto;
    display: block;
    max-width: 100%;
    width: 100%; /* Ensure content images take full width of their container on desktop */
    border: 1px solid var(--f18678-border-color);
    box-shadow: 0 0 20px rgba(255, 140, 26, 0.2);
}

.page-blog-cockfighting-betting-tips__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--f18678-text-on-dark);
}

.page-blog-cockfighting-betting-tips__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: var(--f18678-text-on-dark);
}

.page-blog-cockfighting-betting-tips__list-item strong {
    color: var(--f18678-primary-color);
}

/* FAQ Section */
.page-blog-cockfighting-betting-tips__faq-list {
    margin-top: 30px;
}

.page-blog-cockfighting-betting-tips__faq-item {
    background-color: var(--f18678-card-bg);
    border: 1px solid var(--f18678-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--f18678-text-on-dark);
}

.page-blog-cockfighting-betting-tips__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 20px;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--f18678-glow-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 140, 26, 0.1); /* Slight highlight */
    transition: background-color 0.3s ease;
}

.page-blog-cockfighting-betting-tips__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-blog-cockfighting-betting-tips__faq-item summary:hover {
    background-color: rgba(255, 140, 26, 0.2);
}

.page-blog-cockfighting-betting-tips__faq-qtext {
    flex-grow: 1;
}

.page-blog-cockfighting-betting-tips__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
}

.page-blog-cockfighting-betting-tips__faq-answer {
    padding: 20px;
    padding-top: 0;
    font-size: 1em;
    color: var(--f18678-text-on-dark);
}

.page-blog-cockfighting-betting-tips__faq-answer p {
    margin-bottom: 10px;
    color: var(--f18678-text-on-dark);
}

.page-blog-cockfighting-betting-tips__faq-answer a {
    color: var(--f18678-primary-color);
    text-decoration: underline;
}

.page-blog-cockfighting-betting-tips__faq-answer a:hover {
    color: var(--f18678-glow-color);
}

/* Conclusion Section */
.page-blog-cockfighting-betting-tips__conclusion-section {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--f18678-deep-orange-color); /* Use a strong brand color for conclusion */
    color: var(--f18678-text-main-color);
}

.page-blog-cockfighting-betting-tips__conclusion-section .page-blog-cockfighting-betting-tips__section-title {
    color: var(--f18678-text-main-color); /* White text on deep orange background */
}

.page-blog-cockfighting-betting-tips__conclusion-section .page-blog-cockfighting-betting-tips__text-block {
    color: var(--f18678-text-main-color);
    margin-bottom: 40px;
}

/* --- Mobile Responsive Styles --- */
@media (max-width: 768px) {
    .page-blog-cockfighting-betting-tips {
        font-size: 16px;
        line-height: 1.6;
    }

    /* General containers and sections padding */
    .page-blog-cockfighting-betting-tips__hero-section,
    .page-blog-cockfighting-betting-tips__content-section,
    .page-blog-cockfighting-betting-tips__conclusion-section {
        padding: 40px 15px !important; /* Adjust padding for mobile */
    }

    .page-blog-cockfighting-betting-tips__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    /* Hero Section */
    .page-blog-cockfighting-betting-tips__hero-image-wrapper {
        max-height: 300px;
        margin-bottom: 20px;
    }

    .page-blog-cockfighting-betting-tips__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
        margin-bottom: 15px;
    }

    .page-blog-cockfighting-betting-tips__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-blog-cockfighting-betting-tips__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding: 0 !important; /* Remove padding here as container handles it */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-blog-cockfighting-betting-tips__btn-primary,
    .page-blog-cockfighting-betting-tips__btn-secondary {
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* Content Images */
    .page-blog-cockfighting-betting-tips__content-image {
        margin: 20px auto !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Section Titles */
    .page-blog-cockfighting-betting-tips__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-blog-cockfighting-betting-tips__text-block,
    .page-blog-cockfighting-betting-tips__list-item,
    .page-blog-cockfighting-betting-tips__faq-answer p {
        font-size: 0.95em;
    }

    /* FAQ Section */
    .page-blog-cockfighting-betting-tips__faq-item summary {
        font-size: 1em;
        padding: 15px;
    }

    .page-blog-cockfighting-betting-tips__faq-toggle {
        font-size: 1.2em;
    }
}

/* Contrast fix for text on specific backgrounds if needed */
.page-blog-cockfighting-betting-tips__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-blog-cockfighting-betting-tips__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}