:root {
    --primary-color: #26A9E0;
    --primary-color-dark: #1F88B4; /* Darker shade for hover */
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --button-login: #EA7C07;
    --button-login-dark: #C66806; /* Darker shade for hover */
    --background-light: #ffffff;
    --black: #000000;
}

/* Base styles for the page content */
.page-resources-how-to-watch-thomo-cockfighting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default dark text for light body background */
    background-color: var(--background-light); /* Assuming shared.css sets body to a light color */
}

.page-resources-how-to-watch-thomo-cockfighting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section styles */
.page-resources-how-to-watch-thomo-cockfighting__section {
    padding: 60px 0;
}

.page-resources-how-to-watch-thomo-cockfighting__section h2 {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-how-to-watch-thomo-cockfighting__section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-resources-how-to-watch-thomo-cockfighting__section p {
    margin-bottom: 15px;
    font-size: 17px;
}

.page-resources-how-to-watch-thomo-cockfighting__section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-resources-how-to-watch-thomo-cockfighting__section a:hover {
    text-decoration: underline;
}

/* Image Wrapper */
.page-resources-how-to-watch-thomo-cockfighting__image-wrapper {
    margin: 40px auto;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-how-to-watch-thomo-cockfighting__image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

/* Hero Section */
.page-resources-how-to-watch-thomo-cockfighting__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); /* Ensures content is not hidden by fixed header */
    background: linear-gradient(135deg, var(--primary-color), #4CAF50); /* Gradient for visual appeal */
    color: var(--text-light); /* White text on dark/primary background */
    overflow: hidden; /* Prevent content overflow */
}

.page-resources-how-to-watch-thomo-cockfighting__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Ensure content is above any background effects */
}

.page-resources-how-to-watch-thomo-cockfighting__hero-content {
    text-align: center;
    margin-bottom: 40px;
}

.page-resources-how-to-watch-thomo-cockfighting__hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-light);
}

.page-resources-how-to-watch-thomo-cockfighting__hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-how-to-watch-thomo-cockfighting__hero-image {
    width: 100%;
    max-width: 900px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-watch-thomo-cockfighting__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* CTA Button */
.page-resources-how-to-watch-thomo-cockfighting__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-login); /* Use login color for CTA */
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-watch-thomo-cockfighting__cta-button:hover {
    background: var(--button-login-dark); /* Darken on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-watch-thomo-cockfighting__btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.page-resources-how-to-watch-thomo-cockfighting__btn-primary:hover {
    background: var(--primary-color-dark);
}

.page-resources-how-to-watch-thomo-cockfighting__btn-secondary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-how-to-watch-thomo-cockfighting__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Lists */
.page-resources-how-to-watch-thomo-cockfighting__numbered-list,
.page-resources-how-to-watch-thomo-cockfighting__bullet-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-resources-how-to-watch-thomo-cockfighting__numbered-list li,
.page-resources-how-to-watch-thomo-cockfighting__bullet-list li {
    background: var(--background-light);
    border-left: 5px solid var(--primary-color);
    margin-bottom: 20px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-how-to-watch-thomo-cockfighting__numbered-list li h3,
.page-resources-how-to-watch-thomo-cockfighting__bullet-list li h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-how-to-watch-thomo-cockfighting__numbered-list li p,
.page-resources-how-to-watch-thomo-cockfighting__bullet-list li p {
    font-size: 16px;
    color: var(--text-dark);
}

/* Icon List for Tips */
.page-resources-how-to-watch-thomo-cockfighting__icon-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-resources-how-to-watch-thomo-cockfighting__icon-item {
    background: rgba(255, 255, 255, 0.1); /* Light background on dark section */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-light);
}

.page-resources-how-to-watch-thomo-cockfighting__icon-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-resources-how-to-watch-thomo-cockfighting__icon {
    font-size: 50px;
    margin-bottom: 15px;
    display: block;
    color: var(--secondary-color); /* Icons in white */
}

.page-resources-how-to-watch-thomo-cockfighting__icon-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-resources-how-to-watch-thomo-cockfighting__icon-item p {
    font-size: 16px;
    color: var(--text-light);
}

/* Benefits Grid */
.page-resources-how-to-watch-thomo-cockfighting__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-how-to-watch-thomo-cockfighting__benefit-card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    color: var(--text-dark);
}

.page-resources-how-to-watch-thomo-cockfighting__benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-how-to-watch-thomo-cockfighting__benefit-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-how-to-watch-thomo-cockfighting__benefit-card p {
    font-size: 16px;
    color: var(--text-dark);
}

/* Color Contrast Specifics */
.page-resources-how-to-watch-thomo-cockfighting__dark-bg {
    background: var(--primary-color);
    color: var(--text-light);
}

.page-resources-how-to-watch-thomo-cockfighting__dark-bg h2,
.page-resources-how-to-watch-thomo-cockfighting__dark-bg h3 {
    color: var(--text-light);
}

.page-resources-how-to-watch-thomo-cockfighting__dark-bg h2::after {
    background-color: var(--text-light);
}

.page-resources-how-to-watch-thomo-cockfighting__light-bg {
    background: var(--background-light);
    color: var(--text-dark);
}

.page-resources-how-to-watch-thomo-cockfighting__light-bg h2,
.page-resources-how-to-watch-thomo-cockfighting__light-bg h3 {
    color: var(--primary-color);
}

.page-resources-how-to-watch-thomo-cockfighting__light-bg h2::after {
    background-color: var(--primary-color);
}

/* FAQ Section */
.page-resources-how-to-watch-thomo-cockfighting__faq-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.page-resources-how-to-watch-thomo-cockfighting__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ容器样式 */
.page-resources-how-to-watch-thomo-cockfighting__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}