/* style/cockfighting-betting-guide.css */
.page-cockfighting-betting-guide {
    font-family: 'Arial', sans-serif;
    color: #F0F0F0; /* Light grey for general text on dark backgrounds */
    background-color: #1a1a1a; /* Dark background to make colors pop */
    line-height: 1.6;
}

.page-cockfighting-betting-guide .highlight-text {
    color: #FFD700; /* Gold for highlights */
}

.page-cockfighting-betting-guide .keyword {
    color: #CC0000; /* Red for keywords */
    font-weight: bold;
}

/* Hero Section */
.page-cockfighting-betting-guide__hero {
    background: linear-gradient(135deg, #CC0000, #990000); /* Darker red gradient */
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

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

.page-cockfighting-betting-guide__title {
    font-size: 3.2em;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-cockfighting-betting-guide__subtitle {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting-betting-guide__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 100%;
    overflow: hidden;
    display: none; /* Hidden by default, shown on larger screens */
}

.page-cockfighting-betting-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    opacity: 0.8;
}

/* General Section Styling */
.page-cockfighting-betting-guide__section {
    padding: 60px 20px;
    text-align: center;
}

.page-cockfighting-betting-guide__section:nth-child(even) {
    background-color: #2a2a2a;
}

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

.page-cockfighting-betting-guide__section-title {
    font-size: 2.5em;
    color: #FFFFFF;
    margin-bottom: 25px;
    font-weight: 700;
}

.page-cockfighting-betting-guide__description {
    font-size: 1.1em;
    color: #B0B0B0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-cockfighting-betting-guide__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1a1a1a; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 10px;
    border: none;
    cursor: pointer;
}

.page-cockfighting-betting-guide__button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-cockfighting-betting-guide__button--primary {
    background-color: #CC0000; /* Red button */
    color: #FFFFFF;
}

.page-cockfighting-betting-guide__button--primary:hover {
    background-color: #990000; /* Darker red on hover */
}

.page-cockfighting-betting-guide__button--secondary {
    background-color: #555555; /* Dark grey button */
    color: #FFFFFF;
}

.page-cockfighting-betting-guide__button--secondary:hover {
    background-color: #444444;
}

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

/* Content Grid */
.page-cockfighting-betting-guide__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.page-cockfighting-betting-guide__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-cockfighting-betting-guide__text-block {
    flex: 1;
}

.page-cockfighting-betting-guide__text-block p {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: #D0D0D0;
}

.page-cockfighting-betting-guide__image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Bet Types Cards */
.page-cockfighting-betting-guide__type-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-cockfighting-betting-guide__card:hover {
    transform: translateY(-5px);
}

.page-cockfighting-betting-guide__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-cockfighting-betting-guide__card h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-cockfighting-betting-guide__card p {
    color: #C0C0C0;
    font-size: 1em;
}

/* Registration Guide Steps */
.page-cockfighting-betting-guide__steps {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.page-cockfighting-betting-guide__steps li {
    background-color: #333333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-cockfighting-betting-guide__step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px #CC0000);
}

.page-cockfighting-betting-guide__steps h3 {
    color: #CC0000;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-cockfighting-betting-guide__steps p {
    color: #C0C0C0;
    font-size: 0.95em;
}

/* Betting Process Flow */
.page-cockfighting-betting-guide__process-flow {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-cockfighting-betting-guide__process-step {
    flex: 1;
    min-width: 200px;
    background-color: #333333;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-cockfighting-betting-guide__process-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-cockfighting-betting-guide__process-step p {
    color: #C0C0C0;
    font-size: 0.95em;
}

/* Strategies Cards */
.page-cockfighting-betting-guide__strategy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-cockfighting-betting-guide__strategy-card:hover {
    transform: translateY(-5px);
}

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

.page-cockfighting-betting-guide__strategy-card h3 {
    color: #CC0000;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-cockfighting-betting-guide__strategy-card p {
    color: #C0C0C0;
    font-size: 1em;
}

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

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

.page-cockfighting-betting-guide__promo-card:hover {
    transform: translateY(-5px);
}

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

.page-cockfighting-betting-guide__promo-card h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-cockfighting-betting-guide__promo-card p {
    color: #C0C0C0;
    font-size: 1em;
}

/* Safety Section */
.page-cockfighting-betting-guide__safety-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-cockfighting-betting-guide__safety-item {
    background-color: #333333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-cockfighting-betting-guide__safety-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #CC0000);
}

.page-cockfighting-betting-guide__safety-item h3 {
    color: #CC0000;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-cockfighting-betting-guide__safety-item p {
    color: #C0C0C0;
    font-size: 1em;
}

/* CTA Section */
.page-cockfighting-betting-guide__cta {
    background: linear-gradient(90deg, #CC0000, #FFD700);
    padding: 80px 20px;
}

.page-cockfighting-betting-guide__cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-cockfighting-betting-guide__cta .page-cockfighting-betting-guide__section-title {
    color: #1a1a1a; /* Dark text on gradient background */
}

.page-cockfighting-betting-guide__cta .page-cockfighting-betting-guide__description {
    color: #333333; /* Darker text for description */
}

.page-cockfighting-betting-guide__cta .page-cockfighting-betting-guide__button {
    background-color: #1a1a1a; /* Dark button on gradient */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-cockfighting-betting-guide__cta .page-cockfighting-betting-guide__button:hover {
    background-color: #333333;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-cockfighting-betting-guide__hero-image-wrapper {
        display: none;
    }

    .page-cockfighting-betting-guide__title {
        font-size: 2.5em;
    }

    .page-cockfighting-betting-guide__section-title {
        font-size: 2em;
    }

    .page-cockfighting-betting-guide__content-grid {
        flex-direction: column;
    }

    .page-cockfighting-betting-guide__content-grid--reverse {
        flex-direction: column-reverse;
    }

    .page-cockfighting-betting-guide__process-flow {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-cockfighting-betting-guide__hero {
        padding: 60px 15px;
    }

    .page-cockfighting-betting-guide__title {
        font-size: 2em;
    }

    .page-cockfighting-betting-guide__subtitle {
        font-size: 1.1em;
    }

    .page-cockfighting-betting-guide__section {
        padding: 40px 15px;
    }

    .page-cockfighting-betting-guide__section-title {
        font-size: 1.8em;
    }

    .page-cockfighting-betting-guide__description {
        font-size: 1em;
    }

    .page-cockfighting-betting-guide__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-cockfighting-betting-guide__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-cockfighting-betting-guide__type-cards, 
    .page-cockfighting-betting-guide__steps, 
    .page-cockfighting-betting-guide__strategy-cards, 
    .page-cockfighting-betting-guide__promo-grid, 
    .page-cockfighting-betting-guide__safety-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-cockfighting-betting-guide__title {
        font-size: 1.8em;
    }

    .page-cockfighting-betting-guide__section-title {
        font-size: 1.5em;
    }

    .page-cockfighting-betting-guide__button {
        margin: 5px;
    }
}