:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #ffffff;
    --secondary-text: #888888;
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 8vh;
    overflow: hidden;
    position: relative;
}

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

.profile-section {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.image-wrapper {
    position: relative;
    width: 350px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#profile-image {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    animation: float 6s ease-in-out infinite;
}

.name-overlay {
    position: absolute;
    bottom: -15px;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -2px;
    color: #ffffff;
    -webkit-text-fill-color: initial;
    background: none;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 1);
    font-family: var(--font-primary);
    width: 250%;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.j-detail {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    color: #ffffff;
    position: relative;
    display: inline-block;
    margin-right: -5px;
}

.j-detail::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -5px;
    width: 8px;
    height: 8px;
    background: #ffffff;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    opacity: 0.8;
}

.name-overlay::before {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1));
    filter: blur(15px);
    z-index: -1;
    pointer-events: none;
}

.social-links {
    display: flex;
    gap: 2.5rem;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeIn 2s forwards 1s;
}

.social-icon {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--accent-color);
    transform: translateY(-5px) scale(1.2);
}

.social-icon lucide {
    width: 32px;
    height: 32px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 5vh;
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    .image-wrapper {
        width: 240px;
        height: 330px;
    }
    
    .name-overlay {
        font-size: 3.2rem;
        width: 120%;
        bottom: -10px;
    }
    
    .social-links {
        gap: 1.5rem;
        margin-top: 0.5rem;
    }

    .social-icon lucide {
        width: 26px;
        height: 26px;
    }
}