/* style/live-cockfighting.css */

:root {
    --main-brand-color: #FF4500; /* 激情橙红 */
    --secondary-brand-color: #1A202C; /* 深邃蓝黑 */
    --gold-color: #ffd700; /* 尊贵金色 */
    --text-light: #f0f0f0; /* Light text for dark backgrounds */
    --text-dark: #333333; /* Dark text for light backgrounds */
    --card-bg-dark: rgba(255, 255, 255, 0.1); /* Semi-transparent white for cards on dark bg */
    --border-color-dark: rgba(255, 255, 255, 0.2);
}

.page-live-cockfighting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for the page content */
    background-color: var(--secondary-brand-color); /* Matches shared.css dark background */
}

.page-live-cockfighting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-live-cockfighting__section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Fixed navigation bar spacing */
.page-live-cockfighting__hero-intro-section {
    padding-top: 70px; /* Adjust based on actual fixed header height */
    background: linear-gradient(135deg, var(--main-brand-color) 0%, var(--secondary-brand-color) 100%);
    text-align: center;
    padding-bottom: 40px;
}

.page-live-cockfighting__main-title {
    font-size: 3.2em;
    color: var(--gold-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-live-cockfighting__description-text {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-light);
}

.page-live-cockfighting__description-text .page-live-cockfighting__link {
    color: var(--gold-color);
    text-decoration: underline;
}

.page-live-cockfighting__image-wrapper {
    margin: 40px auto;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-live-cockfighting__hero-image-content {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-live-cockfighting__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-live-cockfighting__btn-primary,
.page-live-cockfighting__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-live-cockfighting__btn-primary {
    background-color: var(--main-brand-color);
    color: #ffffff;
    border-color: var(--main-brand-color);
}

.page-live-cockfighting__btn-primary:hover {
    background-color: #e63900;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 69, 0, 0.4);
}

.page-live-cockfighting__btn-secondary {
    background-color: transparent;
    color: var(--main-brand-color);
    border-color: var(--main-brand-color);
}

.page-live-cockfighting__btn-secondary:hover {
    background-color: var(--main-brand-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 69, 0, 0.4);
}

.page-live-cockfighting__section-title {
    font-size: 2.5em;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-live-cockfighting__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: var(--text-light);
}

.page-live-cockfighting__section-description .page-live-cockfighting__link {
    color: var(--gold-color);
    text-decoration: underline;
}

.page-live-cockfighting__grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-live-cockfighting__card {
    background-color: var(--card-bg-dark);
    border: 1px solid var(--border-color-dark);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-live-cockfighting__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-live-cockfighting__card-image-wrapper {
    width: 100%;
    height: 250px; /* Fixed height for consistent card images */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-live-cockfighting__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-live-cockfighting__card-title {
    font-size: 1.5em;
    color: var(--main-brand-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-live-cockfighting__card-text {
    font-size: 1em;
    color: var(--text-light);
}

.page-live-cockfighting__card-text .page-live-cockfighting__link {
    color: var(--gold-color);
    text-decoration: underline;
}

.page-live-cockfighting__guide-section {
    background-color: var(--secondary-brand-color);
}

.page-live-cockfighting__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.page-live-cockfighting__step-item {
    background-color: var(--card-bg-dark);
    border: 1px solid var(--border-color-dark);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-live-cockfighting__step-title {
    font-size: 1.8em;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-live-cockfighting__step-text {
    font-size: 1em;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-live-cockfighting__step-text .page-live-cockfighting__link {
    color: var(--gold-color);
    text-decoration: underline;
}

.page-live-cockfighting__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-live-cockfighting__strategy-section {
    background-color: var(--secondary-brand-color);
}

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

.page-live-cockfighting__strategy-card {
    background-color: var(--card-bg-dark);
    border: 1px solid var(--border-color-dark);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.page-live-cockfighting__strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-live-cockfighting__strategy-card-title {
    font-size: 1.5em;
    color: var(--main-brand-color);
    margin-bottom: 15px;
}

.page-live-cockfighting__strategy-card-text {
    font-size: 1em;
    color: var(--text-light);
}

.page-live-cockfighting__strategy-card-text .page-live-cockfighting__link {
    color: var(--gold-color);
    text-decoration: underline;
}

.page-live-cockfighting__support-section {
    background-color: var(--secondary-brand-color);
}

.page-live-cockfighting__support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-live-cockfighting__sub-title {
    font-size: 1.8em;
    color: var(--gold-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-live-cockfighting__sub-title:first-of-type {
    margin-top: 0;
}

.page-live-cockfighting__text-block {
    font-size: 1em;
    color: var(--text-light);
    margin-bottom: 20px;
}

.page-live-cockfighting__text-block .page-live-cockfighting__link {
    color: var(--gold-color);
    text-decoration: underline;
}