/* 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;
}

.profile-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    max-width: 420px;
    width: 100%;
    position: relative;
}

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

.profile-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e0e0;
    box-shadow: none;
}

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

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

.name {
    font-size: 2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.title {
    font-size: 1.05rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 10px;
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #999;
    font-size: 0.95rem;
}

.location i {
    color: #bbb;
}

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

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

.social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    position: relative;
}

.social-link:hover {
    background: #e9ecef;
    color: #111;
    text-decoration: underline;
    box-shadow: none;
    border-color: #d0d0d0;
}

.social-link i {
    font-size: 1rem;
    color: #888;
    transition: color 0.2s;
}

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

/* 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;
}
.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);
}