/* style/resources-king88-faq.css */

.page-resources-king88-faq {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color on dark backgrounds */
    background-color: #0A1931; /* Main background color */
    line-height: 1.6;
}

.page-resources-king88-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-resources-king88-faq__hero {
    background: linear-gradient(135deg, #0A1931 0%, #1a2a47 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700; /* Gold accent */
}

.page-resources-king88-faq__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-king88-faq__hero > .page-resources-king88-faq__container {
    position: relative;
    z-index: 1;
}

.page-resources-king88-faq__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-king88-faq__subtitle {
    font-size: 1.2em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-resources-king88-faq__button {
    display: inline-block;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-resources-king88-faq__button--primary {
    background-color: #E03B8B; /* Magenta accent */
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(224, 59, 139, 0.4);
}

.page-resources-king88-faq__button--primary:hover {
    background-color: #c92f7c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(224, 59, 139, 0.6);
}

.page-resources-king88-faq__button--secondary {
    background-color: #FFD700; /* Gold secondary button */
    color: #0A1931; /* Dark blue text on gold */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-king88-faq__button--secondary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Content Section */
.page-resources-king88-faq__content {
    padding: 60px 0;
    background-color: #0A1931; /* Dark blue for content background */
}

.page-resources-king88-faq__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-resources-king88-faq__intro-text {
    font-size: 1.1em;
    color: #CCCCCC;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.page-resources-king88-faq__faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-resources-king88-faq__faq-item {
    background-color: #1A2A47; /* Slightly lighter dark blue for FAQ items */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid #334466;
}

.page-resources-king88-faq__faq-question {
    display: block;
    padding: 25px 30px;
    font-size: 1.4em;
    font-weight: bold;
    color: #FFD700; /* Gold for questions */
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
    user-select: none;
    background-color: #1A2A47;
}

.page-resources-king88-faq__faq-question:hover {
    background-color: #25385C; /* Darker hover effect */
}

.page-resources-king88-faq__faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-resources-king88-faq__faq-item[open] .page-resources-king88-faq__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-resources-king88-faq__faq-answer {
    padding: 20px 30px 30px;
    font-size: 1.05em;
    color: #E0E0E0; /* Light grey for answers */
    background-color: #0A1931; /* Dark blue for answer background */
    border-top: 1px solid #334466;
}

.page-resources-king88-faq__faq-answer h3 {
    font-size: 1.6em;
    color: #FFD700; /* Gold for sub-headings in answers */
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-resources-king88-faq__faq-answer p {
    margin-bottom: 15px;
}

.page-resources-king88-faq__faq-answer ul,
.page-resources-king88-faq__faq-answer ol {
    margin-left: 25px;
    margin-bottom: 15px;
    list-style-position: outside;
}

.page-resources-king88-faq__faq-answer li {
    margin-bottom: 8px;
}

.page-resources-king88-faq__link {
    color: #E03B8B; /* Magenta for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-king88-faq__link:hover {
    color: #FFD700; /* Gold on hover */
    text-decoration: underline;
}

.page-resources-king88-faq__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    border: 1px solid #334466;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Call to Action Bottom */
.page-resources-king88-faq__cta-bottom {
    text-align: center;
    padding: 60px 0 40px;
    background-color: #1A2A47; /* Slightly lighter dark blue */
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #334466;
}

.page-resources-king88-faq__cta-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold for CTA title */
    margin-bottom: 20px;
}

.page-resources-king88-faq__cta-text {
    font-size: 1.1em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-king88-faq__title {
        font-size: 2.5em;
    }
    .page-resources-king88-faq__subtitle {
        font-size: 1em;
    }
    .page-resources-king88-faq__button {
        padding: 12px 25px;
        font-size: 1em;
        margin: 10px 5px;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    .page-resources-king88-faq__section-title {
        font-size: 2em;
    }
    .page-resources-king88-faq__faq-question {
        font-size: 1.2em;
        padding: 20px 25px;
    }
    .page-resources-king88-faq__faq-question::after {
        right: 20px;
        font-size: 1.2em;
    }
    .page-resources-king88-faq__faq-answer {
        padding: 15px 25px 25px;
        font-size: 0.95em;
    }
    .page-resources-king88-faq__faq-answer h3 {
        font-size: 1.4em;
    }
    .page-resources-king88-faq__cta-title {
        font-size: 1.8em;
    }
    .page-resources-king88-faq__cta-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-resources-king88-faq__title {
        font-size: 2em;
    }
    .page-resources-king88-faq__hero {
        padding: 60px 0;
    }
    .page-resources-king88-faq__button {
        width: 90%;
        max-width: 300px;
    }
    .page-resources-king88-faq__section-title {
        font-size: 1.8em;
    }
    .page-resources-king88-faq__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-resources-king88-faq__faq-answer {
        padding: 10px 20px 20px;
    }
    .page-resources-king88-faq__faq-answer h3 {
        font-size: 1.2em;
    }
}