* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #000000;
    --bg-gradient-1: #0a0a0a;
    --bg-gradient-2: #1a1a2e;
    --card-bg: rgba(17, 17, 17, 0.95);
    --card-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #b4b4b4;
    --text-muted: #666666;
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-tertiary: #06b6d4;
    --success: #10b981;
    --glow-primary: rgba(99, 102, 241, 0.4);
    --glow-secondary: rgba(139, 92, 246, 0.3);
    --shadow-intense: 0 25px 60px rgba(0, 0, 0, 0.8);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.6);
    --border-radius: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    min-height: 100vh;
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* Background Elements */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, var(--glow-primary) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, var(--glow-secondary) 0%, transparent 50%),
                linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-gradient-1) 50%, var(--bg-gradient-2) 100%);
    z-index: -2;
}

.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    filter: blur(40px);
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
    top: 60%;
    right: 10%;
    animation-delay: 3s;
    filter: blur(60px);
}

.orb-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-tertiary), var(--accent-primary));
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
    filter: blur(30px);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

/* Main Container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.main-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 32px 24px;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow-intense);
    position: relative;
    transform: translateZ(0);
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 32px;
}

.avatar-container {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
}

.avatar-glow {
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
    border-radius: 50%;
    filter: blur(16px);
    opacity: 0.7;
    animation: pulse 3s ease-in-out infinite;
}

.avatar {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--text-primary);
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

.name {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    box-shadow: var(--shadow-medium);
}

.badge-icon {
    font-size: 16px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.workplace-info {
    margin-bottom: 12px;
}

.workplace {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 4px;
}

.workplace:last-child {
    margin-bottom: 0;
}

.qualifications {
    margin-top: 8px;
}

.quals {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 2px;
}

.quals:last-child {
    margin-bottom: 0;
}

/* Value Proposition */
.value-proposition {
    margin-bottom: 24px;
    text-align: center;
}

.value-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.value-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 16px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.value-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 8px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.highlight-icon {
    font-size: 16px;
}

.highlight-text {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

/* Value Section */
.value-section {
    margin-bottom: 32px;
}

.value-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 20px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.value-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 12px;
    flex-shrink: 0;
}

.value-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.value-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Primary Actions */
.primary-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.action-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.action-btn:hover::before {
    transform: translateX(100%);
}

.primary-btn {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    box-shadow: var(--shadow-medium);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--card-border);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.tertiary-btn {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-tertiary);
    border-color: rgba(6, 182, 212, 0.3);
}

.tertiary-btn:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

.quaternary-btn {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.3);
}

.quaternary-btn:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.btn-content {
    flex: 1;
    text-align: left;
}

.btn-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.btn-subtitle {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    margin-top: 2px;
}

.btn-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.action-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Social Section */
.social-section {
    text-align: center;
}

.section-title {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 500;
}

.social-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    width: 100%;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    color: var(--text-primary);
}

.social-link i {
    font-size: 20px;
}

.social-link span {
    font-size: 15px;
    font-weight: 500;
}

.linkedin:hover { box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3); }
.twitter:hover { box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3); }
.github:hover { box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2); }

/* Mobile Optimizations */
@media (max-width: 480px) {
    .container {
        padding: 16px;
    }

    .main-card {
        padding: 28px 20px;
    }

    .name {
        font-size: 28px;
    }

    .avatar-container {
        width: 120px;
        height: 120px;
    }

    .value-title {
        font-size: 16px;
    }

    .value-description {
        font-size: 13px;
    }

    .value-highlights {
        gap: 16px;
        flex-wrap: wrap;
    }

    .highlight-text {
        font-size: 11px;
    }

    .social-grid {
        gap: 12px;
    }

    .social-link {
        min-width: 60px;
        padding: 12px 8px;
    }
}