.vxr_faq2_main_box {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 5, 15, 0.95) 50%, rgba(0, 0, 0, 0.98) 100%);
    overflow: hidden;
}

.vxr_faq2_main_box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 40%, rgba(149, 107, 255, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(110, 61, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.vxr_faq2_container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.vxr_faq2_header {
    text-align: center;
    margin-bottom: 70px;
}

.vxr_faq2_title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    background: linear-gradient(135deg, #ae2cff6e, #b26bff, #db8bff75);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(156, 107, 255, 0.5));
}

.vxr_faq2_subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.vxr_faq2_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vxr_faq2_item {
    background: rgba(10, 5, 15, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(156, 107, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vxr_faq2_item:hover {
    border-color: rgba(156, 107, 255, 0.3);
    box-shadow: 0 10px 30px rgba(156, 107, 255, 0.2);
}

.vxr_faq2_item.active {
    border-color: rgba(156, 107, 255, 0.5);
    box-shadow: 0 15px 40px rgba(156, 107, 255, 0.3);
}

.vxr_faq2_question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.vxr_faq2_question:hover {
    background: rgba(156, 107, 255, 0.05);
}

.vxr_faq2_number {
    font-size: 24px;
    font-weight: 700;
    color: #9c6bff;
    flex-shrink: 0;
    width: 50px;
}

.vxr_faq2_question h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.vxr_faq2_question i {
    font-size: 16px;
    color: #9c6bff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.vxr_faq2_item.active .vxr_faq2_question i {
    transform: rotate(180deg);
}

.vxr_faq2_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.vxr_faq2_item.active .vxr_faq2_answer {
    max-height: 1000px;
    padding: 0 30px 30px 100px;
}

.vxr_faq2_answer p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

@media (max-width: 768px) {
    .vxr_faq2_main_box {
        padding: 80px 0;
    }

    .vxr_faq2_header {
        margin-bottom: 50px;
    }

    .vxr_faq2_title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .vxr_faq2_subtitle {
        font-size: 17px;
    }

    .vxr_faq2_list {
        gap: 15px;
    }

    .vxr_faq2_question {
        padding: 20px;
        gap: 15px;
    }

    .vxr_faq2_number {
        font-size: 20px;
        width: 40px;
    }

    .vxr_faq2_question h3 {
        font-size: 17px;
    }

    .vxr_faq2_question i {
        font-size: 14px;
    }

    .vxr_faq2_item.active .vxr_faq2_answer {
        padding: 0 20px 20px 75px;
    }

    .vxr_faq2_answer p {
        font-size: 15px;
    }
}