    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: #999999;
    }

    div.advertisement-banner {
        margin: 0px auto;
    }

    div#div-gpt-ad-billboard-placeholder {
        width: 996px;
        margin: 0 auto;
        background: #F5F5F5;
        padding-bottom: unset !important;
        min-height: 200px;
    }

    div#div-gpt-ad-lb-placeholder {
        background: #F5F5F5;
        padding-bottom: unset !important;
        min-height: 280px;
    }

    :root {
        --fx-red: #ff003c;
        --fx-text: #f5f5f5;
        --fx-border: rgba(255, 0, 60, .35);
        --fx-bg: rgba(6, 6, 10, 0.664);
        --fx-shadow: 0 20px 60px rgba(255, 0, 60, .18);
    }

    /* Wrapper video */
    .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;
    }

    /* Dark + red overlay biar teks kebaca */
    .fx-video-overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        background:
            radial-gradient(circle at 30% 20%, rgba(255, 0, 60, .22), transparent 55%),
            radial-gradient(circle at 70% 80%, rgba(255, 0, 60, .12), transparent 60%),
            linear-gradient(180deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .85));
    }

    /* Article wrapper */
    .fx-article-wrap {
        position: relative;
        z-index: 3;
        max-width: 1280px;
        margin: 0 auto;
        padding: 60px 14px;
    }

    /* Article container */
    .fx-article {
        position: relative;
        border-radius: 22px;
        padding: 26px 22px;
        color: var(--fx-text);
        background: rgb(6 6 10 / 24%);
        border: 1px solid var(--fx-border);
        box-shadow: var(--fx-shadow);
        backdrop-filter: blur(6px);
    }

    /* Header badge */
    .fx-badge {
        display: inline-block;
        margin-bottom: 12px;
        padding: 6px 12px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .6px;
        border-radius: 999px;
        color: #fff;
        background: linear-gradient(90deg, #ff003c, #ff2a2a);
        box-shadow: 0 0 18px rgba(255, 0, 60, .35);
    }

    /* Typography */
    .fx-article h1 {
        font-size: 1.8rem;
        margin-bottom: 14px;
        text-shadow: 0 0 18px rgba(255, 0, 60, .35);
    }

    .fx-article h2 {
        font-size: 1.3rem;
        margin: 18px 0 10px;
        border-left: 4px solid var(--fx-red);
        padding-left: 10px;
    }

    .fx-article p {
        line-height: 1.75;
        margin-bottom: 14px;
        color: rgba(255, 255, 255, .92);
    }

    .fx-article a {
        color: #ffd1d1;
        border-bottom: 1px dashed rgba(255, 0, 60, .6);
        text-decoration: none;
    }

    .fx-article a:hover {
        color: #fff;
        text-shadow: 0 0 12px rgba(255, 0, 60, .5);
    }

    /* Highlight box */
    .fx-callout {
        margin: 18px 0;
        padding: 14px;
        border-radius: 14px;
        background: rgba(255, 0, 60, .12);
        border: 1px solid rgba(255, 0, 60, .35);
    }

    @media (max-width: 768px) {
        .fx-article-wrap {
            padding: 40px 12px;
        }

        .fx-article h1 {
            font-size: 1.5rem;
        }
    }

    .faq-review-section {
        position: relative;
        max-width: 1190px;
        margin: 60px auto;
        padding: 40px 30px;
        border-radius: 25px;
        background: linear-gradient(145deg, #00000000, #00000000);
        overflow: hidden;
        box-shadow: 0 0 40px #ff9100;
    }

    .faq-review-section::before {
        content: "";
        position: absolute;
        width: 150%;
        height: 150%;
        background: radial-gradient(circle at center, rgba(0, 0, 0, 0.06), transparent 70%);
        animation: spinAura 15s linear infinite;
        top: -25%;
        left: -25%;
    }

    @keyframes spinAura {
        to {
            transform: rotate(360deg);
        }
    }

    .section-title {
        text-align: center;
        color: var(--purple);
        font-size: 1.9rem;
        letter-spacing: 1px;
        font-weight: 700;
        text-shadow: 0 0 20px rgba(0, 0, 0, 0.18);
        position: relative;
        z-index: 2;
        margin-bottom: 25px;
    }

    .section-title::after {
        content: '';
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, var(--purple), var(--accent));
        display: block;
        margin: 10px auto;
        border-radius: 2px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
        animation: pulseLine 2s infinite alternate;
    }

    @keyframes pulseLine {
        from {
            opacity: .6;
            transform: scaleX(.7);
        }

        to {
            opacity: 1;
            transform: scaleX(1);
        }
    }

    /* Card Base */
    .faq-item,
    .review-item {
        background: rgba(255, 0, 0, 0.438);
        border: 1px solid rgba(255, 0, 0, 0.16);
        border-radius: 18px;
        padding: 18px 20px;
        margin: 18px 0;
        color: var(--white);
        box-shadow: inset 0 0 0 rgba(255, 0, 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: rgba(255, 217, 0, 0.788);
        box-shadow: 0 0 25px rgba(0, 0, 0, 0.18);
        transform: scale(1.02);
    }

    /* FAQ Section */
    .faq-question {
        cursor: pointer;
        font-weight: 600;
        color: var(--purple);
        position: relative;
        font-size: 1.9rem;
        padding-right: 25px;
    }

    .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: #000000;
        line-height: 1.6em;
        padding-top: 10px;
        border-top: 1px dashed rgba(0, 0, 0, 0.12);
        margin-top: 10px;
    }

    .faq-item.active .faq-answer {
        display: block;
        animation: fadeUp .4s ease;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Review Section */
    .review-author {
        font-weight: 700;
        color: var(--purple);
        font-size: 1.9rem;
    }

    .review-text {
        color: #ffffff;
        margin: 6px 0;
        font-style: italic;
    }

    .review-rating {
        color: var(--accent);
        font-weight: bold;
        font-size: 1rem;
    }

    /* Hanya FAQ yang punya animasi border */
    .faq-item::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        border: 2px solid transparent;
        background: linear-gradient(120deg, var(--purple), var(--accent), var(--purple)) border-box;
        mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
        opacity: 0;
        transition: opacity .3s ease;
    }

    @keyframes borderGlow {
        to {
            transform: rotate(360deg);
        }
    }

    /* small responsive tweaks */
    @media (max-width:768px) {
        .faq-review-section {
            padding: 28px 18px;
        }

        .section-title {
            font-size: 1.5rem;
        }
    }
