.page-resources-sv368-live-cockfighting-guide {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #1a1a2e; /* From shared.css body background */
}

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

.page-resources-sv368-live-cockfighting-guide__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #017439 0%, #004d2b 100%);
    color: #FFFFFF;
    padding: 80px 20px 40px;
    padding-top: var(--header-offset, 120px);
    position: relative;
    overflow: hidden;
}

.page-resources-sv368-live-cockfighting-guide__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 40px;
}

.page-resources-sv368-live-cockfighting-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #FFFF00; /* Register and Login font color */
}

.page-resources-sv368-live-cockfighting-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-resources-sv368-live-cockfighting-guide__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-resources-sv368-live-cockfighting-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.8);
}

.page-resources-sv368-live-cockfighting-guide__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-sv368-live-cockfighting-guide__btn-primary,
.page-resources-sv368-live-cockfighting-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-resources-sv368-live-cockfighting-guide__btn-primary {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #C30808;
}

.page-resources-sv368-live-cockfighting-guide__btn-primary:hover {
    background-color: #a00606;
    transform: translateY(-2px);
}

.page-resources-sv368-live-cockfighting-guide__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-resources-sv368-live-cockfighting-guide__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-resources-sv368-live-cockfighting-guide__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: #FFFF00; /* Use for main titles in sections */
}

.page-resources-sv368-live-cockfighting-guide__text-block {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #f0f0f0; /* Light text for dark background */
}

.page-resources-sv368-live-cockfighting-guide__introduction-section,
.page-resources-sv368-live-cockfighting-guide__video-section,
.page-resources-sv368-live-cockfighting-guide__faq-section {
    padding: 60px 0;
    background-color: #1a1a2e; /* Inherit from body, ensure consistency */
}

.page-resources-sv368-live-cockfighting-guide__dark-bg {
    background-color: #017439; /* Brand primary color for dark sections */
    color: #ffffff;
}

.page-resources-sv368-live-cockfighting-guide__steps-section,
.page-resources-sv368-live-cockfighting-guide__features-section,
.page-resources-sv368-live-cockfighting-guide__responsible-gambling-section,
.page-resources-sv368-live-cockfighting-guide__cta-bottom-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* White background for light sections */
    color: #333333;
}

.page-resources-sv368-live-cockfighting-guide__steps-grid,
.page-resources-sv368-live-cockfighting-guide__features-grid,
.page-resources-sv368-live-cockfighting-guide__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-sv368-live-cockfighting-guide__step-card,
.page-resources-sv368-live-cockfighting-guide__feature-card,
.page-resources-sv368-live-cockfighting-guide__tip-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333333;
}

.page-resources-sv368-live-cockfighting-guide__step-card:hover,
.page-resources-sv368-live-cockfighting-guide__feature-card:hover,
.page-resources-sv368-live-cockfighting-guide__tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-sv368-live-cockfighting-guide__step-icon,
.page-resources-sv368-live-cockfighting-guide__feature-icon {
    width: 200px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-resources-sv368-live-cockfighting-guide__step-title,
.page-resources-sv368-live-cockfighting-guide__feature-title,
.page-resources-sv368-live-cockfighting-guide__tip-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #017439; /* Brand primary color for titles */
}

.page-resources-sv368-live-cockfighting-guide__step-description,
.page-resources-sv368-live-cockfighting-guide__feature-description,
.page-resources-sv368-live-cockfighting-guide__tip-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
}

.page-resources-sv368-live-cockfighting-guide__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-sv368-live-cockfighting-guide__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    cursor: pointer;
    display: block;
}

.page-resources-sv368-live-cockfighting-guide__cta-buttons--center {
    margin-top: 40px;
}

.page-resources-sv368-live-cockfighting-guide__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-resources-sv368-live-cockfighting-guide__faq-list {
    margin-top: 40px;
}

.page-resources-sv368-live-cockfighting-guide__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.page-resources-sv368-live-cockfighting-guide__faq-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-resources-sv368-live-cockfighting-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    color: #ffffff;
    background-color: #017439;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-resources-sv368-live-cockfighting-guide__faq-question:hover {
    background-color: #004d2b;
}

.page-resources-sv368-live-cockfighting-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-resources-sv368-live-cockfighting-guide__faq-item.active .page-resources-sv368-live-cockfighting-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-sv368-live-cockfighting-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #f0f0f0;
    background-color: rgba(255, 255, 255, 0.05);
}

.page-resources-sv368-live-cockfighting-guide__faq-item.active .page-resources-sv368-live-cockfighting-guide__faq-answer {
    max-height: 1000px !important; /* Sufficiently large */
    padding: 20px !important;
}

.page-resources-sv368-live-cockfighting-guide__faq-answer p {
    margin: 0;
    font-size: 1em;
    line-height: 1.6;
}

.page-resources-sv368-live-cockfighting-guide__cta-bottom-section {
    text-align: center;
    padding: 80px 0;
    background-color: #FFFFFF; /* White background */
    color: #333333;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-resources-sv368-live-cockfighting-guide__hero-title {
        font-size: 2.8em;
    }
    .page-resources-sv368-live-cockfighting-guide__hero-description {
        font-size: 1.1em;
    }
    .page-resources-sv368-live-cockfighting-guide__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-sv368-live-cockfighting-guide__hero-section {
        padding: 60px 15px 30px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-resources-sv368-live-cockfighting-guide__hero-title {
        font-size: 2.2em;
        line-height: 1.3;
    }
    .page-resources-sv368-live-cockfighting-guide__hero-description {
        font-size: 1em;
    }
    .page-resources-sv368-live-cockfighting-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .page-resources-sv368-live-cockfighting-guide__btn-primary,
    .page-resources-sv368-live-cockfighting-guide__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-resources-sv368-live-cockfighting-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources-sv368-live-cockfighting-guide__text-block {
        font-size: 0.95em;
        line-height: 1.6;
    }
    .page-resources-sv368-live-cockfighting-guide__content-container {
        padding: 0 15px;
    }
    .page-resources-sv368-live-cockfighting-guide__steps-grid,
    .page-resources-sv368-live-cockfighting-guide__features-grid,
    .page-resources-sv368-live-cockfighting-guide__tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-resources-sv368-live-cockfighting-guide__step-card,
    .page-resources-sv368-live-cockfighting-guide__feature-card,
    .page-resources-sv368-live-cockfighting-guide__tip-card {
        padding: 20px;
    }
    .page-resources-sv368-live-cockfighting-guide__step-icon,
    .page-resources-sv368-live-cockfighting-guide__feature-icon {
        width: 150px;
        height: 100px;
    }
    .page-resources-sv368-live-cockfighting-guide__video-section {
        padding: 40px 0;
    }
    .page-resources-sv368-live-cockfighting-guide__video-wrapper {
        margin: 20px auto;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 0;
        padding-right: 0;
    }
    .page-resources-sv368-live-cockfighting-guide__video {
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        display: block !important;
    }
    .page-resources-sv368-live-cockfighting-guide__image-full-width {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: unset;
        min-height: unset;
    }
    .page-resources-sv368-live-cockfighting-guide__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-resources-sv368-live-cockfighting-guide__faq-answer {
        padding: 0 15px;
    }
    .page-resources-sv368-live-cockfighting-guide__faq-item.active .page-resources-sv368-live-cockfighting-guide__faq-answer {
        padding: 15px !important;
    }
    .page-resources-sv368-live-cockfighting-guide__cta-bottom-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-resources-sv368-live-cockfighting-guide__hero-title {
        font-size: 1.8em;
    }
    .page-resources-sv368-live-cockfighting-guide__section-title {
        font-size: 1.5em;
    }
    .page-resources-sv368-live-cockfighting-guide__step-title,
    .page-resources-sv368-live-cockfighting-guide__feature-title,
    .page-resources-sv368-live-cockfighting-guide__tip-title {
        font-size: 1.3em;
    }
    .page-resources-sv368-live-cockfighting-guide__faq-question {
        font-size: 1em;
    }
}