:root {
    --main-color: #F2C14E;
    --accent-color: #FFD36B;
    --card-bg-color: #111111;
    --bg-color: #0A0A0A;
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
}

/* --- Base Styles --- */
.page-cockfighting {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main-color);
    background-color: var(--bg-color);
}

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

.page-cockfighting__section-padding {
    padding: 80px 0;
}

.page-cockfighting__section-title {
    font-size: 2.8em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-main-color);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-cockfighting__sub-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-main-color);
}

.page-cockfighting__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-main-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting p {
    margin-bottom: 15px;
    color: var(--text-main-color);
}

.page-cockfighting__list {
    list-style: disc inside;
    margin-bottom: 15px;
    padding-left: 20px;
    color: var(--text-main-color);
}

.page-cockfighting__list li {
    margin-bottom: 8px;
    color: var(--text-main-color);
}

.page-cockfighting a {
    color: var(--main-color);
    text-decoration: none;
}

.page-cockfighting a:hover {
    text-decoration: underline;
}

.page-cockfighting .highlight {
    color: var(--main-color);
    font-weight: bold;
}

/* --- Buttons --- */
.page-cockfighting__btn-primary,
.page-cockfighting__btn-secondary,
.page-cockfighting__btn-link {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-cockfighting__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #1A1A1A; /* Dark text for bright button */
    border: 2px solid transparent;
}

.page-cockfighting__btn-primary:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-cockfighting__btn-secondary {
    background: transparent;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

.page-cockfighting__btn-secondary:hover {
    background: var(--main-color);
    color: #1A1A1A; /* Dark text for bright button */
}

.page-cockfighting__btn-link {
    background: none;
    border: none;
    color: var(--main-color);
    padding: 0;
    font-size: 1em;
    text-decoration: underline;
}

.page-cockfighting__btn-link:hover {
    color: var(--accent-color);
}

.page-cockfighting__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-cockfighting__cta-center {
    text-align: center;
    margin-top: 40px;
}

/* --- Image Styles --- */
.page-cockfighting img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-cockfighting__image-center {
    text-align: center;
    margin-top: 40px;
}

/* --- Hero Section --- */
.page-cockfighting__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

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

.page-cockfighting__hero-content {
    max-width: 900px;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.page-cockfighting__main-title {
    font-size: 3.5em;
    font-weight: 700;
    color: var(--text-main-color);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.page-cockfighting__hero-description {
    font-size: 1.3em;
    color: var(--text-main-color);
    margin-bottom: 30px;
}

/* --- About Cockfighting Section --- */
.page-cockfighting__about-cockfighting {
    background-color: var(--bg-color);
}

.page-cockfighting__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.page-cockfighting__text-block {
    flex: 2;
}

.page-cockfighting__image-block {
    flex: 1;
    min-width: 300px;
}

.page-cockfighting__content-image {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* --- Why Choose Us Section --- */
.page-cockfighting__dark-section {
    background-color: var(--card-bg-color);
    color: var(--text-main-color);
}

.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: var(--bg-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-cockfighting__feature-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-cockfighting__card-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--main-color);
}

/* --- How to Play Section --- */
.page-cockfighting__how-to-play {
    background-color: var(--bg-color);
}

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

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

.page-cockfighting__step-number {
    font-size: 3em;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

/* --- Bet Types Section --- */
.page-cockfighting__bet-types {
    background-color: var(--card-bg-color);
}

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

.page-cockfighting__bet-option-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
}