/* style/resources-how-to-choose-reliable-c1-cockfighting-platform.css */

:root {
    --primary-color: #0A192F;
    --secondary-color: #FFD700;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f4f4f4;
    --card-background: #ffffff;
    --border-color: #e0e0e0;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark); /* Default text color for light body background */
    background-color: var(--background-light);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__container--center {
    text-align: center;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__section-title--light {
    color: var(--text-color-light);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__text-block {
    margin-bottom: 20px;
    font-size: 17px;
    text-align: justify;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__text-block--light {
    color: var(--text-color-light);
}

/* HERO Section */
.page-resources-how-to-choose-reliable-c1-cockfighting-platform__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background: linear-gradient(135deg, var(--primary-color), rgba(255, 215, 0, 0.7));
    color: var(--text-color-light);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__main-title {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__description {
    font-size: 19px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__cta-button:hover {
    background: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__cta-button--dark {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__cta-button--dark:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Content Sections */
.page-resources-how-to-choose-reliable-c1-cockfighting-platform__content-section {
    padding: 80px 0;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__light-bg {
    background-color: var(--background-light);
    color: var(--text-color-dark);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__card {
    background: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-color-dark);
    border: 1px solid var(--border-color);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__card-image {
    width: 100%;
    max-width: 400px; /* Adjust as needed */
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__card-text {
    font-size: 16px;
    text-align: justify;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__list-item {
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    font-size: 17px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    display: flex;
    align-items: flex-start;
    color: var(--text-color-dark);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__list-item::before {
    content: '⚠️'; /* Unicode character for warning */
    margin-right: 15px;
    font-size: 20px;
    line-height: 1.6;
    flex-shrink: 0;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__list-item--light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-color-light);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__list-item--light::before {
    content: '✅'; /* Checkmark for positive points */
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__list-strong {
    font-weight: bold;
    color: var(--primary-color);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__list-strong--light {
    color: var(--secondary-color);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__ordered-list {
    list-style: decimal;
    padding-left: 25px;
    margin-top: 30px;
    font-size: 17px;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__ordered-list .page-resources-how-to-choose-reliable-c1-cockfighting-platform__list-item {
    background: none;
    border: none;
    box-shadow: none;
    padding: 10px 0;
    margin-bottom: 10px;
    align-items: center;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__ordered-list .page-resources-how-to-choose-reliable-c1-cockfighting-platform__list-item::before {
    content: counter(list-item) ". ";
    counter-increment: list-item;
    font-weight: bold;
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 18px;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__ordered-list--light .page-resources-how-to-choose-reliable-c1-cockfighting-platform__list-item {
    color: var(--text-color-light);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__ordered-list--light .page-resources-how-to-choose-reliable-c1-cockfighting-platform__list-item::before {
    color: var(--secondary-color);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__call-to-action {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color-light);
    text-align: center;
    padding: 80px 20px;
}

/* FAQ Section */
.page-resources-how-to-choose-reliable-c1-cockfighting-platform__faq-list {
    margin-top: 40px;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 15px;
    opacity: 0;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__faq-item.active .page-resources-how-to-choose-reliable-c1-cockfighting-platform__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: var(--card-background);
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__faq-question:active {
    background: #eeeeee;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--primary-color);
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-color);
    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: 32px;
    height: 32px;
}

.page-resources-how-to-choose-reliable-c1-cockfighting-platform__faq-item.active .page-resources-how-to-choose-reliable-c1-cockfighting-platform__faq-toggle {
    color: var(--secondary-color);
    transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__main-title {
        font-size: 38px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__description {
        font-size: 17px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__section-title {
        font-size: 28px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__card-title {
        font-size: 20px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__card-text,
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__list-item {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__main-title {
        font-size: 32px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__description {
        font-size: 16px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__content-section {
        padding: 50px 0;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__grid {
        grid-template-columns: 1fr;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__card {
        padding: 25px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__card-image {
        height: 200px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__list-item {
        font-size: 15px;
        padding: 15px 20px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__list-item::before {
        font-size: 18px;
        margin-right: 10px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__ordered-list {
        padding-left: 20px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__ordered-list .page-resources-how-to-choose-reliable-c1-cockfighting-platform__list-item {
        padding: 8px 0;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__faq-question {
        padding: 15px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__faq-question h3 {
        font-size: 16px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__faq-toggle {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__faq-item.active .page-resources-how-to-choose-reliable-c1-cockfighting-platform__faq-answer {
        padding: 15px !important;
    }
    /* Mobile image and container responsiveness */
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__section,
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__card,
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__button-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__main-title {
        font-size: 28px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__description {
        font-size: 15px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__cta-button {
        font-size: 15px;
        padding: 10px 25px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__section-title {
        font-size: 22px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__card-title {
        font-size: 18px;
    }
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__card-text,
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__list-item,
    .page-resources-how-to-choose-reliable-c1-cockfighting-platform__ordered-list .page-resources-how-to-choose-reliable-c1-cockfighting-platform__list-item {
        font-size: 14px;
    }
}