@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital@1&display=swap');

/* Base reset and layout */
body {
    margin: 0;
    padding: 0;
    /* A deep indigo-to-slate gradient background */
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    font-family: 'Inter', sans-serif;
    color: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    box-sizing: border-box;
}

/* Glassmorphism card effect */
.profile-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* Abstract placeholder graphic replacing the old 'blob' */
.avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: italic;
    margin: 0 0 5px 0;
    letter-spacing: 1px;
}

.caption {
    font-weight: 300;
    color: #94a3b8;
    font-size: 1.1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

/* Internal links */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-link {
    display: block;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.1rem;
}

.btn-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Social icons layout */
.social-section {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icon {
    color: #94a3b8;
    font-size: 1.6rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #ffffff;
    transform: scale(1.15);
}