:root {
    --primary-color: #C91F17;
    --secondary-color: #E53935;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
    --card-bg: #D32F2F;
    --background-section: #B71C1C;
    --text-main: #FFF5E1;
    --border-color: #F2B544;
    --glow-color: #FFCC66;
    --gold-color: #F4D34D;
    --deep-red: #7A0E0E;
    --light-grey-bg: #f9f9f9;
    --dark-text: #333333;
    --light-text: #ffffff;
}

.page-cockfighting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: transparent;
}

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

.page-cockfighting__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px;
    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-wrapper {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__hero-image-wrapper img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.page-cockfighting__hero-image-wrapper img:hover {
    transform: scale(1.02);
}

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

.page-cockfighting__hero-content h1 {
    font-size: clamp(2em, 4vw, 3.5em);
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.page-cockfighting__hero-content p {
    font-size: 1.15em;
    color: var(--dark-text);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-cockfighting__cta-button--small {
    padding: 12px 30px;
    font-size: 1em;
    margin-top: 15px;
}

.page-cockfighting__cta-button--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
}

.page-cockfighting__section-title {
    font-size: clamp(1.8em, 3vw, 2.8em);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-cockfighting__text-block {
    font-size: 1.05em;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--dark-text);
}

.page-cockfighting__introduction-section {
    padding: 60px 0;
    background-color: var(--light-grey-bg);
}

.page-cockfighting__image-content-block {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-cockfighting__image-content-block img {
    flex: 1;
    max-width: 50%;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__image-content-block p {
    flex: 1;
    max-width: 50%;
    font-size: 1.05em;
    text-align: justify;
}

.page-cockfighting__dark-section {
    background-color: var(--background-section);
    color: var(--text-main);
    padding: 60px 0;
}

.page-cockfighting__dark-section .page-cockfighting__section-title {
    color: var(--gold-color);
}

.page-cockfighting__dark-section .page-cockfighting__text-block {
    color: var(--text-main);
}

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

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

.page-cockfighting__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

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

.page-cockfighting__advantages-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.page-cockfighting__feature-item {
    background: var(--light-grey-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.page-cockfighting__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__feature-item img {
    
    
    margin-bottom: 20px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-cockfighting__feature-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-cockfighting__feature-description {
    font-size: 0.95em;
    color: var(--dark-text);
}

.page-cockfighting__how-to-play-section {
    padding: 60px 0;
    background-color: var(--light-grey-bg);
}

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

.page-cockfighting__step-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e0e0e0;
}

.page-cockfighting__step-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-cockfighting__step-description {
    font-size: 0.95em;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.page-cockfighting__btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background: #ffffff;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 0.95em;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-cockfighting__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-cockfighting__promotions-section {
    padding: 60px 0;
    background-color: var(--background-section);
}

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

.page-cockfighting__promo-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.page-cockfighting__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-cockfighting__promo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border-color);
}

.page-cockfighting__promo-title {
    font-size: 1.4em;
    color: var(--gold-color);
    margin: 20px 15px 10px;
    font-weight: 600;
}

.page-cockfighting__promo-description {
    font-size: 0.95em;
    color: var(--text-main);
    padding: 0 15px 20px;
}

.page-cockfighting__promo-card .page-cockfighting__btn-primary {
    display: inline-block;
    padding: 10px 25px;
    background: var(--button-gradient);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.95em;
    font-weight: bold;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-cockfighting__promo-card .page-cockfighting__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
}

.page-cockfighting__faq-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-cockfighting__faq-list {
    margin-top: 40px;
}

details.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--dark-text);
}
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: #f5f5f5;
}
.page-cockfighting__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--primary-color);
}
.page-cockfighting__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}
details.page-cockfighting__faq-item[open] .page-cockfighting__faq-toggle {
    transform: rotate(45deg);
}
details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
  padding: 0 20px 20px;
  background: var(--light-grey-bg);
  border-radius: 0 0 8px 8px;
  color: var(--dark-text);
  font-size: 1em;
}

.page-cockfighting__call-to-action-section {
    padding: 80px 0;
    background-color: var(--background-section);
    text-align: center;
    color: var(--text-main);
}

.page-cockfighting__call-to-action-section .page-cockfighting__section-title {
    color: var(--gold-color);
}

.page-cockfighting__call-to-action-section .page-cockfighting__text-block {
    color: var(--text-main);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page-cockfighting__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

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

.page-cockfighting__button-group .page-cockfighting__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.page-cockfighting__button-group .page-cockfighting__btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: #ffffff;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-cockfighting__button-group .page-cockfighting__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}


@media (max-width: 1024px) {
    .page-cockfighting__hero-content h1 {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-cockfighting__image-content-block {
        flex-direction: column;
        text-align: center;
    }
    .page-cockfighting__image-content-block img,
    .page-cockfighting__image-content-block p {
        max-width: 100%;
    }
    .page-cockfighting__features-grid,
    .page-cockfighting__steps-grid,
    .page-cockfighting__promo-grid,
    .page-cockfighting__grid-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-cockfighting__container {
        padding: 0 15px;
    }

    .page-cockfighting__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-cockfighting__hero-image-wrapper {
        border-radius: 8px;
        margin-bottom: 20px;
    }
    
    .page-cockfighting__hero-content h1 {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-cockfighting__hero-content p {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-cockfighting__cta-button {
        padding: 12px 30px;
        font-size: 1em;
        margin-top: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-cockfighting__section-title {
        font-size: clamp(1.6em, 6vw, 2.2em);
        margin-bottom: 30px;
    }

    .page-cockfighting__introduction-section,
    .page-cockfighting__types-section,
    .page-cockfighting__advantages-section,
    .page-cockfighting__how-to-play-section,
    .page-cockfighting__promotions-section,
    .page-cockfighting__faq-section,
    .page-cockfighting__call-to-action-section {
        padding: 40px 0;
    }

    .page-cockfighting__image-content-block {
        gap: 20px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .page-cockfighting__card,
    .page-cockfighting__feature-item,
    .page-cockfighting__step-item,
    .page-cockfighting__promo-card {
        padding: 20px;
        border-radius: 8px;
    }

    .page-cockfighting__feature-item img {
        
        
        margin-bottom: 15px;
    }

    .page-cockfighting__promo-card img {
        
    }

    .page-cockfighting__promo-title {
        font-size: 1.2em;
        margin: 15px 10px 8px;
    }

    .page-cockfighting__promo-description {
        padding: 0 10px 15px;
    }

    .page-cockfighting__btn-secondary,
    .page-cockfighting__promo-card .page-cockfighting__btn-primary {
        padding: 8px 20px;
        font-size: 0.9em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-cockfighting__button-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-cockfighting__button-group .page-cockfighting__cta-button {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    details.page-cockfighting__faq-item summary.page-cockfighting__faq-question { padding: 15px; }
    .page-cockfighting__faq-qtext { font-size: 1em; }
    .page-cockfighting__faq-toggle { font-size: 20px; }
    details.page-cockfighting__faq-item .page-cockfighting__faq-answer { padding: 0 15px 15px; }
}

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

@media (max-width: 768px) {
    .page-cockfighting img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    
    .page-cockfighting__section,
    .page-cockfighting__card,
    .page-cockfighting__container,
    .page-cockfighting__hero-section,
    .page-cockfighting__introduction-section,
    .page-cockfighting__types-section,
    .page-cockfighting__advantages-section,
    .page-cockfighting__how-to-play-section,
    .page-cockfighting__promotions-section,
    .page-cockfighting__faq-section,
    .page-cockfighting__call-to-action-section,
    .page-cockfighting__button-group {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-cockfighting__cta-button,
    .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__button-group {
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap;
    }
}

.page-cockfighting p,
.page-cockfighting li,
.page-cockfighting__text-block,
.page-cockfighting__feature-description,
.page-cockfighting__step-description,
.page-cockfighting__faq-answer p {
    color: var(--dark-text);
}

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

.page-cockfighting__dark-section .page-cockfighting__section-title {
    color: var(--gold-color);
}

.page-cockfighting__card {
    background: var(--card-bg);
    color: var(--text-main);
    border-color: var(--border-color);
}

.page-cockfighting__card-title {
    color: var(--gold-color);
}

.page-cockfighting__btn-primary {
    background: var(--button-gradient);
    color: var(--light-text);
}

.page-cockfighting__btn-secondary {
    background: #ffffff;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
    color: var(--dark-text);
}
.page-cockfighting__faq-qtext {
    color: var(--primary-color);
}
.page-cockfighting__faq-toggle {
    color: var(--primary-color);
}
details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
    background: var(--light-grey-bg);
    color: var(--dark-text);
}

.page-cockfighting h1, .page-cockfighting h2, .page-cockfighting h3, .page-cockfighting h4, .page-cockfighting h5, .page-cockfighting h6 {
    color: var(--primary-color);
}

.page-cockfighting__dark-section h1,
.page-cockfighting__dark-section h2,
.page-cockfighting__dark-section h3 {
    color: var(--gold-color);
}

.page-cockfighting__promo-title {
    color: var(--gold-color);
}

.page-cockfighting__feature-title {
    color: var(--primary-color);
}

.page-cockfighting__step-title {
    color: var(--primary-color);
}