/* style/games-center-pg66-wild-bandito.css */

/* Variables for colors */
:root {
    --page-pg66-primary-color: #0A2463; /* Deep Blue */
    --page-pg66-secondary-color: #FFD700; /* Gold */
    --page-pg66-text-light: #FFFFFF;
    --page-pg66-text-dark: #333333;
    --page-pg66-background-light: #F8F8F8;
    --page-pg66-background-dark: #071A43; /* Slightly darker than primary for contrast */
}

.page-games-center-pg66-wild-bandito {
    font-family: 'Arial', sans-serif;
    color: var(--page-pg66-text-dark);
    line-height: 1.6;
    background-color: var(--page-pg66-background-light);
}

.page-games-center-pg66-wild-bandito__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-games-center-pg66-wild-bandito__hero {
    background: linear-gradient(135deg, var(--page-pg66-primary-color) 0%, #0D2E7C 100%); /* Gradient with primary color */
    padding: 80px 0;
    text-align: center;
    color: var(--page-pg66-text-light);
    position: relative;
    overflow: hidden;
}

.page-games-center-pg66-wild-bandito__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 100 100"><circle cx="20" cy="20" r="10" fill="%23FFD700" opacity="0.1"/><circle cx="80" cy="80" r="15" fill="%23FFD700" opacity="0.1"/><circle cx="50" cy="50" r="8" fill="%23FFD700" opacity="0.05"/></svg>'); /* Subtle pattern */
    background-size: 50px 50px;
    opacity: 0.2;
    z-index: 0;
}

.page-games-center-pg66-wild-bandito__hero > .page-games-center-pg66-wild-bandito__container {
    position: relative;
    z-index: 1;
}

.page-games-center-pg66-wild-bandito__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-pg66-secondary-color); /* Gold title for impact */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-games-center-pg66-wild-bandito__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-pg66-text-light);
}

.page-games-center-pg66-wild-bandito__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.page-games-center-pg66-wild-bandito__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;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-games-center-pg66-wild-bandito__btn--primary {
    background-color: var(--page-pg66-secondary-color); /* Gold button */
    color: var(--page-pg66-primary-color); /* Deep Blue text for contrast */
}

.page-games-center-pg66-wild-bandito__btn--primary:hover {
    background-color: #E6C200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-games-center-pg66-wild-bandito__btn--secondary {
    background-color: var(--page-pg66-primary-color); /* Deep Blue button */
    color: var(--page-pg66-secondary-color); /* Gold text for contrast */
    border: 2px solid var(--page-pg66-secondary-color);
}

.page-games-center-pg66-wild-bandito__btn--secondary:hover {
    background-color: #071A43; /* Slightly darker blue */
    transform: translateY(-3px);
}

.page-games-center-pg66-wild-bandito__section {
    padding: 60px 0;
    background-color: var(--page-pg66-background-light);
    border-bottom: 1px solid #eee;
}

.page-games-center-pg66-wild-bandito__section:nth-of-type(even) {
    background-color: #F0F2F5; /* Slightly different background for alternating sections */
}

.page-games-center-pg66-wild-bandito__section-title {
    font-size: 2.5em;
    color: var(--page-pg66-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-games-center-pg66-wild-bandito__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-pg66-secondary-color);
    border-radius: 2px;
}

.page-games-center-pg66-wild-bandito__sub-title {
    font-size: 1.8em;
    color: var(--page-pg66-primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-games-center-pg66-wild-bandito__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-games-center-pg66-wild-bandito__list li {
    background: var(--page-pg66-text-light);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid var(--page-pg66-secondary-color);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.page-games-center-pg66-wild-bandito__list li:hover {
    transform: translateX(5px);
}

.page-games-center-pg66-wild-bandito__list li strong {
    color: var(--page-pg66-primary-color);
}

.page-games-center-pg66-wild-bandito__image-content {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-games-center-pg66-wild-bandito__faq-item {
    background-color: var(--page-pg66-text-light);
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-games-center-pg66-wild-bandito__faq-question {
    font-size: 1.2em;
    color: var(--page-pg66-primary-color);
    padding: 18px 25px;
    margin: 0;
    cursor: pointer;
    background-color: #f9f9f9;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-games-center-pg66-wild-bandito__faq-question:hover {
    background-color: #f0f0f0;
}

.page-games-center-pg66-wild-bandito__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: var(--page-pg66-secondary-color);
    transition: transform 0.3s ease;
}

.page-games-center-pg66-wild-bandito__faq-question.active-faq::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

.page-games-center-pg66-wild-bandito__faq-answer {
    padding: 0 25px;
    margin: 0;
    color: var(--page-pg66-text-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-games-center-pg66-wild-bandito__faq-question.active-faq + .page-games-center-pg66-wild-bandito__faq-answer {
    padding-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-games-center-pg66-wild-bandito__title {
        font-size: 2.5em;
    }

    .page-games-center-pg66-wild-bandito__subtitle {
        font-size: 1.1em;
    }

    .page-games-center-pg66-wild-bandito__section-title {
        font-size: 2em;
    }

    .page-games-center-pg66-wild-bandito__sub-title {
        font-size: 1.5em;
    }

    .page-games-center-pg66-wild-bandito__hero {
        padding: 60px 0;
    }

    .page-games-center-pg66-wild-bandito__section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-games-center-pg66-wild-bandito__title {
        font-size: 2em;
    }

    .page-games-center-pg66-wild-bandito__subtitle {
        font-size: 1em;
    }

    .page-games-center-pg66-wild-bandito__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-games-center-pg66-wild-bandito__section-title {
        font-size: 1.8em;
    }

    .page-games-center-pg66-wild-bandito__sub-title {
        font-size: 1.3em;
    }

    .page-games-center-pg66-wild-bandito__list li {
        padding: 10px 15px;
    }
}