/* Client Showcase Redesign */
.bv-client-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: rgba(24, 24, 27, 0.4);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 40px auto;
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.05);
    transition: all 0.5s ease;
}

.bv-client-showcase:hover {
    border-color: rgba(214, 166, 74, 0.3);
    box-shadow: 0 25px 50px rgba(214, 166, 74, 0.1), inset 0 0 0 1px rgba(255,255,255,0.08);
}

.bv-client-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(214, 166, 74, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.bv-client-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: overlay;
}

.bv-client-info {
    flex: 1;
    z-index: 2;
}

.bv-client-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    color: #fff;
    letter-spacing: -0.02em;
}

.version-badge {
    font-size: 0.85rem;
    background: rgba(224, 177, 82, 0.15);
    color: var(--accent-red);
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(224, 177, 82, 0.3);
    font-weight: 700;
}

.bv-client-subtitle {
    color: #a1a1aa;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 480px;
}

.bv-client-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.bv-client-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e4e4e7;
    font-size: 0.95rem;
}

.bv-client-features li svg {
    color: var(--accent-red);
    flex-shrink: 0;
}

.bv-client-status {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
    display: inline-flex;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4caf50;
    box-shadow: 0 0 10px #4caf50;
    animation: pulse-green 2s infinite;
}

.status-indicator.offline {
    background: #f44336;
    box-shadow: 0 0 10px #f44336;
    animation: none;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.status-text-label {
    color: #a1a1aa;
    font-size: 0.95rem;
}

.bv-client-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bv-btn-primary {
    background: linear-gradient(135deg, #e0b152 0%, #d91c32 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 8px 25px rgba(224, 177, 82, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.bv-btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.bv-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff4d60 0%, #e62339 100%);
    box-shadow: 0 12px 35px rgba(224, 177, 82, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.35);
}

.bv-btn-primary:hover:not(:disabled)::after {
    animation: shine 1.5s infinite;
    opacity: 1;
}

.bv-btn-primary:active:not(:disabled) {
    transform: translateY(1px);
    box-shadow: 0 4px 15px rgba(224, 177, 82, 0.3);
}

@keyframes shine {
    0% { left: -100%; top: -100%; }
    100% { left: 100%; top: 100%; }
}

.bv-btn-primary:disabled {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: not-allowed;
    box-shadow: none;
}

.bv-btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: #a1a1aa;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 24px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.bv-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
}

.bv-client-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.floating-client-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
    border: 1px solid rgba(255,255,255,0.05);
}

.glow-under-img {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-red);
    filter: blur(100px);
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 900px) {
    .bv-client-showcase {
        flex-direction: column-reverse;
        padding: 40px 20px;
        text-align: center;
    }
    .bv-client-title {
        justify-content: center;
    }
    .bv-client-features {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .bv-client-actions {
        flex-direction: column;
        align-items: center;
    }
    .bv-client-visual {
        justify-content: center;
        margin-bottom: 30px;
    }
}

/* Smooth Install Guide Modal Animation */
.install-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.install-modal-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.install-modal-overlay .install-modal-card {
    background: #141417;
    border: 1px solid rgba(224, 177, 82, 0.3);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(15px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(224, 177, 82, 0.2);
}
.install-modal-overlay.active .install-modal-card {
    transform: scale(1) translateY(0);
}
