/* style/cockfighting.css */
:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --background-color-main: #0A0A0A;
    --card-background-color: #111111;
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

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

.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; /* Small top padding, body handles header offset */
    overflow: hidden;
}

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

.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;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 20px rgba(255, 211, 107, 0.3);
}

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

.page-cockfighting__main-title {
    font-size: 3.2em;
    font-weight: bold;
    color: var(--text-main-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.6);
    line-height: 1.2;
}

.page-cockfighting__description {
    font-size: 1.2em;
    color: var(--text-main-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-cockfighting__cta-button:hover {
    background: linear-gradient(180deg, #FFE082 0%, #E8B93D 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 211, 107, 0.6);
}

.page-cockfighting__cta-button--bottom {
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-cockfighting__section {
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

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

.page-cockfighting__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(255, 211, 107, 0.4);
}

.page-cockfighting__text-block {
    font-size: 1.05em;
    color: var(--text-main-color);
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
}

.page-cockfighting__text-block--note {
    font-style: italic;
    color: var(--secondary-color);
    text-align: center;
    margin-top: 30px;
}

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

.page-cockfighting__card {
    background-color: var(--card-background-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 211, 107, 0.2);
}

.page-cockfighting__card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    display: block;
}

.page-cockfighting__card-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(255, 211, 107, 0.3);
}

.page-cockfighting__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.page-cockfighting__list li {
    margin-bottom: 10px;
    color: var(--text-main-color);
    position: relative;
    padding-left: 25px;
}

.page-cockfighting__list li::before {
    content: '•';
    color: var(--secondary-color);
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

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

.page-cockfighting__step-card {
    background-color: var(--card-background-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: background-color 0.3s ease;
}

.page-cockfighting__step-card:hover {
    background-color: #1a1a1a;
}

.page-cockfighting__step-title {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-shadow: 0 0 3px rgba(255, 211, 107, 0.2);
}

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

.page-cockfighting__image-center {
    margin: 40px auto;
    max-width: 1000px;
    text-align: center;
}

.page-cockfighting__image-center img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 15px rgba(255, 211, 107, 0.3);
    display: block;
    margin: 0 auto;
}

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

.page-cockfighting__advantage-item {
    background-color: var(--card-background-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-cockfighting__advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 211, 107, 0.2);
}

.page-cockfighting__advantage-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(255, 211, 107, 0.3);
}

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

.page-cockfighting__image-full-width {
    margin-top: 50px;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 0 15px rgba(255, 211, 107, 0.3);
}

.page-cockfighting__image-full-width img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.page-cockfighting__tip-item {
    background-color: var(--card-background-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.page-cockfighting__tip-title {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-shadow: 0 0 3px rgba(255, 211, 107, 0.2);
}

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

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

details.page-cockfighting__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-background-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
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;
}
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: #1a1a1a;
}
.page-cockfighting__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main-color);
}
.page-cockfighting__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--secondary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  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 25px 25px;
  background: #1a1a1a;
  border-radius: 0 0 12px 12px;
  color: var(--text-main-color);
  font-size: 0.95em;
  line-height: 1.7;
}

.page-cockfighting__faq-answer p {
    margin-bottom: 0;
}

.page-cockfighting__conclusion-content {
    max-width: 900px;
}

.highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-cockfighting__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

    .page-cockfighting__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }

    .page-cockfighting__description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-cockfighting__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        margin-top: 20px;
        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: 50px 15px;
    }

    .page-cockfighting__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-cockfighting__text-block {
        font-size: 0.95em;
    }

    .page-cockfighting__grid-layout,
    .page-cockfighting__steps-layout,
    .page-cockfighting__grid-advantages,
    .page-cockfighting__tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-cockfighting__card,
    .page-cockfighting__step-card,
    .page-cockfighting__advantage-item,
    .page-cockfighting__tip-item {
        padding: 20px;
    }

    .page-cockfighting__card-title,
    .page-cockfighting__step-title,
    .page-cockfighting__advantage-title,
    .page-cockfighting__tip-title {
        font-size: 1.3em;
    }

    .page-cockfighting__list li {
        font-size: 0.9em;
    }

    .page-cockfighting__image-center {
        margin: 30px auto;
    }

    .page-cockfighting__image-center img,
    .page-cockfighting__image-full-width img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-cockfighting__image-full-width {
        margin-top: 30px;
    }

    details.page-cockfighting__faq-item summary.page-cockfighting__faq-question {
        padding: 15px 20px;
    }

    .page-cockfighting__faq-qtext {
        font-size: 1em;
    }

    .page-cockfighting__faq-toggle {
        font-size: 1.5em;
        width: 25px;
    }

    details.page-cockfighting__faq-item .page-cockfighting__faq-answer {
        padding: 0 20px 20px;
    }
    
    .page-cockfighting__container {
        padding: 0 15px;
    }
}