.profile-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f5f9ff 0%, #e0f0ff 100%);
    position: relative;
    overflow: hidden;
}

.profile-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(91, 180, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(91, 180, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(91, 180, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.profile-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.profile-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #5bb4ff, #4a90e2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
    box-shadow: 0 6px 20px rgba(91, 180, 255, 0.4);
    transition: all 0.3s ease;
}

.profile-card:hover .profile-avatar {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(91, 180, 255, 0.5);
}

.profile-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.profile-name::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5bb4ff, #4a90e2);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.profile-name:hover::after {
    width: 100%;
}

.profile-title {
    color: #4a90e2;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.profile-info {
    text-align: left;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateX(5px);
}

.info-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #5bb4ff, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
}

.info-text {
    color: #666;
    font-size: 0.95rem;
}

.section {
    padding: 4rem 0;
}

.section:nth-child(even) {
    background: #f5f9ff;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.work-card {
    background: #fff;
    border: 1px solid #e0e8f0;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.work-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #5bb4ff;
    box-shadow: 0 12px 30px rgba(91, 180, 255, 0.18);
}

.work-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.work-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5bb4ff, #4a90e2);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.work-card:hover .work-title::after {
    width: 100%;
}

.work-desc {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.updates-list {
    background: #fff;
    border: 1px solid #e0e8f0;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.update-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f4f8;
    transition: all 0.3s ease;
}

.update-item:hover {
    background: rgba(74, 144, 226, 0.03);
    margin: 0 -2rem;
    padding-left: 3rem;
    padding-right: 3rem;
}

.update-item:last-child {
    border-bottom: none;
}

.update-date {
    color: #4a90e2;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.update-content {
    flex: 1;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .profile-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .profile-info {
        text-align: center;
    }
    
    .info-item {
        justify-content: center;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
    
    .update-item:hover {
        margin: 0 -1rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}