/* AuraToolkit360 - Modern Viral Social Share Widget */
.aura-share-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.85) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.aura-share-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #38bdf8, #818cf8, #c084fc, #34d399);
}

.aura-share-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.aura-share-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.25);
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
}

.aura-share-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #f8fafc;
    margin: 0.35rem 0 0.15rem;
    line-height: 1.4;
}

.aura-share-subtitle {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

.aura-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.aura-btn-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.15rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    user-select: none;
    font-family: inherit;
}

.aura-btn-share svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.aura-btn-share:hover svg {
    transform: scale(1.1);
}

/* WhatsApp */
.aura-btn-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.3);
}
.aura-btn-whatsapp:hover {
    background: #25d366;
    color: #0b0f19;
    border-color: #25d366;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

/* LinkedIn */
.aura-btn-linkedin {
    background: rgba(10, 102, 194, 0.15);
    color: #38bdf8;
    border-color: rgba(10, 102, 194, 0.35);
}
.aura-btn-linkedin:hover {
    background: #0a66c2;
    color: #ffffff;
    border-color: #0a66c2;
    box-shadow: 0 4px 14px rgba(10, 102, 194, 0.4);
}

/* Twitter / X */
.aura-btn-twitter {
    background: rgba(255, 255, 255, 0.08);
    color: #f1f5f9;
    border-color: rgba(255, 255, 255, 0.2);
}
.aura-btn-twitter:hover {
    background: #f8fafc;
    color: #0b0f19;
    border-color: #f8fafc;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.25);
}

/* Copy Link */
.aura-btn-copy {
    background: rgba(139, 92, 246, 0.15);
    color: #c084fc;
    border-color: rgba(139, 92, 246, 0.3);
}
.aura-btn-copy:hover {
    background: #8b5cf6;
    color: #ffffff;
    border-color: #8b5cf6;
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.4);
}

.aura-btn-copy.copied {
    background: #10b981 !important;
    color: #ffffff !important;
    border-color: #10b981 !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4) !important;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .aura-share-card {
        padding: 1.25rem 1rem;
        margin: 1.5rem 0;
    }
    .aura-share-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }
    .aura-btn-share {
        padding: 0.6rem 0.75rem;
        font-size: 0.8rem;
        justify-content: center;
    }
}
