/* style/cockfighting-betting-events.css */
.page-cockfighting-betting-events {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-cockfighting-betting-events__hero-section {
    background: linear-gradient(135deg, #0A203C 0%, #3a4a61 100%); /* Dark blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-cockfighting-betting-events__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:cockfighting,pattern,abstract]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-cockfighting-betting-events__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for highlight */
    position: relative;
    z-index: 1;
    font-weight: bold;
}

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

.page-cockfighting-betting-events__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-cockfighting-betting-events__btn {
    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, transform 0.2s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-cockfighting-betting-events__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A203C; /* Dark blue */
    border: 2px solid #FFD700;
}

.page-cockfighting-betting-events__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-cockfighting-betting-events__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-cockfighting-betting-events__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A203C;
    transform: translateY(-2px);
}

.page-cockfighting-betting-events__btn--text-link {
    color: #FFD700;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 0;
    font-size: 1em;
}

.page-cockfighting-betting-events__btn--text-link:hover {
    color: #e6c200;
    text-decoration: none;
}

.page-cockfighting-betting-events__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

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

.page-cockfighting-betting-events__btn--outline {
    background-color: transparent;
    color: #0A203C;
    border: 2px solid #0A203C;
}

.page-cockfighting-betting-events__btn--outline:hover {
    background-color: #0A203C;
    color: #fff;
}

.page-cockfighting-betting-events__section-title {
    font-size: 2.5em;
    color: #0A203C; /* Dark blue */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.page-cockfighting-betting-events__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold accent */
    border-radius: 2px;
}

.page-cockfighting-betting-events__section-description {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting-betting-events__introduction,
.page-cockfighting-betting-events__featured-events,
.page-cockfighting-betting-events__schedule-analysis,
.page-cockfighting-betting-events__cock-profiles,
.page-cockfighting-betting-events__betting-guide,
.page-cockfighting-betting-events__why-123b,
.page-cockfighting-betting-events__faq,
.page-cockfighting-betting-events__contact-cta {
    padding: 80px 0;
}

.page-cockfighting-betting-events__introduction {
    background-color: #fff;
}

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

.page-cockfighting-betting-events__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
}

.page-cockfighting-betting-events__text-content p {
    margin-bottom: 15px;
    color: #444;
}

.page-cockfighting-betting-events__image-wrapper {
    text-align: center;
}

.page-cockfighting-betting-events__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-cockfighting-betting-events__event-grid,
.page-cockfighting-betting-events__profile-grid,
.page-cockfighting-betting-events__steps-grid,
.page-cockfighting-betting-events__reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-cockfighting-betting-events__event-card,
.page-cockfighting-betting-events__profile-card,
.page-cockfighting-betting-events__step-card,
.page-cockfighting-betting-events__reason-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-cockfighting-betting-events__event-card:hover,
.page-cockfighting-betting-events__profile-card:hover,
.page-cockfighting-betting-events__step-card:hover,
.page-cockfighting-betting-events__reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

.page-cockfighting-betting-events__event-title,
.page-cockfighting-betting-events__profile-name {
    font-size: 1.5em;
    color: #0A203C;
    margin-bottom: 10px;
}

.page-cockfighting-betting-events__event-description,
.page-cockfighting-betting-events__profile-description {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-cockfighting-betting-events__schedule-analysis {
    background-color: #f0f2f5;
}

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

.page-cockfighting-betting-events__list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #444;
    font-size: 1.05em;
}

.page-cockfighting-betting-events__list li .icon-check {
    color: #FFD700; /* Gold checkmark */
    margin-right: 10px;
    font-size: 1.2em;
}

/* Placeholder for icon-check, should be defined in shared.css or via font-awesome */
.icon-check::before {
    content: '✔';
}

.page-cockfighting-betting-events__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0A203C; /* Dark blue */
    color: #FFD700; /* Gold */
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-cockfighting-betting-events__step-title {
    font-size: 1.3em;
    color: #0A203C;
    margin-bottom: 10px;
}

.page-cockfighting-betting-events__why-123b {
    background-color: #0A203C;
    color: #fff;
}

.page-cockfighting-betting-events__why-123b .page-cockfighting-betting-events__section-title {
    color: #FFD700;
}

.page-cockfighting-betting-events__why-123b .page-cockfighting-betting-events__section-title::after {
    background-color: #fff;
}

.page-cockfighting-betting-events__why-123b .page-cockfighting-betting-events__section-description {
    color: #ccc;
}

.page-cockfighting-betting-events__reason-card {
    background-color: #1a3551;
    color: #fff;
}

.page-cockfighting-betting-events__reason-card i {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 15px;
}

/* Placeholder for icons, assuming they'd be font icons or similar */
.icon-security::before { content: '🔒'; }
.icon-support::before { content: '📞'; }
.icon-mobile::before { content: '📱'; }
.icon-promo::before { content: '🎁'; }

.page-cockfighting-betting-events__reason-card h3 {
    color: #FFD700;
    margin-bottom: 10px;
}

.page-cockfighting-betting-events__reason-card p {
    color: #ccc;
}

.page-cockfighting-betting-events__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.page-cockfighting-betting-events__cta-bottom p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #FFD700;
}

.page-cockfighting-betting-events__faq-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.page-cockfighting-betting-events__faq-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.page-cockfighting-betting-events__faq-question {
    font-size: 1.25em;
    color: #0A203C;
    margin-bottom: 10px;
}

.page-cockfighting-betting-events__faq-answer {
    color: #555;
}

.page-cockfighting-betting-events__contact-cta {
    background-color: #f0f2f5;
    text-align: center;
    padding: 100px 0;
}

.page-cockfighting-betting-events__contact-cta .page-cockfighting-betting-events__btn {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-cockfighting-betting-events__hero-title {
        font-size: 2.8em;
    }
    .page-cockfighting-betting-events__hero-subtitle {
        font-size: 1.3em;
    }
    .page-cockfighting-betting-events__section-title {
        font-size: 2em;
    }
    .page-cockfighting-betting-events__content-grid {
        grid-template-columns: 1fr;
    }
    .page-cockfighting-betting-events__content-grid--reverse {
        grid-template-columns: 1fr;
    }
    .page-cockfighting-betting-events__image-wrapper {
        order: -1; /* Image appears first on smaller screens */
    }
}

@media (max-width: 768px) {
    .page-cockfighting-betting-events__hero-title {
        font-size: 2.2em;
    }
    .page-cockfighting-betting-events__hero-subtitle {
        font-size: 1.1em;
    }
    .page-cockfighting-betting-events__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-cockfighting-betting-events__btn {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .page-cockfighting-betting-events__event-grid,
    .page-cockfighting-betting-events__profile-grid,
    .page-cockfighting-betting-events__steps-grid,
    .page-cockfighting-betting-events__reasons-grid {
        grid-template-columns: 1fr;
    }
    .page-cockfighting-betting-events__contact-cta .page-cockfighting-betting-events__btn {
        display: block;
        margin: 15px auto;
    }
    .page-cockfighting-betting-events__introduction,
    .page-cockfighting-betting-events__featured-events,
    .page-cockfighting-betting-events__schedule-analysis,
    .page-cockfighting-betting-events__cock-profiles,
    .page-cockfighting-betting-events__betting-guide,
    .page-cockfighting-betting-events__why-123b,
    .page-cockfighting-betting-events__faq,
    .page-cockfighting-betting-events__contact-cta {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .page-cockfighting-betting-events__hero-section {
        padding: 60px 0;
    }
    .page-cockfighting-betting-events__hero-title {
        font-size: 1.8em;
    }
    .page-cockfighting-betting-events__hero-subtitle {
        font-size: 1em;
    }
    .page-cockfighting-betting-events__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-cockfighting-betting-events__section-title {
        font-size: 1.8em;
    }
    .page-cockfighting-betting-events__section-description {
        font-size: 0.9em;
    }
    .page-cockfighting-betting-events__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.8em;
    }
    .page-cockfighting-betting-events__faq-question {
        font-size: 1.1em;
    }
}