/* style/resources-today-cockfighting-casino-guide.css */

/* Variables */
:root {
    --page-primary-color: #017439;
    --page-secondary-color: #FFFFFF;
    --page-register-button-bg: #C30808;
    --page-login-button-bg: #C30808;
    --page-button-text-color: #FFFF00; /* For register/login buttons */
    --page-dark-text: #333333;
    --page-light-text: #ffffff;
    --page-background-color: #ffffff; /* Default section background */
}

.page-resources-today-cockfighting-casino-guide {
    /* Assuming body background is dark from shared.css (var(--neon-dark-bg)) */
    color: var(--page-light-text); /* Light text on dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-resources-today-cockfighting-casino-guide__section {
    padding: 60px 0;
    background-color: var(--page-background-color); /* Default light background for sections */
    color: var(--page-dark-text); /* Dark text on light section background */
}

.page-resources-today-cockfighting-casino-guide__dark-bg {
    background-color: var(--page-primary-color);
    color: var(--page-light-text);
}

.page-resources-today-cockfighting-casino-guide__section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: inherit; /* Inherits from section, so either light or dark */
}

/* Hero Section */
.page-resources-today-cockfighting-casino-guide__hero-section {
    background-color: var(--page-primary-color); /* Brand primary color for hero */
    color: var(--page-light-text);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    position: relative;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-resources-today-cockfighting-casino-guide__hero-section .page-resources-today-cockfighting-casino-guide__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.page-resources-today-cockfighting-casino-guide__hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-resources-today-cockfighting-casino-guide__hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--page-light-text);
}

.page-resources-today-cockfighting-casino-guide__hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--page-light-text);
}

.page-resources-today-cockfighting-casino-guide__hero-image-wrapper {
    flex: 1;
    min-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-resources-today-cockfighting-casino-guide__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.page-resources-today-cockfighting-casino-guide__cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-today-cockfighting-casino-guide__btn-primary,
.page-resources-today-cockfighting-casino-guide__btn-secondary,
.page-resources-today-cockfighting-casino-guide__btn-tertiary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-resources-today-cockfighting-casino-guide__btn-primary {
    background-color: var(--page-register-button-bg); /* Custom color for register/login */
    color: var(--page-button-text-color);
    border: 2px solid var(--page-register-button-bg);
}

.page-resources-today-cockfighting-casino-guide__btn-primary:hover {
    background-color: #a30606;
    border-color: #a30606;
}

.page-resources-today-cockfighting-casino-guide__btn-secondary {
    background-color: transparent;
    color: var(--page-light-text);
    border: 2px solid var(--page-light-text);
}

.page-resources-today-cockfighting-casino-guide__btn-secondary:hover {
    background-color: var(--page-light-text);
    color: var(--page-primary-color);
}

.page-resources-today-cockfighting-casino-guide__btn-tertiary {
    background-color: var(--page-primary-color);
    color: var(--page-light-text);
    border: 2px solid var(--page-primary-color);
}

.page-resources-today-cockfighting-casino-guide__btn-tertiary:hover {
    background-color: #005a2b;
    border-color: #005a2b;
}

.page-resources-today-cockfighting-casino-guide__btn-large {
    padding: 15px 35px;
    font-size: 20px;
}

.page-resources-today-cockfighting-casino-guide__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Text Blocks */
.page-resources-today-cockfighting-casino-guide__text-block {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

/* How-to-Play Section */
.page-resources-today-cockfighting-casino-guide__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-today-cockfighting-casino-guide__step-card {
    background-color: var(--page-secondary-color);
    color: var(--page-dark-text);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-resources-today-cockfighting-casino-guide__step-icon {
    width: 200px; /* Minimum size enforced */
    height: 200px; /* Minimum size enforced */
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-resources-today-cockfighting-casino-guide__step-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--page-primary-color);
}

.page-resources-today-cockfighting-casino-guide__step-description {
    font-size: 15px;
}

/* Features Section */
.page-resources-today-cockfighting-casino-guide__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-today-cockfighting-casino-guide__feature-card {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white on dark bg */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--page-light-text);
}

.page-resources-today-cockfighting-casino-guide__feature-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--page-light-text);
}

.page-resources-today-cockfighting-casino-guide__feature-description {
    font-size: 15px;
}

/* Bet Types Section */
.page-resources-today-cockfighting-casino-guide__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 16px;
}

.page-resources-today-cockfighting-casino-guide__list-item {
    margin-bottom: 10px;
}

/* Tips Section */
.page-resources-today-cockfighting-casino-guide__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-today-cockfighting-casino-guide__tip-card {
    background-color: var(--page-secondary-color);
    color: var(--page-dark-text);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.page-resources-today-cockfighting-casino-guide__tip-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-resources-today-cockfighting-casino-guide__tip-title {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--page-primary-color);
}

/* Promotions Section */
.page-resources-today-cockfighting-casino-guide__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-today-cockfighting-casino-guide__promo-card {
    background-color: var(--page-secondary-color);
    color: var(--page-dark-text);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-resources-today-cockfighting-casino-guide__promo-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-resources-today-cockfighting-casino-guide__promo-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--page-primary-color);
}

.page-resources-today-cockfighting-casino-guide__promo-description {
    font-size: 15px;
    margin-bottom: 20px;
    flex-grow: 1; /* Pushes button to bottom */
}

/* FAQ Section */
.page-resources-today-cockfighting-casino-guide__faq-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-today-cockfighting-casino-guide__faq-item {
    background-color: var(--page-secondary-color);
    color: var(--page-dark-text);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-resources-today-cockfighting-casino-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.page-resources-today-cockfighting-casino-guide__faq-question:hover {
    background-color: #f0f0f0;
}

.page-resources-today-cockfighting-casino-guide__faq-question h3 {
    margin: 0;
    color: var(--page-primary-color);
    font-size: 18px; /* Ensure consistency */
}

.page-resources-today-cockfighting-casino-guide__faq-toggle {
    font-size: 24px;
    line-height: 1;
    font-weight: normal;
    transition: transform 0.3s ease;
    color: var(--page-primary-color);
}

.page-resources-today-cockfighting-casino-guide__faq-item.active .page-resources-today-cockfighting-casino-guide__faq-toggle {
    transform: rotate(45deg); /* Plus to X */
}

.page-resources-today-cockfighting-casino-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 15px;
    color: var(--page-dark-text);
}

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

.page-resources-today-cockfighting-casino-guide__faq-answer p {
    margin-bottom: 0;
}

/* CTA Section */
.page-resources-today-cockfighting-casino-guide__cta-section {
    background-color: var(--page-primary-color);
    color: var(--page-light-text);
    text-align: center;
    padding: 80px 0;
}

.page-resources-today-cockfighting-casino-guide__cta-section .page-resources-today-cockfighting-casino-guide__section-title {
    color: var(--page-light-text);
}

.page-resources-today-cockfighting-casino-guide__cta-section .page-resources-today-cockfighting-casino-guide__text-block {
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--page-light-text);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-resources-today-cockfighting-casino-guide__hero-title {
        font-size: 38px;
    }
    .page-resources-today-cockfighting-casino-guide__section-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .page-resources-today-cockfighting-casino-guide__hero-section .page-resources-today-cockfighting-casino-guide__container {
        flex-direction: column;
        text-align: center;
    }
    .page-resources-today-cockfighting-casino-guide__hero-content {
        text-align: center;
    }
    .page-resources-today-cockfighting-casino-guide__cta-buttons {
        justify-content: center;
    }
    .page-resources-today-cockfighting-casino-guide__hero-title {
        font-size: 32px;
    }
    .page-resources-today-cockfighting-casino-guide__hero-description {
        font-size: 16px;
    }
    .page-resources-today-cockfighting-casino-guide__section {
        padding: 40px 0;
    }
    .page-resources-today-cockfighting-casino-guide__section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .page-resources-today-cockfighting-casino-guide__steps-grid,
    .page-resources-today-cockfighting-casino-guide__features-grid,
    .page-resources-today-cockfighting-casino-guide__tips-grid,
    .page-resources-today-cockfighting-casino-guide__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-today-cockfighting-casino-guide__step-card,
    .page-resources-today-cockfighting-casino-guide__feature-card,
    .page-resources-today-cockfighting-casino-guide__tip-card,
    .page-resources-today-cockfighting-casino-guide__promo-card {
        padding: 20px;
    }
    .page-resources-today-cockfighting-casino-guide__faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }
    .page-resources-today-cockfighting-casino-guide__faq-question h3 {
        font-size: 16px;
    }
    .page-resources-today-cockfighting-casino-guide__faq-answer {
        padding: 0 20px;
    }
    .page-resources-today-cockfighting-casino-guide__faq-item.active .page-resources-today-cockfighting-casino-guide__faq-answer {
        padding: 15px 20px;
    }

    /* Mobile specific image/video/button responsive rules */
    .page-resources-today-cockfighting-casino-guide img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-today-cockfighting-casino-guide__section,
    .page-resources-today-cockfighting-casino-guide__card,
    .page-resources-today-cockfighting-casino-guide__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-today-cockfighting-casino-guide__hero-section {
        padding-top: var(--header-offset, 120px) !important;
    }

    /* Video responsive styles - if video was present */
    .page-resources-today-cockfighting-casino-guide video,
    .page-resources-today-cockfighting-casino-guide__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-today-cockfighting-casino-guide__video-section,
    .page-resources-today-cockfighting-casino-guide__video-container,
    .page-resources-today-cockfighting-casino-guide__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-resources-today-cockfighting-casino-guide__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-resources-today-cockfighting-casino-guide__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Button responsive styles */
    .page-resources-today-cockfighting-casino-guide__cta-button,
    .page-resources-today-cockfighting-casino-guide__btn-primary,
    .page-resources-today-cockfighting-casino-guide__btn-secondary,
    .page-resources-today-cockfighting-casino-guide__btn-tertiary,
    .page-resources-today-cockfighting-casino-guide a[class*="button"],
    .page-resources-today-cockfighting-casino-guide a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px; /* Add padding to buttons themselves for content */
    }
}
}