/* style/resources-w88-official-link-faq.css */
.page-resources-w88-official-link-faq {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-resources-w88-official-link-faq__hero {
    background: linear-gradient(135deg, #CC0000 0%, #FFCC00 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-w88-official-link-faq__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
    opacity: 0.3;
    pointer-events: none;
}

.page-resources-w88-official-link-faq__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
}

.page-resources-w88-official-link-faq__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-resources-w88-official-link-faq__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-resources-w88-official-link-faq__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;
    text-align: center;
    white-space: nowrap;
}

.page-resources-w88-official-link-faq__btn--primary {
    background-color: #FFCC00;
    color: #CC0000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-w88-official-link-faq__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-w88-official-link-faq__btn--secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-w88-official-link-faq__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-w88-official-link-faq__btn--lg {
    padding: 18px 35px;
    font-size: 1.2em;
    min-width: 250px;
}

.page-resources-w88-official-link-faq__content {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-resources-w88-official-link-faq__faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.page-resources-w88-official-link-faq__faq-item {
    background-color: #fefefe;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    border-left: 5px solid #CC0000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-w88-official-link-faq__faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-resources-w88-official-link-faq__faq-question {
    color: #CC0000;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-resources-w88-official-link-faq__faq-question::after {
    content: '+';
    font-size: 1.2em;
    font-weight: bold;
    color: #FFCC00;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-resources-w88-official-link-faq__faq-item.active .page-resources-w88-official-link-faq__faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.page-resources-w88-official-link-faq__faq-answer {
    font-size: 1.05em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-resources-w88-official-link-faq__faq-item.active .page-resources-w88-official-link-faq__faq-answer {
    max-height: 1000px; /* Adjust as needed for content length */
    padding-top: 15px;
}

.page-resources-w88-official-link-faq__faq-answer p {
    margin-bottom: 15px;
}

.page-resources-w88-official-link-faq__faq-answer h3 {
    color: #CC0000;
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 15px;
    border-bottom: 1px dashed #FFCC00;
    padding-bottom: 5px;
}

.page-resources-w88-official-link-faq__faq-answer ul,
.page-resources-w88-official-link-faq__faq-answer ol {
    margin-left: 25px;
    margin-bottom: 15px;
    list-style-type: disc;
    color: #444;
}

.page-resources-w88-official-link-faq__faq-answer ol {
    list-style-type: decimal;
}

.page-resources-w88-official-link-faq__faq-answer li {
    margin-bottom: 8px;
}

.page-resources-w88-official-link-faq__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-w88-official-link-faq__cta-inline {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-resources-w88-official-link-faq__cta-full-width {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-resources-w88-official-link-faq__conclusion {
    text-align: center;
    padding: 50px 0;
    background-color: #f0f0f0;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.page-resources-w88-official-link-faq__conclusion p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #444;
}

@media (max-width: 768px) {
    .page-resources-w88-official-link-faq__hero {
        padding: 60px 0;
    }

    .page-resources-w88-official-link-faq__hero-title {
        font-size: 2.5em;
    }

    .page-resources-w88-official-link-faq__hero-description {
        font-size: 1em;
    }

    .page-resources-w88-official-link-faq__hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-w88-official-link-faq__btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-resources-w88-official-link-faq__btn--lg {
        min-width: unset;
    }

    .page-resources-w88-official-link-faq__content {
        padding: 40px 0;
    }

    .page-resources-w88-official-link-faq__faq-question {
        font-size: 1.5em;
    }

    .page-resources-w88-official-link-faq__faq-answer h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-resources-w88-official-link-faq__hero-title {
        font-size: 2em;
    }

    .page-resources-w88-official-link-faq__btn {
        font-size: 1em;
        padding: 12px 20px;
    }

    .page-resources-w88-official-link-faq__faq-question {
        font-size: 1.3em;
    }

    .page-resources-w88-official-link-faq__faq-answer h3 {
        font-size: 1.1em;
    }
}