:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --background-color: #0A0A0A;
    --card-background: #111111;
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --dark-text: #333333;
    --light-text: #ffffff;
}

.page-cockfighting {
    background-color: var(--background-color);
    color: var(--text-main-color);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-bottom: 50px;
}

.page-cockfighting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-cockfighting__section {
    padding: 60px 0;
}

.page-cockfighting__section-title {
    font-size: 3em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-cockfighting__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px;
    overflow: hidden;
}

.page-cockfighting__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

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

.page-cockfighting__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 0 25px var(--glow-color);
}

.page-cockfighting__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-cockfighting__hero-content h1 {
    color: var(--secondary-color);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(255, 211, 107, 0.7);
    line-height: 1.2;
}

.page-cockfighting__hero-content p {
    font-size: 1.2em;
    color: var(--text-main-color);
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-cockfighting__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-cockfighting__cta-button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-cockfighting__grid--three-cols {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-cockfighting__grid--two-cols {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-cockfighting__card,
.page-cockfighting__promo-card,
.page-cockfighting__advantage-item {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-main-color);
}

.page-cockfighting__card:hover,
.page-cockfighting__promo-card:hover,
.page-cockfighting__advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

.page-cockfighting__card img,
.page-cockfighting__promo-card img,
.page-cockfighting__advantage-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border-color);
}

.page-cockfighting__card-title {
    font-size: 1.6em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-cockfighting__card p {
    font-size: 1em;
    color: var(--text-main-color);
}

.page-cockfighting__steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting__step {
    flex: 1 1 calc(33% - 30px);
    min-width: 280px;
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-main-color);
}

.page-cockfighting__step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

.page-cockfighting__step img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.page-cockfighting__step h3 {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-cockfighting__step p {
    font-size: 1em;
    color: var(--text-main-color);
}

.page-cockfighting__step a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-cockfighting__advantage-item h3 {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-cockfighting__advantage-item p {
    font-size: 1em;
    color: var(--text-main-color);
}

.page-cockfighting__promo-card {
    text-align: left;
}

.page-cockfighting__promo-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.page-cockfighting__promo-card h3 {
    font-size: 1.6em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-cockfighting__promo-card p {
    font-size: 1em;
    color: var(--text-main-color);
}

.page-cockfighting__center-button {
    text-align: center;
    margin-top: 50px;
}

.page-cockfighting__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-cockfighting__tip-list li {
    background-color: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    color: var(--text-main-color);
}

.page-cockfighting__tip-list li h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-cockfighting__tip-list li p {
    font-size: 1em;
    color: var(--text-main-color);
}

.page-cockfighting__container--flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.page-cockfighting__download-content {
    flex: 1;
    min-width: 300px;
}

.page-cockfighting__download-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.page-cockfighting__download-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-main-color);
}

.page-cockfighting__download-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 250px;
}

.page-cockfighting__download-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--glow-color);
    border: 1px solid var(--border-color);
}

details.page-cockfighting__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-background);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
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;
    color: var(--text-main-color);
}
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: rgba(var(--primary-color), 0.1);
}
.page-cockfighting__faq-qtext {
    flex: 1;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--secondary-color);
}
.page-cockfighting__faq-toggle {
    font-size: 2em;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 30px;
    text-align: center;
}
details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
    padding: 0 25px 20px;
    background: rgba(var(--card-background), 0.8);
    border-radius: 0 0 10px 10px;
    color: var(--text-main-color);
    font-size: 1em;
}
details.page-cockfighting__faq-item .page-cockfighting__faq-answer p {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .page-cockfighting__section-title {
        font-size: 2.5em;
    }
    .page-cockfighting__hero-content h1 {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }
    .page-cockfighting__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-cockfighting__grid--three-cols,
    .page-cockfighting__grid--two-cols {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-cockfighting__steps {
        flex-direction: column;
        align-items: center;
    }
    .page-cockfighting__step {
        flex: 1 1 100%;
        max-width: 500px;
    }
    .page-cockfighting__container--flex {
        flex-direction: column;
    }
    .page-cockfighting__download-content h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-cockfighting__hero-image img {
        border-radius: 4px;
    }
    .page-cockfighting__hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
        margin-bottom: 15px;
    }
    .page-cockfighting__hero-content p {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-cockfighting__cta-button {
        padding: 12px 30px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-cockfighting__section {
        padding: 40px 0;
    }
    .page-cockfighting__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .page-cockfighting__container {
        padding: 15px;
    }
    
    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-cockfighting__section,
    .page-cockfighting__card,
    .page-cockfighting__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-cockfighting__promo-card img {
        height: auto;
    }
    .page-cockfighting__download-content h2 {
        text-align: center;
    }
    .page-cockfighting__download-content p {
        text-align: center;
    }

    details.page-cockfighting__faq-item summary.page-cockfighting__faq-question { padding: 15px; }
    .page-cockfighting__faq-qtext { font-size: 1em; }
    details.page-cockfighting__faq-item .page-cockfighting__faq-answer { padding: 0 15px 15px; }
    .page-cockfighting__faq-toggle { font-size: 1.8em; width: 25px;}

    .page-cockfighting__cta-buttons,
    .page-cockfighting__button-group,
    .page-cockfighting__btn-container {
      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__cta-buttons {
      display: flex;
      flex-direction: column;
    }
}

.page-cockfighting img {
    min-width: 200px;
    min-height: 200px;
    filter: none;
}

.page-cockfighting__step img {
    min-
    min-
    max-width: 250px;
}
.page-cockfighting__card img,
.page-cockfighting__promo-card img,
.page-cockfighting__advantage-item img,
.page-cockfighting__hero-image img,
.page-cockfighting__download-image img {
    min-width: 200px;
    min-height: 200px;
}