/* style/resources-67-cockfighting-platform-security.css */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --login-button-color: #EA7C07;
    --background-color: #FFFFFF;
    --black-color: #000000;
}

.page-resources-67-cockfighting-platform-security {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Assuming dark body background from shared.css */
    background-color: var(--dark-bg-1, #0d0d0d); /* Fallback if shared.css not loaded */
}

.page-resources-67-cockfighting-platform-security__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-67-cockfighting-platform-security__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px);
    box-sizing: border-box;
}

.page-resources-67-cockfighting-platform-security__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-67-cockfighting-platform-security__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-resources-67-cockfighting-platform-security__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    color: var(--text-light);
}

.page-resources-67-cockfighting-platform-security__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.page-resources-67-cockfighting-platform-security__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.page-resources-67-cockfighting-platform-security__btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.page-resources-67-cockfighting-platform-security__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    transform: translateY(-2px);
}

.page-resources-67-cockfighting-platform-security__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.page-resources-67-cockfighting-platform-security__sub-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-resources-67-cockfighting-platform-security__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-resources-67-cockfighting-platform-security__light-bg {
    background-color: var(--background-color);
    color: var(--text-dark);
    padding: 60px 0;
}

.page-resources-67-cockfighting-platform-security__dark-bg {
    background-color: var(--black-color);
    color: var(--text-light);
    padding: 60px 0;
}

.page-resources-67-cockfighting-platform-security__intro-section .page-resources-67-cockfighting-platform-security__section-title,
.page-resources-67-cockfighting-platform-security__fairness-section .page-resources-67-cockfighting-platform-security__section-title,
.page-resources-67-cockfighting-platform-security__benefits-section .page-resources-67-cockfighting-platform-security__section-title {
    color: var(--primary-color);
}

.page-resources-67-cockfighting-platform-security__intro-section .page-resources-67-cockfighting-platform-security__text-block,
.page-resources-67-cockfighting-platform-security__fairness-section .page-resources-67-cockfighting-platform-security__text-block,
.page-resources-67-cockfighting-platform-security__benefits-section .page-resources-67-cockfighting-platform-security__text-block {
    color: var(--text-dark);
}

.page-resources-67-cockfighting-platform-security__security-section .page-resources-67-cockfighting-platform-security__section-title,
.page-resources-67-cockfighting-platform-security__experience-section .page-resources-67-cockfighting-platform-security__section-title,
.page-resources-67-cockfighting-platform-security__faq-section .page-resources-67-cockfighting-platform-security__section-title {
    color: var(--secondary-color);
}

.page-resources-67-cockfighting-platform-security__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-resources-67-cockfighting-platform-security__feature-item {
    background-color: var(--background-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: var(--text-dark);
}

.page-resources-67-cockfighting-platform-security__feature-item:hover {
    transform: translateY(-5px);
}

.page-resources-67-cockfighting-platform-security__feature-icon {
    width: 100%; /* Ensure large image, not small icon */
    height: auto;
    max-width: 300px; /* Adjust as needed for card layout */
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
}

.page-resources-67-cockfighting-platform-security__feature-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-resources-67-cockfighting-platform-security__feature-description {
    font-size: 1em;
    color: var(--text-dark);
}

.page-resources-67-cockfighting-platform-security__image-text-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-resources-67-cockfighting-platform-security__image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-resources-67-cockfighting-platform-security__image-content {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-resources-67-cockfighting-platform-security__text-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-resources-67-cockfighting-platform-security__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-67-cockfighting-platform-security__benefits-item {
    background-color: var(--background-color);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.page-resources-67-cockfighting-platform-security__benefits-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-67-cockfighting-platform-security__cta-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    background-color: var(--primary-color);
    border-radius: 15px;
    padding: 50px;
    margin-top: 60px;
    color: var(--text-light);
}

.page-resources-67-cockfighting-platform-security__cta-image {
    flex: 1;
    min-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    min-height: 200px;
}

.page-resources-67-cockfighting-platform-security__cta-content {
    flex: 1.5;
    min-width: 300px;
}

.page-resources-67-cockfighting-platform-security__cta-title {
    font-size: 2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.page-resources-67-cockfighting-platform-security__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.page-resources-67-cockfighting-platform-security__faq-list {
    margin-top: 40px;
}

.page-resources-67-cockfighting-platform-security__faq-item {
    background-color: var(--background-color);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    color: var(--text-dark);
}

.page-resources-67-cockfighting-platform-security__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: var(--primary-color);
    color: var(--text-light);
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
}

.page-resources-67-cockfighting-platform-security__faq-question::-webkit-details-marker {
    display: none;
}

.page-resources-67-cockfighting-platform-security__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-resources-67-cockfighting-platform-security__faq-item[open] .page-resources-67-cockfighting-platform-security__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-67-cockfighting-platform-security__faq-answer {
    padding: 20px 25px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    font-size: 1em;
    line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-resources-67-cockfighting-platform-security__hero-title {
        font-size: 3em;
    }
    .page-resources-67-cockfighting-platform-security__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-67-cockfighting-platform-security {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-67-cockfighting-platform-security__hero-section {
        min-height: 400px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-resources-67-cockfighting-platform-security__hero-title {
        font-size: 2.2em;
    }
    .page-resources-67-cockfighting-platform-security__hero-description {
        font-size: 1em;
    }
    .page-resources-67-cockfighting-platform-security__btn-primary {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources-67-cockfighting-platform-security__section-title {
        font-size: 1.8em;
    }
    .page-resources-67-cockfighting-platform-security__sub-title {
        font-size: 1.5em;
    }
    .page-resources-67-cockfighting-platform-security__text-block {
        font-size: 0.95em;
    }
    .page-resources-67-cockfighting-platform-security__feature-grid,
    .page-resources-67-cockfighting-platform-security__image-text-layout,
    .page-resources-67-cockfighting-platform-security__benefits-list,
    .page-resources-67-cockfighting-platform-security__cta-section {
        flex-direction: column;
        gap: 20px;
    }
    .page-resources-67-cockfighting-platform-security__feature-item,
    .page-resources-67-cockfighting-platform-security__benefits-item {
        padding: 20px;
    }
    .page-resources-67-cockfighting-platform-security__cta-section {
        padding: 30px;
        text-align: center;
    }
    .page-resources-67-cockfighting-platform-security__cta-image {
        order: -1; /* Move image above text on mobile */
    }
    
    /* Mobile Image Responsive Rules */
    .page-resources-67-cockfighting-platform-security img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-67-cockfighting-platform-security__section,
    .page-resources-67-cockfighting-platform-security__card,
    .page-resources-67-cockfighting-platform-security__container,
    .page-resources-67-cockfighting-platform-security__image-wrapper,
    .page-resources-67-cockfighting-platform-security__text-wrapper,
    .page-resources-67-cockfighting-platform-security__cta-section,
    .page-resources-67-cockfighting-platform-security__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }
    
    /* Mobile Button Responsive Rules */
    .page-resources-67-cockfighting-platform-security__btn-primary,
    .page-resources-67-cockfighting-platform-security a[class*="button"],
    .page-resources-67-cockfighting-platform-security 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-67-cockfighting-platform-security__cta-buttons,
    .page-resources-67-cockfighting-platform-security__button-group,
    .page-resources-67-cockfighting-platform-security__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;
    }
    .page-resources-67-cockfighting-platform-security__cta-buttons {
        display: flex;
        flex-direction: column; 
    }
}

@media (max-width: 480px) {
    .page-resources-67-cockfighting-platform-security__hero-title {
        font-size: 1.8em;
    }
    .page-resources-67-cockfighting-platform-security__section-title {
        font-size: 1.5em;
    }
    .page-resources-67-cockfighting-platform-security__sub-title {
        font-size: 1.3em;
    }
}