:root {
    --gold: #d4af37;
    --gold-light: #f3d576;
    --dark-bg: #121212;
    --card-bg: rgba(30, 30, 30, 0.65);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    /* Modern radial gradient for depth */
    background: radial-gradient(circle at 50% 0%, #2b2b2b 0%, #121212 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    color: var(--text-white);
}

/* Ambient glow effect in background */
.bg-glow {
    position: fixed;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.card-wrapper {
    perspective: 1000px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.card-container {
    /* Glassmorphism Effect */
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    
    max-width: 420px;
    width: 100%;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle gold line at top */
.card-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.8;
}

.profile-section {
    margin-bottom: 24px;
}

.profile-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 16px;
    border: 3px solid #d4af37;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(212, 175, 55, 0.3);
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

h1 {
    color: var(--text-white);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.title {
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.vcard-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* Metallic Gradient Button */
    background: linear-gradient(135deg, var(--gold), #b39122);
    color: #1a1a1a;
    width: 100%;
    padding: 16px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.vcard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 20px 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    margin-right: 14px;
}

.contact-text {
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 400;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.social-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--gold);
    color: #1a1a1a;
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 480px) {
    .card-container {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 24px;
    }
}