/* style/game-guides-caxeng-roulette.css */

:root {
    --page-caxeng-primary-color: #0A2239;
    --page-caxeng-secondary-color: #FFD700;
    --page-caxeng-accent-color: #DC143C;
    --page-caxeng-text-light: #F8F8F8;
    --page-caxeng-text-dark: #333333;
    --page-caxeng-bg-light: #FFFFFF;
    --page-caxeng-bg-dark: #0A2239;
}

.page-game-guides-caxeng-roulette__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-game-guides-caxeng-roulette__hero-section {
    background: linear-gradient(135deg, var(--page-caxeng-primary-color) 0%, #1A3A5A 100%);
    color: var(--page-caxeng-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-guides-caxeng-roulette__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:roulette_wheel_abstract,dark_gradient,subtle_pattern]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-game-guides-caxeng-roulette__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-caxeng-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.page-game-guides-caxeng-roulette__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-game-guides-caxeng-roulette__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
}

.page-game-guides-caxeng-roulette__btn--primary {
    background-color: var(--page-caxeng-secondary-color);
    color: var(--page-caxeng-primary-color);
}

.page-game-guides-caxeng-roulette__btn--primary:hover {
    background-color: #E6C200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides-caxeng-roulette__btn--secondary {
    background-color: var(--page-caxeng-primary-color);
    color: var(--page-caxeng-secondary-color);
    border: 2px solid var(--page-caxeng-secondary-color);
}

.page-game-guides-caxeng-roulette__btn--secondary:hover {
    background-color: var(--page-caxeng-secondary-color);
    color: var(--page-caxeng-primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides-caxeng-roulette__btn--tertiary {
    background-color: var(--page-caxeng-accent-color);
    color: var(--page-caxeng-text-light);
}

.page-game-guides-caxeng-roulette__btn--tertiary:hover {
    background-color: #B20C2D; /* Slightly darker red */
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides-caxeng-roulette__content-section {
    padding: 60px 0;
    background-color: var(--page-caxeng-bg-light);
    color: var(--page-caxeng-text-dark);
}

.page-game-guides-caxeng-roulette__article {
    line-height: 1.8;
    font-size: 1.05em;
}

.page-game-guides-caxeng-roulette__section-title {
    font-size: 2.5em;
    color: var(--page-caxeng-primary-color);
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.page-game-guides-caxeng-roulette__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--page-caxeng-secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-game-guides-caxeng-roulette__sub-section-title {
    font-size: 1.8em;
    color: var(--page-caxeng-primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid var(--page-caxeng-secondary-color);
    padding-left: 15px;
}

.page-game-guides-caxeng-roulette__article p {
    margin-bottom: 1em;
}

.page-game-guides-caxeng-roulette__article ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 1em;
}

.page-game-guides-caxeng-roulette__article li {
    margin-bottom: 0.5em;
}

.page-game-guides-caxeng-roulette__image {
    width: 100%;
    height: auto;
    max-width: 700px;
    margin: 30px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-guides-caxeng-roulette__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.page-game-guides-caxeng-roulette__faq-question {
    font-size: 1.4em;
    color: var(--page-caxeng-primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-game-guides-caxeng-roulette__faq-answer {
    color: var(--page-caxeng-text-dark);
    margin-bottom: 15px;
}

.page-game-guides-caxeng-roulette__cta-banner {
    background-color: var(--page-caxeng-primary-color);
    color: var(--page-caxeng-text-light);
    padding: 80px 0;
    text-align: center;
    margin-top: 60px;
}

.page-game-guides-caxeng-roulette__cta-banner-content {
    max-width: 900px;
}

.page-game-guides-caxeng-roulette__cta-title {
    font-size: 2.8em;
    color: var(--page-caxeng-secondary-color);
    margin-bottom: 20px;
}

.page-game-guides-caxeng-roulette__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-game-guides-caxeng-roulette__main-title {
        font-size: 2.5em;
    }

    .page-game-guides-caxeng-roulette__subtitle {
        font-size: 1.1em;
    }

    .page-game-guides-caxeng-roulette__section-title {
        font-size: 2em;
    }

    .page-game-guides-caxeng-roulette__sub-section-title {
        font-size: 1.5em;
    }

    .page-game-guides-caxeng-roulette__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-game-guides-caxeng-roulette__cta-title {
        font-size: 2em;
    }

    .page-game-guides-caxeng-roulette__cta-banner {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-game-guides-caxeng-roulette__main-title {
        font-size: 2em;
    }

    .page-game-guides-caxeng-roulette__subtitle {
        font-size: 1em;
    }

    .page-game-guides-caxeng-roulette__hero-section {
        padding: 80px 0;
    }

    .page-game-guides-caxeng-roulette__section-title {
        font-size: 1.8em;
    }

    .page-game-guides-caxeng-roulette__sub-section-title {
        font-size: 1.3em;
    }

    .page-game-guides-caxeng-roulette__btn {
        width: 100%;
        margin-bottom: 15px;
    }

    .page-game-guides-caxeng-roulette__cta-title {
        font-size: 1.8em;
    }
}