/* style/reputable-cockfighting-website.css */
:root {
    --primary-color: #8B0000;
    --secondary-color: #FFD700;
    --text-color-dark-bg: #ffffff;
    --text-color-light-bg: #333333;
    --background-color-body: #0d0d0d;
    --background-color-light-grey: #f1f3f5;
    --border-color-light: #e0e0e0;
}

.page-reputable-cockfighting-website {
    color: var(--text-color-dark-bg); /* Main content text on dark body background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--background-color-body);
}

.page-reputable-cockfighting-website__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* --- Fixed Header Spacing --- */
.page-reputable-cockfighting-website__hero-intro-section {
    padding-top: 120px; /* Desktop: Adjust for fixed header */
}

/* --- General Section Styling --- */
.page-reputable-cockfighting-website__section-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--secondary-color); /* Gold color for main titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-reputable-cockfighting-website__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-reputable-cockfighting-website__section-description {
    font-size: 18px;
    color: var(--text-color-dark-bg);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- CTA Button Styling --- */
.page-reputable-cockfighting-website__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--text-color-dark-bg);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-reputable-cockfighting-website__cta-button:hover {
    background: var(--secondary-color);
    color: var(--text-color-light-bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-reputable-cockfighting-website__btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--text-color-dark-bg);
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-reputable-cockfighting-website__btn-primary:hover {
    background: #a30000;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-reputable-cockfighting-website__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--text-color-light-bg);
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-reputable-cockfighting-website__btn-secondary:hover {
    background: #e6c200;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* --- Hero Intro Section --- */
.page-reputable-cockfighting-website__hero-intro-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #a30000 100%);
    padding-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-reputable-cockfighting-website__hero-intro-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.page-reputable-cockfighting-website__hero-intro-content {
    padding: 40px 20px;
}

.page-reputable-cockfighting-website__main-title {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 900;
}

.page-reputable-cockfighting-website__subtitle {
    font-size: 20px;
    color: var(--text-color-dark-bg);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-reputable-cockfighting-website__hero-intro-image {
    width: 100%;
    max-width: 800px;
    margin-top: 40px;
}

.page-reputable-cockfighting-website__hero-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* --- Criteria Section --- */
.page-reputable-cockfighting-website__criteria-section {
    background-color: var(--background-color-light-grey);
    padding: 80px 0;
}

.page-reputable-cockfighting-website__criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-reputable-cockfighting-website__criterion-card {
    background-color: #ffffff;
    color: var(--text-color-light-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-reputable-cockfighting-website__criterion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-reputable-cockfighting-website__criterion-icon {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-reputable-cockfighting-website__criterion-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-reputable-cockfighting-website__criterion-text {
    font-size: 16px;
    line-height: 1.7;
}

/* --- Benefits Section --- */
.page-reputable-cockfighting-website__benefits-section {
    background-color: var(--background-color-body);
    padding: 80px 0;
}

.page-reputable-cockfighting-website__benefits-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-reputable-cockfighting-website__benefits-image {
    flex: 1;
    min-width: 400px;
}

.page-reputable-cockfighting-website__benefits-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-reputable-cockfighting-website__benefits-text {
    flex: 1;
    color: var(--text-color-dark-bg);
}

.page-reputable-cockfighting-website__benefits-text p {
    margin-bottom: 20px;
    font-size: 17px;
}

/* --- Register Section --- */
.page-reputable-cockfighting-website__register-section {
    background-color: var(--background-color-light-grey);
    padding: 80px 0;
    text-align: center;
}

.page-reputable-cockfighting-website__register-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-reputable-cockfighting-website__step-card {
    background-color: #ffffff;
    color: var(--text-color-light-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.page-reputable-cockfighting-website__step-icon {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-reputable-cockfighting-website__step-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-reputable-cockfighting-website__step-text {
    font-size: 16px;
    line-height: 1.7;
}

.page-reputable-cockfighting-website__cta-button--large {
    padding: 18px 50px;
    font-size: 20px;
}

/* --- Tips Section --- */
.page-reputable-cockfighting-website__tips-section {
    background-color: var(--background-color-body);
    padding: 80px 0;
}

.page-reputable-cockfighting-website__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-reputable-cockfighting-website__tip-card {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color-dark-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-reputable-cockfighting-website__tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-reputable-cockfighting-website__tip-image {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

.page-reputable-cockfighting-website__tip-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-reputable-cockfighting-website__tip-text {
    font-size: 16px;
    line-height: 1.7;
}

/* --- FAQ Section --- */
.page-reputable-cockfighting-website__faq-section {
    background-color: var(--background-color-light-grey);
    padding: 80px 0;
}

.page-reputable-cockfighting-website__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-reputable-cockfighting-website__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-reputable-cockfighting-website__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 15px;
    opacity: 0;
    color: var(--text-color-light-bg);
}

.page-reputable-cockfighting-website__faq-item.active .page-reputable-cockfighting-website__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
}

.page-reputable-cockfighting-website__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--border-color-light);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    color: var(--text-color-light-bg);
}

.page-reputable-cockfighting-website__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-reputable-cockfighting-website__faq-question:active {
    background: #eeeeee;
}

.page-reputable-cockfighting-website__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
}

.page-reputable-cockfighting-website__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-reputable-cockfighting-website__faq-item.active .page-reputable-cockfighting-website__faq-toggle {
    color: var(--primary-color);
    transform: rotate(180deg);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .page-reputable-cockfighting-website__section-title {
        font-size: 30px;
    }
    .page-reputable-cockfighting-website__section-description {
        font-size: 16px;
    }
    .page-reputable-cockfighting-website__benefits-content {
        flex-direction: column;
    }
    .page-reputable-cockfighting-website__benefits-image {
        min-width: unset;
        width: 100%;
    }
    .page-reputable-cockfighting-website__main-title {
        font-size: 40px;
    }
    .page-reputable-cockfighting-website__subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .page-reputable-cockfighting-website__hero-intro-section {
        padding-top: 100px !important; /* Mobile: Adjust for fixed header */
        padding-bottom: 60px;
    }
    .page-reputable-cockfighting-website__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-reputable-cockfighting-website__section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .page-reputable-cockfighting-website__section-description {
        font-size: 15px;
        margin-bottom: 40px;
    }
    .page-reputable-cockfighting-website__main-title {
        font-size: 32px;
    }
    .page-reputable-cockfighting-website__subtitle {
        font-size: 16px;
    }
    .page-reputable-cockfighting-website__cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    .page-reputable-cockfighting-website__hero-intro-image {
        margin-top: 30px;
    }
    .page-reputable-cockfighting-website__hero-intro-image img,
    .page-reputable-cockfighting-website__benefits-image img,
    .page-reputable-cockfighting-website__criterion-icon,
    .page-reputable-cockfighting-website__step-icon,
    .page-reputable-cockfighting-website__tip-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-reputable-cockfighting-website__criteria-section,
    .page-reputable-cockfighting-website__benefits-section,
    .page-reputable-cockfighting-website__register-section,
    .page-reputable-cockfighting-website__tips-section,
    .page-reputable-cockfighting-website__faq-section {
        padding: 60px 0;
    }
    .page-reputable-cockfighting-website__criterion-card,
    .page-reputable-cockfighting-website__step-card,
    .page-reputable-cockfighting-website__tip-card {
        padding: 25px;
    }
    .page-reputable-cockfighting-website__criterion-title,
    .page-reputable-cockfighting-website__step-title,
    .page-reputable-cockfighting-website__tip-title {
        font-size: 20px;
    }
    .page-reputable-cockfighting-website__criterion-text,
    .page-reputable-cockfighting-website__step-text,
    .page-reputable-cockfighting-website__tip-text {
        font-size: 15px;
    }
    .page-reputable-cockfighting-website__btn-primary,
    .page-reputable-cockfighting-website__btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
    .page-reputable-cockfighting-website__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-reputable-cockfighting-website__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    .page-reputable-cockfighting-website__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-reputable-cockfighting-website__faq-answer {
        padding: 0 15px;
    }
    .page-reputable-cockfighting-website__faq-item.active .page-reputable-cockfighting-website__faq-answer {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .page-reputable-cockfighting-website__main-title {
        font-size: 28px;
    }
    .page-reputable-cockfighting-website__subtitle {
        font-size: 15px;
    }
    .page-reputable-cockfighting-website__section-title {
        font-size: 24px;
    }
    .page-reputable-cockfighting-website__cta-button--large {
        padding: 15px 35px;
        font-size: 18px;
    }
}