/*
 * FAQ blocks in casino description — NO JavaScript.
 * Markup: wrap items in <div class="pb-faq">, each row is
 *   <details class="pb-faq-item"> (optional open) with <summary> + answer div.
 */

.casino-description-html .pb-faq__section-title {
    margin: 28px 0 14px;
    color: #0b1228;
    font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(22px, 4.5vw, 28px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.casino-description-html .pb-faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 0 8px;
}

.casino-description-html .pb-faq-item {
    background: #fff;
    border: 1px solid rgba(15, 23, 48, 0.1);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(15, 23, 48, 0.08);
    overflow: hidden;
}

.casino-description-html .pb-faq__summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px 16px 14px;
    cursor: pointer;
    list-style: none;
    font: inherit;
    color: #0b1228;
    transition: background 0.15s ease;
}

.casino-description-html .pb-faq__summary::-webkit-details-marker {
    display: none;
}

.casino-description-html .pb-faq__summary::marker {
    content: "";
}

.casino-description-html .pb-faq__summary:hover {
    background: rgba(0, 91, 255, 0.04);
}

.casino-description-html .pb-faq__summary:focus-visible {
    outline: 2px solid #005bff;
    outline-offset: -2px;
}

.casino-description-html .pb-faq__q {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #0b1228;
    color: #fbbf24;
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.casino-description-html .pb-faq__qtext {
    flex: 1;
    min-width: 0;
    font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.casino-description-html .pb-faq__toggle {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #005bff;
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 91, 255, 0.35);
}

.casino-description-html .pb-faq__chev {
    display: block;
    font-size: 10px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.casino-description-html .pb-faq-item[open] .pb-faq__chev {
    transform: rotate(180deg);
}

.casino-description-html .pb-faq-item[open] .pb-faq__summary {
    border-bottom: 1px solid rgba(15, 23, 48, 0.06);
}

.casino-description-html .pb-faq__answer {
    padding: 14px 16px 18px 58px;
    margin: 0;
    color: #374151;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.casino-description-html .pb-faq__answer p {
    margin: 0;
}

.casino-description-html .pb-faq__answer p + p {
    margin-top: 0.75em;
}

@media (max-width: 480px) {
    .casino-description-html .pb-faq__summary {
        padding: 14px 12px;
        gap: 10px;
    }

    .casino-description-html .pb-faq__answer {
        padding: 12px 14px 16px 52px;
        font-size: 14px;
    }
}
