/* style/resources-how-to-choose-reliable-cockfighting-platform.css */
:root {
    --primary-color: #D4AF37;
    --secondary-color: #8B0000;
    --text-on-dark: #ffffff;
    --text-on-light: #333333;
    --card-bg-dark: rgba(255, 255, 255, 0.1);
    --card-bg-light: #ffffff;
    --border-color: #e0e0e0;
}

.page-resources-how-to-choose-reliable-cockfighting-platform {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-on-dark); /* Body background is dark #0d0d0d, so text is light */
    background-color: transparent; /* Inherit from body */
}

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

.page-resources-how-to-choose-reliable-cockfighting-platform__section {
    padding: 60px 0;
    text-align: center;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__section-description {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-resources-how-to-choose-reliable-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);
    background: linear-gradient(135deg, var(--secondary-color) 0%, #330000 100%); /* Darker gradient for contrast */
}

.page-resources-how-to-choose-reliable-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-cockfighting-platform__hero-title {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-how-to-choose-reliable-cockfighting-platform__hero-description {
    font-size: 20px;
    color: var(--text-on-dark);
    margin-bottom: 30px;
    max-width: 900px;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.6);
}

/* General Card Styles */
.page-resources-how-to-choose-reliable-cockfighting-platform__card {
    background: var(--card-bg-dark);
    color: var(--text-on-dark);
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

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

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

/* Grid Layouts */
.page-resources-how-to-choose-reliable-cockfighting-platform__grid-two-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__section-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

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

.page-resources-how-to-choose-reliable-cockfighting-platform__feature-item {
    background: var(--card-bg-dark);
    color: var(--text-on-dark);
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.page-resources-how-to-choose-reliable-cockfighting-platform__feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.page-resources-how-to-choose-reliable-cockfighting-platform__feature-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

/* Warning Signs Section */
.page-resources-how-to-choose-reliable-cockfighting-platform__card--warning {
    background: rgba(255, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.page-resources-how-to-choose-reliable-cockfighting-platform__card--warning .page-resources-how-to-choose-reliable-cockfighting-platform__card-title {
    color: var(--secondary-color);
}

/* Expert Tips List */
.page-resources-how-to-choose-reliable-cockfighting-platform__tips-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 900px;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__tip-item {
    background: var(--card-bg-dark);
    color: var(--text-on-dark);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-align: left;
    border-left: 5px solid var(--primary-color);
}

.page-resources-how-to-choose-reliable-cockfighting-platform__tip-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

/* CTA Bottom Section */
.page-resources-how-to-choose-reliable-cockfighting-platform__cta-bottom {
    background: linear-gradient(90deg, var(--primary-color) 0%, #FFD700 100%);
    padding: 80px 0;
    color: var(--text-on-light); /* Text is dark on light background */
}

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

.page-resources-how-to-choose-reliable-cockfighting-platform__cta-bottom .page-resources-how-to-choose-reliable-cockfighting-platform__section-description {
    color: var(--text-on-light);
}

.page-resources-how-to-choose-reliable-cockfighting-platform__cta-bottom .page-resources-how-to-choose-reliable-cockfighting-platform__cta-button {
    background: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.page-resources-how-to-choose-reliable-cockfighting-platform__cta-bottom .page-resources-how-to-choose-reliable-cockfighting-platform__cta-button:hover {
    background: #FFD700;
    color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* FAQ Section */
.page-resources-how-to-choose-reliable-cockfighting-platform__faq {
    padding-bottom: 80px;
}

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

.page-resources-how-to-choose-reliable-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, opacity 0.4s ease;
    padding: 0 15px;
    opacity: 0;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__faq-item.active .page-resources-how-to-choose-reliable-cockfighting-platform__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: var(--card-bg-dark);
    border-radius: 0 0 5px 5px;
    text-align: left;
}

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

.page-resources-how-to-choose-reliable-cockfighting-platform__faq-question:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
}

.page-resources-how-to-choose-reliable-cockfighting-platform__faq-question:active {
    background: rgba(255, 255, 255, 0.2);
}

.page-resources-how-to-choose-reliable-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-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-cockfighting-platform__faq-item.active .page-resources-how-to-choose-reliable-cockfighting-platform__faq-toggle {
    color: var(--secondary-color);
    transform: rotate(45deg); /* Change to X */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-how-to-choose-reliable-cockfighting-platform__section-title {
        font-size: 32px;
    }
    .page-resources-how-to-choose-reliable-cockfighting-platform__hero-title {
        font-size: 40px;
    }
    .page-resources-how-to-choose-reliable-cockfighting-platform__hero-description {
        font-size: 18px;
    }
    .page-resources-how-to-choose-reliable-cockfighting-platform__cta-button {
        padding: 14px 35px;
        font-size: 18px;
    }
    .page-resources-how-to-choose-reliable-cockfighting-platform__card-title,
    .page-resources-how-to-choose-reliable-cockfighting-platform__feature-title,
    .page-resources-how-to-choose-reliable-cockfighting-platform__tip-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .page-resources-how-to-choose-reliable-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-cockfighting-platform__hero-title {
        font-size: 32px;
    }
    .page-resources-how-to-choose-reliable-cockfighting-platform__hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .page-resources-how-to-choose-reliable-cockfighting-platform__hero-image {
        margin-bottom: 20px;
        border-radius: 8px;
    }
    .page-resources-how-to-choose-reliable-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;
        margin-left: auto;
        margin-right: auto;
    }

    .page-resources-how-to-choose-reliable-cockfighting-platform__section {
        padding: 40px 0;
    }
    .page-resources-how-to-choose-reliable-cockfighting-platform__section-title {
        font-size: 28px;
    }
    .page-resources-how-to-choose-reliable-cockfighting-platform__section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .page-resources-how-to-choose-reliable-cockfighting-platform__grid-two-cols,
    .page-resources-how-to-choose-reliable-cockfighting-platform__feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-resources-how-to-choose-reliable-cockfighting-platform__card,
    .page-resources-how-to-choose-reliable-cockfighting-platform__feature-item,
    .page-resources-how-to-choose-reliable-cockfighting-platform__tip-item {
        padding: 20px;
    }
    .page-resources-how-to-choose-reliable-cockfighting-platform__card-title,
    .page-resources-how-to-choose-reliable-cockfighting-platform__feature-title,
    .page-resources-how-to-choose-reliable-cockfighting-platform__tip-title {
        font-size: 18px;
    }

    .page-resources-how-to-choose-reliable-cockfighting-platform__section-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 8px;
    }

    .page-resources-how-to-choose-reliable-cockfighting-platform__container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* FAQ specific mobile styles */
    .page-resources-how-to-choose-reliable-cockfighting-platform__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-resources-how-to-choose-reliable-cockfighting-platform__faq-question h3 {
        font-size: 16px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    .page-resources-how-to-choose-reliable-cockfighting-platform__faq-toggle {
        margin-left: 10px;
        width: 28px;
        height: 28px;
        font-size: 24px;
    }
    .page-resources-how-to-choose-reliable-cockfighting-platform__faq-answer {
        padding: 0 15px;
    }
    .page-resources-how-to-choose-reliable-cockfighting-platform__faq-item.active .page-resources-how-to-choose-reliable-cockfighting-platform__faq-answer {
        padding: 15px !important;
    }
}

/* Ensure all images are responsive and do not overflow */
.page-resources-how-to-choose-reliable-cockfighting-platform img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-resources-how-to-choose-reliable-cockfighting-platform__section,
.page-resources-how-to-choose-reliable-cockfighting-platform__card,
.page-resources-how-to-choose-reliable-cockfighting-platform__container {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden; /* Prevent horizontal overflow */
}

@media (max-width: 768px) {
    .page-resources-how-to-choose-reliable-cockfighting-platform img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-resources-how-to-choose-reliable-cockfighting-platform__section,
    .page-resources-how-to-choose-reliable-cockfighting-platform__card,
    .page-resources-how-to-choose-reliable-cockfighting-platform__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Button specific mobile styles */
    .page-resources-how-to-choose-reliable-cockfighting-platform__cta-button,
    .page-resources-how-to-choose-reliable-cockfighting-platform a[class*="button"],
    .page-resources-how-to-choose-reliable-cockfighting-platform 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-resources-how-to-choose-reliable-cockfighting-platform__cta-buttons,
    .page-resources-how-to-choose-reliable-cockfighting-platform__button-group,
    .page-resources-how-to-choose-reliable-cockfighting-platform__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;
    }
}

/* No CSS filter allowed for images */
.page-resources-how-to-choose-reliable-cockfighting-platform img {
    filter: none; /* Ensure no filter is applied */
}