/* style/reputable-cockfighting-website-security-licenses.css */

:root {
    --primary-color: #8B0000; /* Deep Red */
    --secondary-color: #FFD700; /* Gold */
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #0d0d0d;
    --bg-light: #f1f3f5;
    --card-bg: #1a1a1a; /* Slightly lighter than body for cards */
    --border-color: #333;
    --accent-blue: #0066cc;
}

.page-reputable-cockfighting-website-security-licenses {
    font-family: 'Arial', sans-serif;
    color: var(--text-light); /* Dark body background, so light text */
    line-height: 1.7;
    background-color: var(--bg-dark);
    padding-top: 120px; /* To clear fixed header on desktop */
}

.page-reputable-cockfighting-website-security-licenses__hero-banner {
    background: linear-gradient(135deg, var(--primary-color), #4a0000); /* Darker red gradient */
    padding: 80px 20px;
    text-align: center;
    color: var(--text-light);
    border-bottom: 5px solid var(--secondary-color);
}

.page-reputable-cockfighting-website-security-licenses__hero-title {
    font-size: 3.2em;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-reputable-cockfighting-website-security-licenses__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #f0f0f0;
}

.page-reputable-cockfighting-website-security-licenses__hero-description a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-reputable-cockfighting-website-security-licenses__hero-description a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.page-reputable-cockfighting-website-security-licenses__cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-reputable-cockfighting-website-security-licenses__cta-button:hover {
    background: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-reputable-cockfighting-website-security-licenses__cta-button--small {
    padding: 10px 25px;
    font-size: 1em;
}

.page-reputable-cockfighting-website-security-licenses__section {
    padding: 60px 20px;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.page-reputable-cockfighting-website-security-licenses__section:nth-of-type(even) {
    background-color: #151515; /* Slightly different background for alternating sections */
}

.page-reputable-cockfighting-website-security-licenses__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-reputable-cockfighting-website-security-licenses__heading {
    font-size: 2.2em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.page-reputable-cockfighting-website-security-licenses__sub-heading {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.3);
}

.page-reputable-cockfighting-website-security-licenses__content-block p {
    margin-bottom: 1.5em;
    font-size: 1.05em;
    color: #f0f0f0;
}

.page-reputable-cockfighting-website-security-licenses__content-block p a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-reputable-cockfighting-website-security-licenses__content-block p a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.page-reputable-cockfighting-website-security-licenses__image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-reputable-cockfighting-website-security-licenses__image--left {
    float: left;
    margin-right: 30px;
}

.page-reputable-cockfighting-website-security-licenses__image--right {
    float: right;
    margin-left: 30px;
}

.page-reputable-cockfighting-website-security-licenses__content-block::after {
    content: '';
    display: table;
    clear: both;
}

.page-reputable-cockfighting-website-security-licenses__checklist {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

.page-reputable-cockfighting-website-security-licenses__checklist li {
    background: rgba(255, 255, 255, 0.05);
    border-left: 5px solid var(--secondary-color);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1.05em;
    color: #f0f0f0;
}

.page-reputable-cockfighting-website-security-licenses__checklist li a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-reputable-cockfighting-website-security-licenses__checklist li a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-reputable-cockfighting-website-security-licenses__faq-section {
    background-color: var(--bg-dark);
    padding: 60px 20px;
}

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

.page-reputable-cockfighting-website-security-licenses__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid #3a3a3a;
}

.page-reputable-cockfighting-website-security-licenses__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;
    color: #ccc;
}

.page-reputable-cockfighting-website-security-licenses__faq-item.active .page-reputable-cockfighting-website-security-licenses__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: #252525;
    border-radius: 0 0 5px 5px;
    border-top: 1px solid #3a3a3a;
}

.page-reputable-cockfighting-website-security-licenses__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #1a1a1a;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-reputable-cockfighting-website-security-licenses__faq-question:hover {
    background: #2a2a2a;
    border-color: #555;
}

.page-reputable-cockfighting-website-security-licenses__faq-question:active {
    background: #3a3a3a;
}

.page-reputable-cockfighting-website-security-licenses__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--secondary-color);
}

.page-reputable-cockfighting-website-security-licenses__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: var(--text-light);
    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-security-licenses__faq-item.active .page-reputable-cockfighting-website-security-licenses__faq-toggle {
    color: var(--primary-color);
    transform: rotate(45deg);
}

.page-reputable-cockfighting-website-security-licenses__conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-reputable-cockfighting-website-security-licenses__conclusion-text {
    font-size: 1.1em;
    max-width: 900px;
    margin: 30px auto 40px auto;
    color: #f0f0f0;
}

.page-reputable-cockfighting-website-security-licenses__conclusion-text a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-reputable-cockfighting-website-security-licenses__conclusion-text a:hover {
    color: #ffd700;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-reputable-cockfighting-website-security-licenses__image--left,
    .page-reputable-cockfighting-website-security-licenses__image--right {
        float: none;
        margin: 30px auto !important;
    }
}

@media (max-width: 768px) {
    .page-reputable-cockfighting-website-security-licenses {
        padding-top: 100px !important; /* Mobile fixed header adjustment */
        font-size: 15px;
        line-height: 1.6;
    }

    .page-reputable-cockfighting-website-security-licenses__hero-banner {
        padding: 60px 15px;
    }

    .page-reputable-cockfighting-website-security-licenses__hero-title {
        font-size: 2.2em;
    }

    .page-reputable-cockfighting-website-security-licenses__hero-description {
        font-size: 1em;
    }

    .page-reputable-cockfighting-website-security-licenses__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-reputable-cockfighting-website-security-licenses__section {
        padding: 40px 15px;
    }

    .page-reputable-cockfighting-website-security-licenses__heading {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-reputable-cockfighting-website-security-licenses__sub-heading {
        font-size: 1.3em;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-reputable-cockfighting-website-security-licenses__content-block p,
    .page-reputable-cockfighting-website-security-licenses__checklist li,
    .page-reputable-cockfighting-website-security-licenses__conclusion-text {
        font-size: 1em;
    }

    /* Mobile image responsiveness */
    .page-reputable-cockfighting-website-security-licenses img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 20px auto !important;
    }
    .page-reputable-cockfighting-website-security-licenses__container,
    .page-reputable-cockfighting-website-security-licenses__content-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }
    
    .page-reputable-cockfighting-website-security-licenses__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .page-reputable-cockfighting-website-security-licenses__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    
    .page-reputable-cockfighting-website-security-licenses__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    
    .page-reputable-cockfighting-website-security-licenses__faq-answer {
        padding: 0 15px;
    }
    
    .page-reputable-cockfighting-website-security-licenses__faq-item.active .page-reputable-cockfighting-website-security-licenses__faq-answer {
        padding: 15px !important;
    }
}