/* style/cockfighting-betting-types.css */

.page-cockfighting-betting-types {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #1A202C; /* Main dark background */
}

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

.page-cockfighting-betting-types__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%); /* Dark gradient for hero */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-cockfighting-betting-types__hero-content {
    z-index: 1;
    max-width: 800px;
}

.page-cockfighting-betting-types__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-cockfighting-betting-types__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #D0D0D0;
    line-height: 1.6;
}

.page-cockfighting-betting-types__hero-image-wrapper {
    width: 100%;
    max-width: 1000px;
    margin-top: 40px;
    position: relative;
    z-index: 0;
}

.page-cockfighting-betting-types__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

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

.page-cockfighting-betting-types__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Accent gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-cockfighting-betting-types__text-content {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #D0D0D0;
    text-align: justify;
}

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

.page-cockfighting-betting-types__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.page-cockfighting-betting-types__image--right {
    float: right;
    width: 45%;
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-cockfighting-betting-types__introduction .page-cockfighting-betting-types__text-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-cockfighting-betting-types__betting-types {
    background-color: #222831; /* Slightly lighter dark for contrast */
}

.page-cockfighting-betting-types__type-card {
    background-color: #1A202C;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-cockfighting-betting-types__type-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.5);
    padding-bottom: 10px;
}

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

.page-cockfighting-betting-types__list li {
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #C0C0C0;
}

.page-cockfighting-betting-types__list li::before {
    content: '▪'; /* Custom bullet point */
    color: #FFD700;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    top: -2px;
}

.page-cockfighting-betting-types__list--strategy li::before, 
.page-cockfighting-betting-types__list--advantages li::before {
    content: '✓';
    color: #4CAF50; /* Green for checkmark */
}

.page-cockfighting-betting-types__text-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-cockfighting-betting-types__text-link:hover {
    color: #FFA500;
    text-decoration: underline;
}

.page-cockfighting-betting-types__faq-item {
    background-color: #1A202C;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-cockfighting-betting-types__faq-question {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-cockfighting-betting-types__faq-answer {
    font-size: 1.1em;
    line-height: 1.7;
    color: #D0D0D0;
}

.page-cockfighting-betting-types__call-to-action {
    text-align: center;
    background-color: #1A202C;
    padding: 80px 0;
}

.page-cockfighting-betting-types__call-to-action .page-cockfighting-betting-types__section-title {
    color: #FFD700;
}

.page-cockfighting-betting-types__call-to-action .page-cockfighting-betting-types__text-content {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.2em;
}

.page-cockfighting-betting-types__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Accent gold for CTA */
    color: #1A202C; /* Dark text on gold */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    margin: 10px;
    border: none;
    cursor: pointer;
}

.page-cockfighting-betting-types__cta-button:hover {
    background-color: #FFA500; /* Darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.6);
}

.page-cockfighting-betting-types__cta-button--small {
    padding: 12px 25px;
    font-size: 1.1em;
}

.page-cockfighting-betting-types__cta-button--large {
    padding: 18px 45px;
    font-size: 1.4em;
}

.page-cockfighting-betting-types__cta-button--secondary {
    background-color: #333C4A; /* Darker background for secondary CTA */
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: none;
}

.page-cockfighting-betting-types__cta-button--secondary:hover {
    background-color: #1A202C;
    color: #FFA500;
    border-color: #FFA500;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-cockfighting-betting-types__hero-title {
        font-size: 2.8em;
    }
    .page-cockfighting-betting-types__hero-subtitle {
        font-size: 1.2em;
    }
    .page-cockfighting-betting-types__section-title {
        font-size: 2.2em;
    }
    .page-cockfighting-betting-types__type-title {
        font-size: 1.8em;
    }
    .page-cockfighting-betting-types__image--right {
        float: none;
        width: 100%;
        margin: 30px 0;
    }
}

@media (max-width: 768px) {
    .page-cockfighting-betting-types__hero {
        padding: 60px 0;
    }
    .page-cockfighting-betting-types__hero-title {
        font-size: 2.2em;
    }
    .page-cockfighting-betting-types__hero-subtitle {
        font-size: 1em;
    }
    .page-cockfighting-betting-types__section {
        padding: 40px 0;
    }
    .page-cockfighting-betting-types__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-cockfighting-betting-types__type-card {
        padding: 20px;
    }
    .page-cockfighting-betting-types__type-title {
        font-size: 1.5em;
    }
    .page-cockfighting-betting-types__text-content,
    .page-cockfighting-betting-types__list li,
    .page-cockfighting-betting-types__faq-answer {
        font-size: 0.95em;
    }
    .page-cockfighting-betting-types__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
        margin: 8px;
    }
    .page-cockfighting-betting-types__cta-button--large {
        padding: 15px 35px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-cockfighting-betting-types__hero-title {
        font-size: 1.8em;
    }
    .page-cockfighting-betting-types__hero-subtitle {
        font-size: 0.9em;
    }
    .page-cockfighting-betting-types__section-title {
        font-size: 1.5em;
    }
    .page-cockfighting-betting-types__type-title {
        font-size: 1.3em;
    }
    .page-cockfighting-betting-types__cta-button {
        display: block;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px;
    }
    .page-cockfighting-betting-types__cta-button:last-of-type {
        margin-bottom: 0;
    }
}