/* style/cockfighting-betting-rules.css */
.page-cockfighting-betting-rules {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    background-color: #0F1A2D; /* Dark background, slightly lighter than main color */
}

.page-cockfighting-betting-rules__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-cockfighting-betting-rules__hero-section {
    background: linear-gradient(135deg, #1A2B4C, #0F1A2D);
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-cockfighting-betting-rules__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:hero:cockfighting,arena,crowd,dynamic]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-cockfighting-betting-rules__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #F0B90B; /* Accent color for title */
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-betting-rules__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.page-cockfighting-betting-rules__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-cockfighting-betting-rules__section:last-of-type {
    border-bottom: none;
}

.page-cockfighting-betting-rules__section-title {
    font-size: 2.5em;
    color: #F0B90B; /* Accent color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-cockfighting-betting-rules__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #F0B90B;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-cockfighting-betting-rules__introduction p,
.page-cockfighting-betting-rules__history-attraction p,
.page-cockfighting-betting-rules__basic-rules p,
.page-cockfighting-betting-rules__betting-types p,
.page-cockfighting-betting-rules__betting-process p,
.page-cockfighting-betting-rules__tips-strategies p,
.page-cockfighting-betting-rules__safety-responsibility p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #CCCCCC;
}

.page-cockfighting-betting-rules__strong-text {
    color: #F0B90B;
    font-weight: bold;
}

.page-cockfighting-betting-rules__highlight {
    color: #F0B90B;
    font-weight: bold;
}

.page-cockfighting-betting-rules__grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-cockfighting-betting-rules__grid-item {
    padding: 20px 0;
}

.page-cockfighting-betting-rules__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-betting-rules__image-responsive {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-cockfighting-betting-rules__card {
    background-color: #1A2B4C;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-betting-rules__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-cockfighting-betting-rules__card-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-cockfighting-betting-rules__card-title {
    font-size: 1.6em;
    color: #F0B90B;
    margin-bottom: 15px;
}

.page-cockfighting-betting-rules__card-text {
    font-size: 1em;
    line-height: 1.7;
    color: #CCCCCC;
}

.page-cockfighting-betting-rules__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-cockfighting-betting-rules__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #CCCCCC;
}

.page-cockfighting-betting-rules__list--styled li {
    position: relative;
    padding-left: 30px;
}

.page-cockfighting-betting-rules__list--styled li::before {
    content: '▪';
    color: #F0B90B;
    position: absolute;
    left: 0;
    font-size: 1.5em;
    line-height: 1;
    top: 2px;
}

.page-cockfighting-betting-rules__list--checked li {
    position: relative;
    padding-left: 30px;
}

.page-cockfighting-betting-rules__list--checked li::before {
    content: '✓';
    color: #0BDBF0; /* A contrasting blue for checkmarks */
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
    top: 2px;
}

.page-cockfighting-betting-rules__list--bullet li {
    position: relative;
    padding-left: 25px;
}

.page-cockfighting-betting-rules__list--bullet li::before {
    content: '•';
    color: #F0B90B;
    position: absolute;
    left: 0;
    font-size: 1.5em;
    line-height: 1;
    top: 2px;
}

.page-cockfighting-betting-rules__icon {
    color: #F0B90B;
    margin-right: 10px;
}

.page-cockfighting-betting-rules__rule-item {
    background-color: #1A2B4C;
    border-left: 5px solid #F0B90B;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-rules__rule-title {
    font-size: 1.8em;
    color: #F0B90B;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-cockfighting-betting-rules__numbered-list {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 30px;
}

.page-cockfighting-betting-rules__numbered-list li {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #CCCCCC;
}

.page-cockfighting-betting-rules__numbered-list li::marker {
    color: #F0B90B;
    font-weight: bold;
}

.page-cockfighting-betting-rules__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-cockfighting-betting-rules__btn--primary {
    background-color: #F0B90B;
    color: #1A2B4C;
    box-shadow: 0 4px 15px rgba(240, 185, 11, 0.4);
}

.page-cockfighting-betting-rules__btn--primary:hover {
    background-color: #e5a80a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(240, 185, 11, 0.6);
}

.page-cockfighting-betting-rules__btn--secondary {
    background-color: #1A2B4C;
    color: #F0B90B;
    border: 2px solid #F0B90B;
    margin-left: 20px;
    box-shadow: 0 4px 15px rgba(26, 43, 76, 0.4);
}

.page-cockfighting-betting-rules__btn--secondary:hover {
    background-color: #2e436b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 43, 76, 0.6);
}

.page-cockfighting-betting-rules__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-cockfighting-betting-rules__link {
    color: #0BDBF0; /* A light blue for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-cockfighting-betting-rules__link:hover {
    color: #5ffaff;
    text-decoration: underline;
}

.page-cockfighting-betting-rules__cta-content {
    text-align: center;
    background-color: #1A2B4C;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    margin-top: 50px;
}

.page-cockfighting-betting-rules__cta-title {
    font-size: 2.8em;
    color: #F0B90B;
    margin-bottom: 25px;
}

.page-cockfighting-betting-rules__cta-text {
    font-size: 1.2em;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-cockfighting-betting-rules__accordion {
    margin-top: 40px;
}

.page-cockfighting-betting-rules__accordion-item {
    background-color: #1A2B4C;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-rules__accordion-header {
    background-color: #1A2B4C;
    color: #F0B90B;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.3em;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-cockfighting-betting-rules__accordion-header:hover {
    background-color: #2e436b;
    color: #ffffff;
}

.page-cockfighting-betting-rules__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-cockfighting-betting-rules__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-cockfighting-betting-rules__accordion-content {
    padding: 0 25px;
    background-color: #0F1A2D;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-cockfighting-betting-rules__accordion-content p {
    padding: 15px 0;
    margin: 0;
    color: #CCCCCC;
    font-size: 1.05em;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-cockfighting-betting-rules__hero-title {
        font-size: 2.8em;
    }
    .page-cockfighting-betting-rules__hero-subtitle {
        font-size: 1.2em;
    }
    .page-cockfighting-betting-rules__section-title {
        font-size: 2em;
    }
    .page-cockfighting-betting-rules__grid-layout {
        grid-template-columns: 1fr;
    }
    .page-cockfighting-betting-rules__reverse-on-mobile {
        grid-template-areas: "text" "image";
    }
    .page-cockfighting-betting-rules__reverse-on-mobile .page-cockfighting-betting-rules__grid-item:first-child { grid-area: image; }
    .page-cockfighting-betting-rules__reverse-on-mobile .page-cockfighting-betting-rules__grid-item:last-child { grid-area: text; }
    .page-cockfighting-betting-rules__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .page-cockfighting-betting-rules__hero-title {
        font-size: 2.2em;
    }
    .page-cockfighting-betting-rules__hero-subtitle {
        font-size: 1em;
    }
    .page-cockfighting-betting-rules__section {
        padding: 40px 0;
    }
    .page-cockfighting-betting-rules__section-title {
        font-size: 1.8em;
    }
    .page-cockfighting-betting-rules__grid-3-columns {
        grid-template-columns: 1fr;
    }
    .page-cockfighting-betting-rules__card {
        padding: 20px;
    }
    .page-cockfighting-betting-rules__btn {
        width: 100%;
        margin-left: 0;
        margin-bottom: 15px;
    }
    .page-cockfighting-betting-rules__cta-title {
        font-size: 2em;
    }
    .page-cockfighting-betting-rules__cta-text {
        font-size: 1em;
    }
    .page-cockfighting-betting-rules__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-cockfighting-betting-rules__accordion-content p {
        padding: 10px 0;
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-cockfighting-betting-rules__hero-title {
        font-size: 1.8em;
    }
    .page-cockfighting-betting-rules__hero-subtitle {
        font-size: 0.9em;
    }
    .page-cockfighting-betting-rules__container {
        padding: 15px;
    }
    .page-cockfighting-betting-rules__section-title {
        font-size: 1.5em;
    }
    .page-cockfighting-betting-rules__cta-title {
        font-size: 1.8em;
    }
    .page-cockfighting-betting-rules__btn--large {
        padding: 15px 25px;
        font-size: 1em;
    }
}