.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.5) !important;
    backdrop-filter: blur(1px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.hero-container-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    gap: 3rem;
}

.hero-image-top {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-top .profile-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: none; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; 
    position: relative;
    overflow: hidden;
}

.hero-image-top .profile-image {
    width: 100%;
    height: 100%; 
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.hero-image-top .profile-icon {
    font-size: 4rem;
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; 
    height: 100%; 
    background: var(--bg-primary);
    border-radius: 50%;
}

.hero-text-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3; 
    color: var(--text-primary);
    text-align: center;
}

.hero-title-second {
    display: inline-block;
    margin-top: 0.5rem; 
    color: var(--text-primary);
    font-weight: 700;
}

.hero-title b {
    background: var(--text-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
}

/* Profile section */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.profile-container {
    position: relative;
}

.profile-placeholder {
    width: 300px;
    height: 300px;
    border-radius: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px;
    position: relative;
    overflow: hidden;
}

.profile-image {
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.profile-icon {
    font-size: 6rem;
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background: var(--bg-primary);
    border-radius: 50%;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-primary);
    animation: bounce 2s infinite;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes smoothBlink {
    0%, 40% {
        opacity: 1;
        transform: scale(1);
    }
    50%, 90% {
        opacity: 0.3;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive hero */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-container-centered {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-image-top .profile-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .profile-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .profile-icon {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1rem;
    }
    
    .hero-container-centered {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-image-top .profile-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .profile-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .profile-icon {
        font-size: 4rem;
    }
}