:root {
    --primary-color: #0A2463;
    --secondary-color: #FFD700;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f9f9f9;
    --background-medium: #e0e0e0;
    --border-color: #e0e0e0;
}

.page-resources-thomo-cockfighting-live-platform {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--background-light);
}

.page-resources-thomo-cockfighting-live-platform .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-thomo-cockfighting-live-platform .section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    font-weight: bold;
    position: relative;
}

.page-resources-thomo-cockfighting-live-platform .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-resources-thomo-cockfighting-live-platform .text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-thomo-cockfighting-live-platform .text-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Hero Section */
.page-resources-thomo-cockfighting-live-platform .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a7a 100%);
    color: var(--text-color-light);
    overflow: hidden;
}

.page-resources-thomo-cockfighting-live-platform .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-resources-thomo-cockfighting-live-platform .hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-resources-thomo-cockfighting-live-platform .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-thomo-cockfighting-live-platform .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-resources-thomo-cockfighting-live-platform .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-thomo-cockfighting-live-platform .hero-description {
    font-size: 1.4em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color-light);
}

.page-resources-thomo-cockfighting-live-platform .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-thomo-cockfighting-live-platform .cta-button:hover {
    background: #ffc400;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Section Intro */
.page-resources-thomo-cockfighting-live-platform .section-intro {
    padding: 80px 0;
    background-color: var(--background-light);
}

.page-resources-thomo-cockfighting-live-platform .content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-resources-thomo-cockfighting-live-platform .text-content {
    flex: 2;
    font-size: 1.1em;
    color: var(--text-color-dark);
}

.page-resources-thomo-cockfighting-live-platform .text-content p {
    margin-bottom: 15px;
}

.page-resources-thomo-cockfighting-live-platform .image-content {
    flex: 1;
    text-align: center;
}

.page-resources-thomo-cockfighting-live-platform .image-content .img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Section Features */
.page-resources-thomo-cockfighting-live-platform .section-features {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-resources-thomo-cockfighting-live-platform .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-thomo-cockfighting-live-platform .feature-item {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--secondary-color);
}

.page-resources-thomo-cockfighting-live-platform .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-thomo-cockfighting-live-platform .feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-resources-thomo-cockfighting-live-platform .feature-heading {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-thomo-cockfighting-live-platform .feature-item p {
    font-size: 1em;
    color: var(--text-color-dark);
}

/* Section How To Join */
.page-resources-thomo-cockfighting-live-platform .section-how-to {
    padding: 80px 0;
    background-color: var(--background-medium);
}

.page-resources-thomo-cockfighting-live-platform .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-resources-thomo-cockfighting-live-platform .step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    padding-top: 60px; /* Space for step number */
}

.page-resources-thomo-cockfighting-live-platform .step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-thomo-cockfighting-live-platform .step-heading {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-thomo-cockfighting-live-platform .step-item p {
    font-size: 1em;
    color: var(--text-color-dark);
    margin-bottom: 20px;
}

.page-resources-thomo-cockfighting-live-platform .cta-small-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
}

.page-resources-thomo-cockfighting-live-platform .cta-small-button:hover {
    background: #071a47;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Section Safety */
.page-resources-thomo-cockfighting-live-platform .section-safety {
    padding: 80px 0;
    background-color: #ffffff;
}

.page-resources-thomo-cockfighting-live-platform .safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.page-resources-thomo-cockfighting-live-platform .safety-item {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-left: 5px solid var(--primary-color);
}

.page-resources-thomo-cockfighting-live-platform .safety-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-resources-thomo-cockfighting-live-platform .safety-heading {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-thomo-cockfighting-live-platform .safety-item p {
    font-size: 1em;
    color: var(--text-color-dark);
}

/* Section FAQ */
.page-resources-thomo-cockfighting-live-platform .section-faq {
    padding: 80px 0;
    background-color: var(--background-medium);
}

.page-resources-thomo-cockfighting-live-platform .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--background-light);
}

.page-resources-thomo-cockfighting-live-platform .faq-heading {
    font-size: 1.2em;
    color: var(--primary-color);
    margin: 0;
    font-weight: bold;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 20px;
    color: var(--text-color-dark);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 15px 20px;
    background: var(--background-light);
}

.faq-answer p {
    margin-bottom: 10px;
}

/* Section Conclusion */
.page-resources-thomo-cockfighting-live-platform .section-conclusion {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a3a7a 0%, var(--primary-color) 100%);
    color: var(--text-color-light);
    text-align: center;
}

.page-resources-thomo-cockfighting-live-platform .section-conclusion .section-title {
    color: var(--secondary-color);
}

.page-resources-thomo-cockfighting-live-platform .section-conclusion .section-title::after {
    background-color: var(--text-color-light);
}

.page-resources-thomo-cockfighting-live-platform .section-conclusion p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-color-light);
}

.page-resources-thomo-cockfighting-live-platform .section-conclusion .text-link {
    color: var(--secondary-color);
}

.page-resources-thomo-cockfighting-live-platform .section-conclusion .text-link:hover {
    color: #ffc400;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-thomo-cockfighting-live-platform .hero-title {
        font-size: 2.8em;
    }
    .page-resources-thomo-cockfighting-live-platform .hero-description {
        font-size: 1.2em;
    }
    .page-resources-thomo-cockfighting-live-platform .section-title {
        font-size: 2em;
    }
    .page-resources-thomo-cockfighting-live-platform .content-grid {
        flex-direction: column;
    }
    .page-resources-thomo-cockfighting-live-platform .text-content, .page-resources-thomo-cockfighting-live-platform .image-content {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-resources-thomo-cockfighting-live-platform .hero-section {
        padding: 40px 15px;
    }
    .page-resources-thomo-cockfighting-live-platform .hero-title {
        font-size: 2.2em;
    }
    .page-resources-thomo-cockfighting-live-platform .hero-description {
        font-size: 1em;
    }
    .page-resources-thomo-cockfighting-live-platform .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-resources-thomo-cockfighting-live-platform .section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 30px;
    }
    .page-resources-thomo-cockfighting-live-platform .section-intro, .page-resources-thomo-cockfighting-live-platform .section-features,
    .page-resources-thomo-cockfighting-live-platform .section-how-to, .page-resources-thomo-cockfighting-live-platform .section-safety,
    .page-resources-thomo-cockfighting-live-platform .section-faq, .page-resources-thomo-cockfighting-live-platform .section-conclusion {
        padding: 50px 0;
    }
    .page-resources-thomo-cockfighting-live-platform .feature-item, .page-resources-thomo-cockfighting-live-platform .step-item, .page-resources-thomo-cockfighting-live-platform .safety-item {
        padding: 25px;
    }
    .page-resources-thomo-cockfighting-live-platform .step-item {
        padding-top: 50px;
    }
    .page-resources-thomo-cockfighting-live-platform .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
        top: -25px;
    }
    .page-resources-thomo-cockfighting-live-platform .feature-heading, .page-resources-thomo-cockfighting-live-platform .step-heading, .page-resources-thomo-cockfighting-live-platform .safety-heading {
        font-size: 1.3em;
    }
    .faq-question {
        padding: 15px;
    }
    .faq-answer {
        padding: 0 15px;
    }
    .faq-item.active .faq-answer {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-thomo-cockfighting-live-platform .hero-title {
        font-size: 1.8em;
    }
    .page-resources-thomo-cockfighting-live-platform .hero-description {
        font-size: 0.9em;
    }
    .page-resources-thomo-cockfighting-live-platform .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-resources-thomo-cockfighting-live-platform .section-title {
        font-size: 1.5em;
    }
    .page-resources-thomo-cockfighting-live-platform .feature-icon, .page-resources-thomo-cockfighting-live-platform .safety-icon {
        width: 70px;
        height: 70px;
    }
    .page-resources-thomo-cockfighting-live-platform .feature-heading, .page-resources-thomo-cockfighting-live-platform .step-heading, .page-resources-thomo-cockfighting-live-platform .safety-heading {
        font-size: 1.2em;
    }
    .faq-toggle {
        font-size: 20px;
    }
}