.page-cockfighting-culture {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

.page-cockfighting-culture__section {
    padding: 60px 20px;
    text-align: center;
}

.page-cockfighting-culture__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Add padding for smaller screens */
    box-sizing: border-box;
}

/* Hero Section */
.page-cockfighting-culture__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is not covered by fixed header */
}

.page-cockfighting-culture__hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
}

.page-cockfighting-culture__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #26A9E0; /* Brand color for title */
    line-height: 1.2;
}

.page-cockfighting-culture__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-cockfighting-culture__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-cockfighting-culture__video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-cockfighting-culture__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7); /* Darken video for better text contrast */
}

.page-cockfighting-culture__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3; /* Above video, below text content */
    cursor: pointer;
}

/* Headings */
.page-cockfighting-culture__heading {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #26A9E0; /* Brand color for main headings */
    text-align: center;
}

.page-cockfighting-culture__subheading {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #ffffff; /* Default for dark sections */
    text-align: left;
}

/* Text Blocks */
.page-cockfighting-culture__text-block {
    text-align: left;
}

.page-cockfighting-culture__text-block p {
    margin-bottom: 15px;
    color: inherit; /* Inherit color from parent section */
}

.page-cockfighting-culture__text-block ul {
    list-style-type: disc;
    margin-left: 20px;
    text-align: left;
    color: inherit;
}

.page-cockfighting-culture__text-block li {
    margin-bottom: 10px;
    color: inherit;
}

/* Image Blocks */
.page-cockfighting-culture__image-block img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
}

/* Buttons */
.page-cockfighting-culture__btn-primary,
.page-cockfighting-culture__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Ensure padding doesn't push width */
    max-width: 100%; /* Ensure responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Break long words */
}

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

.page-cockfighting-culture__btn-primary:hover {
    background-color: #1a7fb3;
    border-color: #1a7fb3;
}

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

.page-cockfighting-culture__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

/* Layout Grids */
.page-cockfighting-culture__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

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

.page-cockfighting-culture__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Cards */
.page-cockfighting-culture__card {
    background-color: rgba(255, 255, 255, 0.1); /* Light background for dark section */
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    color: #ffffff; /* Text color for cards on dark background */
}