.vxr_vxf_main_box {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0f 0%, #0d1117 50%, #0a0a0f 100%);
    overflow: hidden;
}

.vxr_vxf_bg_glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    pointer-events: none;
}

.vxr_vxf_glow_1 {
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
}

.vxr_vxf_glow_2 {
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
}

.vxr_vxf_container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.vxr_vxf_header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.vxr_vxf_label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #a855f7;
    margin-bottom: 16px;
}

.vxr_vxf_title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.vxr_vxf_subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.vxr_vxf_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.vxr_vxf_card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vxr_vxf_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vxr_vxf_card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.2);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(168, 85, 247, 0.1) inset;
}

.vxr_vxf_card:hover::before {
    opacity: 1;
}

.vxr_vxf_card_featured {
    grid-row: span 2;
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.08) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-color: rgba(168, 85, 247, 0.15);
}

.vxr_vxf_card_featured::before {
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5), transparent);
}

.vxr_vxf_card_icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    color: #a855f7;
}

.vxr_vxf_card_icon svg {
    width: 100%;
    height: 100%;
}

.vxr_vxf_card_featured .vxr_vxf_card_icon {
    width: 72px;
    height: 72px;
}

.vxr_vxf_card_title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.vxr_vxf_card_featured .vxr_vxf_card_title {
    font-size: 24px;
}

.vxr_vxf_card_text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.vxr_vxf_card_featured .vxr_vxf_card_text {
    font-size: 16px;
    margin-bottom: 32px;
}

.vxr_vxf_card_stats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
}

.vxr_vxf_stat_item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vxr_vxf_stat_value {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vxr_vxf_stat_label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.vxr_vxf_cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 24px;
    padding: 40px 48px;
}

.vxr_vxf_cta_title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.vxr_vxf_cta_text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.vxr_vxf_cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    border-radius: 14px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.3);
}

.vxr_vxf_cta_btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.vxr_vxf_cta_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
}

.vxr_vxf_cta_btn:hover svg {
    transform: translate(3px, -3px);
}

@media (max-width: 1024px) {
    .vxr_vxf_main_box {
        padding: 80px 0;
    }
    .vxr_vxf_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vxr_vxf_card_featured {
        grid-column: span 2;
        grid-row: auto;
    }
    .vxr_vxf_cta {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .vxr_vxf_main_box {
        padding: 60px 0;
    }
    .vxr_vxf_header {
        margin-bottom: 48px;
    }
    .vxr_vxf_subtitle {
        font-size: 16px;
    }
    .vxr_vxf_grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 48px;
    }
    .vxr_vxf_card_featured {
        grid-column: auto;
    }
    .vxr_vxf_card {
        padding: 24px;
    }
    .vxr_vxf_card_icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }
    .vxr_vxf_card_featured .vxr_vxf_card_icon {
        width: 56px;
        height: 56px;
    }
    .vxr_vxf_card_stats {
        gap: 24px;
    }
    .vxr_vxf_stat_value {
        font-size: 28px;
    }
    .vxr_vxf_cta {
        padding: 24px;
    }
    .vxr_vxf_cta_title {
        font-size: 20px;
    }
    .vxr_vxf_cta_btn {
        padding: 16px 28px;
        width: 100%;
        justify-content: center;
    }
}