/* style/cockfighting.css */
.page-cockfighting {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
}

/* --- Layout Containers --- */
.page-cockfighting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-cockfighting__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand color for titles */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-cockfighting__section-description,
.page-cockfighting__text-block {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-cockfighting__text-block {
    text-align: left;
    margin-bottom: 15px;
    color: #ffffff;
}

/* Light background sections */
.page-cockfighting__light-bg {
    background-color: #ffffff;
    color: #333333; /* Dark text for light background */
    padding: 60px 0;
}

.page-cockfighting__light-bg .page-cockfighting__section-title {
    color: #26A9E0; /* Brand color still works for titles */
}

.page-cockfighting__light-bg .page-cockfighting__section-description,
.page-cockfighting__light-bg .page-cockfighting__text-block,
.page-cockfighting__light-bg .page-cockfighting__list-item,
.page-cockfighting__light-bg .page-cockfighting__list-title,
.page-cockfighting__light-bg .page-cockfighting__guide-item,
.page-cockfighting__light-bg .page-cockfighting__guide-title,
.page-cockfighting__light-bg .page-cockfighting__tips-item,
.page-cockfighting__light-bg .page-cockfighting__tips-title,
.page-cockfighting__light-bg .page-cockfighting__safety-item,
.page-cockfighting__light-bg .page-cockfighting__safety-title {
    color: #333333; /* Dark text for light background */
}

/* Dark background sections */
.page-cockfighting__dark-bg {
    background-color: #000000; /* Body background color */
    color: #ffffff; /* Light text for dark background */
    padding: 60px 0;
}

/* --- Hero Section --- */
.page-cockfighting__hero-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px;
}

.page-cockfighting__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    z-index: 1;
}

.page-cockfighting__hero-section > .page-cockfighting__container {
    position: relative;
    z-index: 2;
}

.page-cockfighting__hero-title {
    font-size: 3.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-cockfighting__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* For responsiveness */
}

/* --- Buttons --- */
.page-cockfighting__btn-primary,
.page-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;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-cockfighting__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-cockfighting__btn-primary:hover {
    background-color: #1a7fb8;
    border-color: #1a7fb8;
    transform: translateY(-2px);
}

.page-cockfighting__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-cockfighting__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
    transform: translateY(-2px);
}

/* --- Video Section --- */
.page-cockfighting__video-section {
    text-align: center;
    padding: 60px 0;
}

.page-cockfighting__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 30px auto;
    border-radius: 10px;
}

.page-cockfighting__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    cursor: pointer;
}

.page-cockfighting__video-cta {
    margin-top: 30px;
}

/* --- Image Styles --- */
.page-cockfighting__image,
.page-cockfighting__feature-image,
.page-cockfighting__promo-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    object-fit: cover;
}

/* --- Features Grid --- */
.page-cockfighting__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting__feature-card {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white for dark background */
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

.page-cockfighting__feature-card .page-cockfighting__feature-image {
    width: 100%; /* Occupy full width of card */
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 15px;
}

.page-cockfighting__feature-title {
    font-size: 1.5em;
    color: #26A9E0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-cockfighting__feature-description {
    font-size: 1em;
    color: #f0f0f0;
    text-align: center;
}

/* --- List Styles (Game Types, Guide, Tips, Safety) --- */
.page-cockfighting__list,
.page-cockfighting__guide-list,
.page-cockfighting__tips-list,
.page-cockfighting__safety-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}