/* Virtual Business Card (vCard) Styles */
.vcard-body {
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-image: radial-gradient(circle at 50% 0%, rgba(0, 242, 234, 0.15), transparent 50%);
    font-family: var(--font-primary, 'Inter', sans-serif);
    color: var(--text-color, #fff);
}

.vcard-container {
    width: 100%;
    max-width: 400px;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vcard-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary, #00f2ea), var(--accent-secondary, #ff0050));
}

.vcard-lang-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

[dir="rtl"] .vcard-lang-toggle {
    right: auto;
    left: 20px;
}

.vcard-header {
    margin-bottom: 30px;
    position: relative;
}

.vcard-logo {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.vcard-logo .logo {
    font-size: 2rem;
    margin-bottom: 5px;
    /* Reusing logo styles from main css if possible, but defining here just in case */
    font-weight: 300;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ffffff 30%, #a0a0a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    text-align: center;
    width: auto;
}

.vcard-title {
    color: var(--accent-primary, #00f2ea);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.vcard-desc {
    color: var(--text-muted, #a0a0a0);
    font-size: 0.9rem;
    line-height: 1.5;
}

.vcard-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
}

.vcard-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    color: var(--text-color, #fff);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
}

.vcard-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.vcard-btn.primary {
    background: var(--text-color, #fff);
    color: var(--bg-color, #000);
    border-color: var(--text-color, #fff);
}

.vcard-btn.primary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.15);
}

.vcard-btn.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.vcard-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
}

.vcard-btn i {
    font-size: 1.2rem;
    width: 24px;
    /* Fixed width for alignment */
    text-align: center;
}

.vcard-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vcard-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted, #a0a0a0);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.vcard-social-link:hover {
    background: var(--accent-primary, #00f2ea);
    color: #000;
    transform: translateY(-3px);
}

.vcard-btn.share {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
}

.vcard-btn.share:hover {
    background: rgba(255, 255, 255, 0.15);
}

.vcard-btn.copied {
    background: rgba(39, 201, 63, 0.2);
    border-color: rgba(39, 201, 63, 0.4);
    color: #27c93f;
}