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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    /* Animated floating blobs background */
    position: relative;
    overflow: hidden;
}

/* Animated floating blobs background */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.0;
    filter: blur(16px);
    animation-duration: 18s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.blob1 {
    width: 320px; height: 320px;
    left: 8vw; top: 12vh;
    background: #b0b0b0;
    animation-name: floatBlob1;
    animation-delay: 0s;
}
.blob2 {
    width: 220px; height: 220px;
    right: 10vw; top: 30vh;
    background: #c7c7c7;
    animation-name: floatBlob2;
    animation-delay: 4s;
}
.blob3 {
    width: 180px; height: 180px;
    left: 30vw; bottom: 10vh;
    background: #a0a0a0;
    animation-name: floatBlob3;
    animation-delay: 8s;
}

@keyframes floatBlob1 {
    0%   { transform: translate(0, 0) scale(1); opacity: 0; }
    10%  { opacity: 0.7; }
    50%  { transform: translate(40px, -60px) scale(1.08); opacity: 0.5; }
    90%  { opacity: 0.7; }
    100% { transform: translate(-20px, 20px) scale(1); opacity: 0; }
}
@keyframes floatBlob2 {
    0%   { transform: translate(0, 0) scale(1); opacity: 0; }
    15%  { opacity: 0.6; }
    50%  { transform: translate(-60px, 50px) scale(1.12); opacity: 0.4; }
    85%  { opacity: 0.6; }
    100% { transform: translate(30px, -30px) scale(1); opacity: 0; }
}
@keyframes floatBlob3 {
    0%   { transform: translate(0, 0) scale(1); opacity: 0; }
    20%  { opacity: 0.5; }
    50%  { transform: translate(30px, -40px) scale(1.05); opacity: 0.3; }
    80%  { opacity: 0.5; }
    100% { transform: translate(-25px, 25px) scale(1); opacity: 0; }
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.profile-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    padding: 56px 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    max-width: 440px;
    width: 100%;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: cardEntrance 0.8s ease-out;
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.profile-image-container {
    display: inline-block;
    margin-bottom: 32px;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 30%;
    border: 3px solid #f0f0f0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0,0,0,0.16);
}

/* Remove profile ring */
.profile-ring { display: none; }

.profile-info {
    margin-bottom: 40px;
}

.name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.title {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #777;
    font-size: 0.98rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.location i {
    color: #999;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.01em;
}

.social-link:hover {
    background: #f0f0f0;
    color: #1a1a1a;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-color: #d8d8d8;
    transform: translateY(-1px);
}

.social-link i {
    font-size: 1.1rem;
    color: #666;
    transition: color 0.3s ease;
}

.social-link:hover i {
    color: #1a1a1a;
}

/* Remove all specific social link colors and effects */
.twitter, .instagram, .linkedin, .github, .google, .portfolio, .email, .blog, .resume {
    border-color: #e0e0e0;
}

/* Remove floating elements */
.floating-elements, .floating-dot { display: none !important; }

/* Remove tooltip and ripple effects */
.social-link::before, .social-link[data-tooltip]:hover::after { display: none !important; }

@media (max-width: 600px) {
    .profile-card {
        padding: 32px 8px;
    }
    .name {
        font-size: 1.3rem;
    }
    .social-row {
        gap: 4px;
    }
    .social-link {
        padding: 8px 8px;
        font-size: 0.9rem;
    }
    .social-link span {
        display: none;
    }
    .social-link i {
        font-size: 1.1rem;
    }
}

.bg-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    display: none;
}
.star {
    position: absolute;
    width: 2.5px;
    height: 2.5px;
    border-radius: 50%;
    background: #BF5700;
    opacity: 0.95;
    box-shadow: none;
    animation: twinkle 1.2s infinite ease-in-out;
}
@keyframes twinkle {
    0%, 100% { opacity: 0.95; }
    50% { opacity: 0.3; }
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
    filter: brightness(0.7) saturate(1.1);
}