:root {
        --fx-tosca: #ffc400;
        --fx-tosca-dark: #9a3f00;
        --fx-tosca-deep: #2b1000;
        --fx-tosca-soft: #ffe66d;
        --fx-aqua: #fff59d;
        --fx-cream: #fffbe6;
        --fx-white: #ffffff;
        --fx-text: #fffbe6;
        --fx-border: rgba(255, 230, 109, .52);
        --fx-bg: rgba(73, 28, 0, .76);
        --fx-shadow: 0 20px 60px rgba(255, 208, 0, .34);

        --purple: #ffc400;
        --accent: #ffe66d;
        --white: #ffffff;
    }

    /* =========================
       ADVERTISEMENT PLACEHOLDER
    ========================== */
    div.advertisement-placeholder {
        text-align: center;
        padding-bottom: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    div.advertisement-text p {
        margin: 0;
        font-family: Open Sans;
        font-style: normal;
        font-weight: normal;
        font-size: 10px;
        line-height: 20px;
        color: #ffe66d;
    }

    div.advertisement-banner {
        margin: 0px auto;
    }

    div#div-gpt-ad-billboard-placeholder {
        width: 996px;
        margin: 0 auto;
        background: #fffbe6;
        padding-bottom: unset !important;
        min-height: 200px;
    }

    div#div-gpt-ad-lb-placeholder {
        background: #fffbe6;
        padding-bottom: unset !important;
        min-height: 280px;
    }

    /* =========================
       VIDEO BACKGROUND
    ========================== */
    .fx-video-bg {
        position: relative;
        width: 100%;
        min-height: 100vh;
        overflow: hidden;
    }

    .fx-video-bg video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        object-fit: cover;
        z-index: 1;
    }

    .fx-video-overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        background:
            radial-gradient(circle at 30% 20%, rgba(255, 208, 0, 0.34), transparent 55%),
            radial-gradient(circle at 70% 80%, rgba(255, 230, 109, .22), transparent 60%),
            linear-gradient(180deg, rgba(0, 0, 0, .70), rgba(43, 35, 0, 0.94));
    }

    /* =========================
       ARTICLE WRAPPER
    ========================== */
    .fx-article-wrap {
        position: relative;
        z-index: 3;
        max-width: 1280px;
        margin: 0 auto;
        padding: 60px 14px;
    }

    .fx-article {
        position: relative;
        border-radius: 22px;
        padding: 26px 22px;
        color: var(--fx-text);
        background:
            radial-gradient(circle at top, rgba(255, 208, 0, .12), transparent 45%),
            rgba(73, 28, 0, .52);
        border: 1px solid var(--fx-border);
        box-shadow: var(--fx-shadow);
        backdrop-filter: blur(6px);
    }

    .fx-badge {
        display: inline-block;
        margin-bottom: 12px;
        padding: 6px 12px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .6px;
        border-radius: 999px;
        color: #2b1000;
        background: linear-gradient(90deg, #ffd000, #ffd21f, #fff59d);
        box-shadow: 0 0 18px rgba(255, 208, 0, .56);
    }

    .fx-article h1 {
        font-size: 1.8rem;
        margin-bottom: 14px;
        text-shadow:
            0 2px 8px rgba(0, 0, 0, .75),
            0 0 18px rgba(255, 197, 7, 0.52);
    }

    .fx-article h2 {
        font-size: 1.3rem;
        margin: 18px 0 10px;
        border-left: 4px solid var(--fx-tosca);
        padding-left: 10px;
    }

    .fx-article p {
        line-height: 1.75;
        margin-bottom: 14px;
        color: rgba(255, 251, 230, .95);
    }

    .fx-article a {
        color: #ffe66d;
        border-bottom: 1px dashed rgba(255, 230, 109, .78);
        text-decoration: none;
    }

    .fx-article a:hover {
        color: #ffffff;
        text-shadow: 0 0 12px rgba(255, 197, 7, .78);
    }

    .fx-callout {
        margin: 18px 0;
        padding: 14px;
        border-radius: 14px;
        background:
            linear-gradient(145deg, rgba(255, 208, 0, .18), rgba(154, 113, 0, 0.22));
        border: 1px solid rgba(255, 230, 109, .52);
    }

    /* =========================
       FAQ & REVIEW SECTION
    ========================== */
    .faq-review-section {
        position: relative;
        max-width: 1190px;
        margin: 60px auto;
        padding: 40px 30px;
        border-radius: 25px;
        background:
            linear-gradient(145deg, rgba(255, 208, 0, .12), rgba(255, 245, 157, .08));
        overflow: hidden;
        box-shadow:
            0 0 40px rgba(255, 208, 0, .68),
            inset 0 0 18px rgba(255, 230, 109, .10);
    }

    .faq-review-section::before {
        content: "";
        position: absolute;
        width: 150%;
        height: 150%;
        background: radial-gradient(circle at center, rgba(255, 245, 157, .14), transparent 70%);
        animation: spinAura 15s linear infinite;
        top: -25%;
        left: -25%;
    }

    .section-title {
        text-align: center;
        color: var(--fx-aqua);
        font-size: 1.9rem;
        letter-spacing: 1px;
        font-weight: 700;
        text-shadow: 0 0 20px rgba(255, 197, 7, .82);
        position: relative;
        z-index: 2;
        margin-bottom: 25px;
    }

    .section-title::after {
        content: '';
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, #ffd000, #ffd21f, #fff59d);
        display: block;
        margin: 10px auto;
        border-radius: 2px;
        box-shadow: 0 0 10px rgba(255, 197, 7, .64);
        animation: pulseLine 2s infinite alternate;
    }

    /* =========================
       FAQ & REVIEW ITEM
    ========================== */
    .faq-item,
    .review-item {
        background:
            linear-gradient(145deg, rgba(122, 93, 0, 0.58), rgba(255, 208, 0, .34));
        border: 1px solid rgba(255, 230, 109, .42);
        border-radius: 18px;
        padding: 18px 20px;
        margin: 18px 0;
        color: var(--fx-white);
        box-shadow: inset 0 0 0 rgba(255, 208, 0, 0);
        transform: perspective(800px) rotateX(15deg) scale(0.95);
        opacity: 0;
        transition: all 0.7s ease, box-shadow 0.4s ease;
    }

    .faq-item.show,
    .review-item.show {
        opacity: 1;
        transform: perspective(800px) rotateX(0deg) scale(1);
    }

    .faq-item:hover,
    .review-item:hover {
        background:
            linear-gradient(145deg, rgba(255, 230, 109, .36), rgba(255, 197, 7, .44));
        box-shadow: 0 0 25px rgba(255, 208, 0, .62);
        transform: scale(1.02);
    }

    .faq-item::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        border: 2px solid transparent;
        background: linear-gradient(120deg, #ffd000, #ffd21f, #fff59d) border-box;
        mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        opacity: 0;
        transition: opacity .3s ease;
    }

    /* =========================
       FAQ CONTENT
    ========================== */
    .faq-question {
        cursor: pointer;
        font-weight: 600;
        color: var(--fx-aqua);
        position: relative;
        font-size: 1.9rem;
        padding-right: 25px;
        text-shadow: 0 0 10px rgba(255, 197, 7, .88);
    }

    .faq-question::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 0;
        color: #ffffff;
        font-weight: bold;
        font-size: 1.4rem;
        transition: transform .3s;
    }

    .faq-item.active .faq-question::after {
        transform: rotate(45deg);
    }

    .faq-answer {
        display: none;
        color: #ffffff;
        line-height: 1.6em;
        padding-top: 10px;
        border-top: 1px dashed rgba(255, 230, 109, .52);
        margin-top: 10px;
    }

    .faq-item.active .faq-answer {
        display: block;
        animation: fadeUp .4s ease;
    }

    /* =========================
       REVIEW CONTENT
    ========================== */
    .review-author {
        font-weight: 700;
        color: var(--fx-aqua);
        font-size: 1.9rem;
        text-shadow: 0 0 10px rgba(255, 197, 7, .88);
    }

    .review-text {
        color: #ffffff;
        margin: 6px 0;
        font-style: italic;
    }

    .review-rating {
        color: var(--fx-aqua);
        font-weight: bold;
        font-size: 1rem;
        text-shadow: 0 0 8px rgba(255, 255, 255, .45);
    }

    /* =========================
       ANIMATION
    ========================== */
    @keyframes spinAura {
        to {
            transform: rotate(360deg);
        }
    }

    @keyframes pulseLine {
        from {
            opacity: .6;
            transform: scaleX(.7);
        }

        to {
            opacity: 1;
            transform: scaleX(1);
        }
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes borderGlow {
        to {
            transform: rotate(360deg);
        }
    }

    /* =========================
       RESPONSIVE
    ========================== */
    @media (max-width: 768px) {
        .fx-article-wrap {
            padding: 40px 12px;
        }

        .fx-article h1 {
            font-size: 1.5rem;
        }

        .faq-review-section {
            padding: 28px 18px;
        }

        .section-title {
            font-size: 1.5rem;
        }
    }
