/* style/cockfighting.css */

/* Variables for colors */
:root {
    --page-cockfighting-primary-color: #11A84E;
    --page-cockfighting-secondary-color: #22C768;
    --page-cockfighting-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-cockfighting-card-bg: #11271B;
    --page-cockfighting-background: #08160F;
    --page-cockfighting-text-main: #F2FFF6;
    --page-cockfighting-text-secondary: #A7D9B8;
    --page-cockfighting-border: #2E7A4E;
    --page-cockfighting-glow: #57E38D;
    --page-cockfighting-gold: #F2C14E;
    --page-cockfighting-divider: #1E3A2A;
    --page-cockfighting-deep-green: #0A4B2C;
}

.page-cockfighting {
    font-family: Arial, sans-serif;
    color: var(--page-cockfighting-text-main);
    background-color: var(--page-cockfighting-background); /* Default background for main content area */
}

.page-cockfighting a {
    color: var(--page-cockfighting-gold);
    text-decoration: none;
}

.page-cockfighting a:hover {
    text-decoration: underline;
}

/* Section Styling */
.page-cockfighting__hero-section,
.page-cockfighting__about-section,
.page-cockfighting__why-choose-section,
.page-cockfighting__how-to-play-section,
.page-cockfighting__types-section,
.page-cockfighting__promotions-section,
.page-cockfighting__live-features-section,
.page-cockfighting__responsible-gambling-section,
.page-cockfighting__faq-section,
.page-cockfighting__cta-section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
}

.page-cockfighting__dark-section {
    background-color: var(--page-cockfighting-card-bg);
    color: var(--page-cockfighting-text-main);
}

.page-cockfighting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-cockfighting__section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--page-cockfighting-gold);
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-cockfighting__section-description {
    font-size: 1.1rem;
    color: var(--page-cockfighting-text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Hero Section */
.page-cockfighting__hero-section {
    padding: 10px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    background-color: var(--page-cockfighting-background);
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
}

.page-cockfighting__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    display: block;
}

.page-cockfighting__hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.page-cockfighting__hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--page-cockfighting-gold);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-cockfighting__hero-description {
    font-size: 1.2rem;
    color: var(--page-cockfighting-text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

/* Buttons */
.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    border: 2px solid transparent;
}

.page-cockfighting__btn-primary {
    background: var(--page-cockfighting-button-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-cockfighting__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-cockfighting__btn-secondary {
    background-color: transparent;
    color: var(--page-cockfighting-gold);
    border-color: var(--page-cockfighting-gold);
}

.page-cockfighting__btn-secondary:hover {
    background-color: var(--page-cockfighting-gold);
    color: var(--page-cockfighting-background);
    transform: translateY(-3px);
}

.page-cockfighting__btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Content Layouts */
.page-cockfighting__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.page-cockfighting__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-cockfighting__text-content {
    flex: 1;
}

.page-cockfighting__text-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--page-cockfighting-text-secondary);
}

.page-cockfighting__image-left,
.page-cockfighting__image-right {
    flex-shrink: 0;
    width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: block;
    min-width: 200px;
}

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

.page-cockfighting__card {
    background-color: var(--page-cockfighting-card-bg);
    border: 1px solid var(--page-cockfighting-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--page-cockfighting-text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-cockfighting__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.page-cockfighting__card-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-cockfighting__card-title {
    font-size: 1.5rem;
    color: var(--page-cockfighting-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting__card-description {
    font-size: 0.95rem;
    color: var(--page-cockfighting-text-secondary);
    line-height: 1.6;
}

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

.page-cockfighting__step-card {
    background-color: var(--page-cockfighting-background);
    border: 1px solid var(--page-cockfighting-divider);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    color: var(--page-cockfighting-text-main);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--page-cockfighting-button-gradient);
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(34, 199, 104, 0.4);
}

.page-cockfighting__step-title {
    font-size: 1.3rem;
    color: var(--page-cockfighting-gold);
    margin-bottom: 10px;
}

.page-cockfighting__step-description {
    font-size: 0.95rem;
    color: var(--page-cockfighting-text-secondary);
    line-height: 1.6;
}

.page-cockfighting__cta-wrapper {
    margin-top: 50px;
}

/* Promotions List */
.page-cockfighting__promotion-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.page-cockfighting__promotion-list li {
    background-color: var(--page-cockfighting-background);
    border: 1px solid var(--page-cockfighting-divider);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--page-cockfighting-text-secondary);
    line-height: 1.5;
}

.page-cockfighting__promotion-list li strong {
    color: var(--page-cockfighting-gold);
    font-size: 1.1rem;
}

/* Video Section */
.page-cockfighting__live-features-section {
    background-color: var(--page-cockfighting-background);
}

.page-cockfighting__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    cursor: pointer; /* Indicate clickable video */
}

.page-cockfighting__video {
    width: 100%;
    height: auto;
    display: block;
}

.page-cockfighting__feature-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
    max-width: 800px;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.page-cockfighting__feature-list li {
    background-color: var(--page-cockfighting-card-bg);
    border: 1px solid var(--page-cockfighting-border);
    border-radius: 8px;
    padding: 20px;
    font-size: 1rem;
    color: var(--page-cockfighting-text-secondary);
    line-height: 1.6;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__feature-list li strong {
    color: var(--page-cockfighting-gold);
}

/* Responsible Gambling */
.page-cockfighting__responsible-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.page-cockfighting__responsible-list li {
    background-color: var(--page-cockfighting-background);
    border: 1px solid var(--page-cockfighting-divider);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--page-cockfighting-text-secondary);
    line-height: 1.5;
}

.page-cockfighting__responsible-list li strong {
    color: var(--page-cockfighting-gold);
    font-size: 1.1rem;
}

/* FAQ Section */
.page-cockfighting__faq-list {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
}

.page-cockfighting__faq-item {
    background-color: var(--page-cockfighting-card-bg);
    border: 1px solid var(--page-cockfighting-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--page-cockfighting-gold);
    cursor: pointer;
    outline: none;
    list-style: none;
    background-color: var(--page-cockfighting-card-bg);
}

.page-cockfighting__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-cockfighting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page-cockfighting__faq-qtext {
    flex-grow: 1;
    color: var(--page-cockfighting-gold);
}

.page-cockfighting__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--page-cockfighting-gold);
    transition: transform 0.3s ease;
}

.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
    transform: rotate(45deg);
}

.page-cockfighting__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: var(--page-cockfighting-text-secondary);
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .page-cockfighting__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-cockfighting__content-wrapper--reverse {
        flex-direction: column;
    }

    .page-cockfighting__image-left,
    .page-cockfighting__image-right {
        width: 100%;
        max-width: 600px;
        margin: 20px auto;
    }

    .page-cockfighting__feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-section,
    .page-cockfighting__about-section,
    .page-cockfighting__why-choose-section,
    .page-cockfighting__how-to-play-section,
    .page-cockfighting__types-section,
    .page-cockfighting__promotions-section,
    .page-cockfighting__live-features-section,
    .page-cockfighting__responsible-gambling-section,
    .page-cockfighting__faq-section,
    .page-cockfighting__cta-section {
        padding: 40px 15px;
    }

    .page-cockfighting__hero-title {
        font-size: 2.2rem;
    }

    .page-cockfighting__hero-description {
        font-size: 1rem;
    }

    .page-cockfighting__section-title {
        font-size: 2rem;
    }

    .page-cockfighting__section-description {
        font-size: 0.95rem;
    }

    .page-cockfighting__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-cockfighting__btn-primary,
    .page-cockfighting__btn-secondary,
    .page-cockfighting a[class*="button"],
    .page-cockfighting 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;
    }

    .page-cockfighting__hero-cta-buttons,
    .page-cockfighting__cta-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-cockfighting__card {
        padding: 20px;
    }

    .page-cockfighting__card-title {
        font-size: 1.3rem;
    }

    .page-cockfighting__card-description {
        font-size: 0.9rem;
    }

    .page-cockfighting__step-card {
        padding: 20px;
    }

    .page-cockfighting__step-title {
        font-size: 1.2rem;
    }

    .page-cockfighting__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
        overflow: hidden !important;
    }

    .page-cockfighting video,
    .page-cockfighting__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-cockfighting__section,
    .page-cockfighting__card,
    .page-cockfighting__container,
    .page-cockfighting__image-left,
    .page-cockfighting__image-right,
    .page-cockfighting__video-section,
    .page-cockfighting__video-container,
    .page-cockfighting__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden;
    }
    .page-cockfighting__hero-section {
        padding-top: 10px !important;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__hero-title {
        font-size: 1.8rem;
    }

    .page-cockfighting__section-title {
        font-size: 1.6rem;
    }

    .page-cockfighting__card-title {
        font-size: 1.2rem;
    }

    .page-cockfighting__step-title {
        font-size: 1.1rem;
    }
}